/** Shopify CDN: Minification failed

Line 131:13 Expected identifier but found whitespace
Line 131:15 Unexpected "{"
Line 131:24 Expected ":"
Line 176:13 Expected identifier but found whitespace
Line 176:15 Unexpected "{"
Line 176:24 Expected ":"
Line 205:13 Expected identifier but found whitespace
Line 205:15 Unexpected "{"
Line 205:24 Expected ":"
Line 226:13 Expected identifier but found whitespace
... and 27 more hidden warnings

**/


/* CSS from section stylesheet tags */
.image-text-slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  min-width: 100%;
  display: flex;
  flex-direction: row;
}

.slide-content {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.text-left .slide-content {
  flex-direction: row;
}

.text-right .slide-content {
  flex-direction: row-reverse;
}

.image-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.image-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.text-container {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef1f5 100%);
}

.slide-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.slide-description {
  line-height: 1.6;
  margin-bottom: 30px;
}

.slide-button {
  display: inline-block;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.slide-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.nav-buttons {
  display: none; /* 隐藏底部导航按钮 */
}

.nav-button {
  background: {{ section.settings.nav_color | default: '#4299e1' }};
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.timer-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-timer {
  position: relative;
  width: 50px;
  height: 50px;
}

.timer-background {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e2e8f0;
}

.timer-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip: rect(0, 25px, 50px, 0);
  background: {{ section.settings.timer_color | default: '#4299e1' }};
  transition: transform 0.1s linear;
}

.timer-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 600;
  color: #2d3748;
}

.pagination {
  display: flex;
  gap: 10px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: {{ section.settings.nav_color | default: '#4299e1' }};
  transform: scale(1.2);
}

.image-nav-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.image-nav-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: {{ section.settings.nav_color | default: '#4299e1' }};
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.image-nav-button:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 900px) {
  .slide-content {
    flex-direction: column !important;
  }
  
  .text-container {
    padding: 30px;
  }
  
  .image-container {
    height: 300px;
  }
  
  .controls {
    flex-wrap: wrap;
  }
  
  .timer-container {
    order: 3;
    margin-top: 20px;
  }
  
  .image-nav-container {
    padding: 0 10px;
  }
  
  .image-nav-button {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 600px) {
  .text-container {
    padding: 20px;
  }
  
  .controls {
    padding: 15px;
  }
  
  .image-nav-button {
    width: 30px;
    height: 30px;
  }
  
  .image-nav-button svg {
    width: 14px;
    height: 14px;
  }
}
.logo-list {
  padding: 50px 20px;
  background-color: {{ section.settings.background_color }};
}

.logo-list-container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-list-heading {
  text-align: {{ section.settings.heading_alignment }};
  margin-bottom: 40px;
  color: {{ section.settings.heading_color }};
  font-size: {{ section.settings.heading_size }}px;
  font-weight: 700;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat({{ section.settings.logos_per_row }}, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.logo-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -15px;
  padding: 0 15px 20px;
}

.logo-carousel::-webkit-scrollbar {
  display: none;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  {% if section.settings.show_border %}
  border: 1px solid {{ section.settings.border_color }};
  border-radius: 8px;
  {% endif %}
  padding: 15px;
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.logo-link {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.logo-image {
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

{% if section.settings.hide_carousel_arrows %}
  .carousel-controls {
    display: none !important;
  }
{% endif %}

.carousel-button {
  background: #4299e1;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: #3182ce;
  transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .logo-list-heading {
    font-size: calc({{ section.settings.heading_size }}px * 0.8);
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-list {
    padding: 30px 15px;
  }
  
  .logo-item {
    padding: 10px;
  }
}