/** Shopify CDN: Minification failed

Line 103:0 Unexpected "<"
Line 125:0 Unexpected "<"
Line 160:14 Expected identifier but found whitespace
Line 160:16 Unexpected "{"
Line 160:25 Expected ":"
Line 160:57 Expected ":"
Line 949:24 Unexpected "{"
Line 949:33 Expected ":"
Line 949:40 Unexpected "{"
Line 957:24 Unexpected "{"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
:root {
  --sk-primary: #58BEC9;
  --sk-yellow: #FFF126;
  --sk-orange: #F0B31B;
  --sk-blue-light: #BAE0E3;
  --sk-mint: #E2F3ED;
  --sk-pink: #F9DBE8;

  --sk-text-strong: #10343A;
  --sk-text-soft: #0B2B2F;

  --sk-card-bg: #FFFFFF;
  --sk-card-shadow: 0 4px 0 rgba(0,0,0,0.12);
  --sk-radius: 0px;
  --sk-gap: 18px;

  --sk-title: 22px;
  --sk-subtitle: 15px;
  --sk-body: 14px;
}

/* Base Card & Section Styles */
.sk-card {
  background: var(--sk-card-bg);
  /* border-radius: var(--sk-radius); */
  box-shadow: var(--sk-card-shadow);
  padding: 16px;
  margin-bottom: var(--sk-gap);
}

.sk-section-title {
  font-size: var(--sk-title);
  color: var(--sk-text-strong);
  font-weight: 700;
  margin-bottom: 10px;
}

.sk-section-sub {
  font-size: var(--sk-subtitle);
  color: var(--sk-text-soft);
  margin-bottom: 14px;
  line-height: 1.45;
}

.sk-img-full {
  width: 100%;
  border-radius: 0;
  margin-bottom: var(--sk-gap);
}

/* Reusable Grid */
.sk-grid {
  display: grid;
  gap: var(--sk-gap);
  grid-template-columns: repeat(1, 1fr);
}

@media(min-width: 768px) {
  .sk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Reusable Item/Block Content Styles */
/* (These replace all the old inline styles) */

.sk-item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--sk-text-strong);
}

.sk-item-role {
  font-size: var(--sk-body);
  color: var(--sk-text-soft);
  margin-bottom: 6px;
}

.sk-item-body {
  font-size: var(--sk-body);
  color: var(--sk-text-soft);
  line-height: 1.4;
}
<style>
  .bubble-hint {
    position: fixed;
    z-index: 9999;
    border-radius: var(--sk-border-radius, 50%);
    background-color: var(--sk-bg-color, rgba(0,0,0,0.6));
    padding: var(--sk-padding, 10px);
    font-size: var(--sk-font-size, 16px);
    color: #fff;
    min-height: calc(40px * {{ section.settings.height_ratio | default: 1.0 }});
    transition: opacity 0.3s;
  }
  .bubble-hint--top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .bubble-hint--bottom {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
</style>
.cta-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center !important;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .cta-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 24px auto;
    letter-spacing: 0.5px;
    text-align: center !important;
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .cta-description {
    line-height: 1.6;
    margin: 0 auto 32px auto;
    max-width: {{ section.settings.content_max_width }}px;
    white-space: pre-line;
    text-align: center !important;
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  .cta-container--full-width .cta-title,
  .cta-container--full-width .cta-description {
    max-width: 100% !important;
  }

  .cta-button-wrapper {
    margin: 32px auto 0 auto;
    text-align: center !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center !important;
    min-width: 140px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* 响应式设计 */
  @media (max-width: 1200px) {
    .cta-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .cta-description {
      max-width: min({{ section.settings.content_max_width }}px, 90%);
    }
  }

  @media (max-width: 768px) {
    .cta-container {
      padding: 0 16px;
      margin: 0 auto;
    }

    .cta-title {
      margin: 0 auto 20px auto;
      text-align: center !important;
    }

    .cta-description {
      margin: 0 auto 28px auto;
      max-width: min({{ section.settings.content_max_width }}px, 95%);
      text-align: center !important;
    }

    .cta-button-wrapper {
      margin: 28px auto 0 auto;
      display: flex;
      justify-content: center;
    }

    .cta-button {
      padding: 14px 32px;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .cta-container {
      padding: 0 12px;
      margin: 0 auto;
    }

    .cta-title {
      margin: 0 auto 16px auto;
      text-align: center !important;
    }

    .cta-description {
      margin: 0 auto 24px auto;
      max-width: 100%;
      text-align: center !important;
    }

    .cta-button-wrapper {
      margin: 24px auto 0 auto;
      display: flex;
      justify-content: center;
    }

    .cta-button {
      padding: 12px 28px;
      font-size: 0.85rem;
      min-width: 120px;
    }
  }

  /* 无障碍支持 */
  @media (prefers-reduced-motion: reduce) {
    .cta-button {
      transition: none;
    }
    
    .cta-button:hover {
      transform: none;
    }
  }

  /* 焦点状态 */
  .cta-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
  }

  .cta-button:focus:not(:focus-visible) {
    outline: none;
  }
.custom-carousel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .carousel-wrapper {
    position: relative;
    width: 998px;
    height: 503px;
    overflow: visible;
  }

  .carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 998px;
    margin-top: 30px;
  }

  .carousel-container {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    height: 503px;
    cursor: grab;
    user-select: none;
    transition: left 0.5s ease-out;
  }

  .carousel-container:active {
    cursor: grabbing;
  }

  .carousel-slide {
    position: relative;
    min-width: 998px;
    width: 998px;
    height: 503px;
    flex-shrink: 0;
    margin: 0 15px;
  }

  .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    background-color: #f0f0f0;
  }

  video.slide-background {
    display: block;
  }

  .slide-overlay {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 104%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .carousel-slide.active .slide-overlay {
    opacity: 0;
  }

  .slide-content {
    position: absolute;
    top: -20px;
    left: 0;
    padding: 30px 40px;
    max-width: 400px;
    z-index: 2;
    background-color: #73BCC7;
    transition: all 0.3s ease;
    pointer-events: auto;
  }

  .slide-content.expanded {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.5) transparent;
  }

  .slide-content.expanded::-webkit-scrollbar {
    width: 6px;
  }

  .slide-content.expanded::-webkit-scrollbar-track {
    background: transparent;
  }

  .slide-content.expanded::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
    /* border-radius: 3px; */
  }

  .slide-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
  }

  .slide-description {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Poppins', sans-serif;
  }

  .slide-content.expanded .slide-description {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 15px;
  }

  .show-more-btn {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: border-bottom 0.3s ease;
    margin-top: 15px;
  }

  .show-more-btn:after {
    content: '↓';
    margin-left: 5px;
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .slide-content.expanded .show-more-btn {
    border-bottom: none;
    margin-top: 0;
  }

  .slide-content.expanded .show-more-btn:after {
    transform: rotate(90deg);
  }

  .slide-link {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-style: italic;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    margin-top: 10px;
  }

  .slide-link:after {
    content: '›';
    margin-left: 5px;
    font-size: 18px;
  }

  .nav-button {
    background: transparent;
    border: none;
    color: #73bcc7;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .nav-button:hover {
    color: #5aa5b0;
  }

  .nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .nav-button:disabled:hover {
    text-decoration: none;
  }

  .nav-button.invisible {
    opacity: 0;
    pointer-events: none;
  }

  .nav-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .nav-button.prev svg {
    transform: rotate(180deg);
  }

  @media (max-width: 768px) {
    .custom-carousel {
      padding: 0;
    }

    .carousel-wrapper {
      width: 100vw;
      height: 503px;
    }

    .carousel-navigation {
      margin-top: 20px;
      width: calc(100vw - 40px);
      margin-left: 20px;
    }

    .carousel-container {
      height: 503px;
    }

    .carousel-slide {
      min-width: 100vw;
      width: 100vw;
      height: 503px;
      margin: 0 0;
    }

    .slide-content {
      max-width: 80%;
      padding: 30px;
    }

    .slide-title {
      font-size: 24px;
    }

    .nav-button {
      font-size: 12px;
    }
  }
.image-text-section {
        padding: 0;
        margin: 0;
      }

      .image-text-wrapper {
        display: flex;
        align-items: stretch;
        gap: 0;
        margin: 0 auto;
      }

      /* 图片区域 */
      .image-content {
        position: relative;
        display: flex;
        overflow: hidden;
      }

      .image-content img {
        width: 100%;
        height: 100%;
        display: block;
      }

      .image-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 2px dashed #dee2e6;
        /* border-radius: 8px; */
        padding: 40px 20px;
        color: #6c757d;
        text-align: center;
        min-height: 250px;
        width: 100%;
      }

      .image-placeholder p {
        margin: 10px 0 0 0;
        font-size: 1.1rem;
      }

      /* 文字内容区域 */
      .text-content {
        display: flex;
        flex-direction: column;
      }

      .section-title {
        margin: 0 0 16px 0;
      }

      .section-description {
        margin: 0 0 20px 0;
        padding: 0;
        white-space: pre-line;
        width: 100%;
        box-sizing: border-box;
      }

      .button-wrapper {
        width: 100%;
        display: flex;
      }

      .section-button {
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: center;
      }

      .section-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }
.location-selector-section {
    width: 100%;
  }

  .location-selector-container {
    max-width: 994px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: stretch;
    min-height: 450px;
  }

  .location-selector-left {
    display: flex;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
  }

  .location-selector-right {
    position: relative;
    height: 450px;
  }

  .location-selector-title {
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
  }

  /* 下拉框样式 */
  .location-dropdown {
    position: relative;
    margin-bottom: 30px;
  }

  .location-select {
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 0px;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .location-select:focus {
    outline: none;
    border-color: #7BCCC4;
    box-shadow: 0 0 0 3px rgba(123, 204, 196, 0.1);
  }

  .dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
  }

  .dropdown-arrow svg {
    width: 10px;
    height: 6px;
  }

  /* 地址详情样式 */
  .location-details {
    background-color: #F8F9FA;
    padding: 20px;
    border-radius: 0;
    flex: 1;
    overflow-y: auto;
    max-height: calc(450px - 120px);
  }

  .location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
  }

  .location-item .location-hours {
    display: block !important;
    flex-direction: column !important;
  }

  .location-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 5px;
  }

  .location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
  }

  .location-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
  }

  .location-address {
    margin-bottom: 12px;
    flex-shrink: 0;
  }

  .location-address p {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .location-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-shrink: 0;
  }

  .location-phone a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    color: #2B2B2B;
  }

  .location-phone a:hover {
    text-decoration: underline;
  }

  .location-hours {
    margin-bottom: 15px;
    display: block !important;
    flex-direction: column !important;
    flex-shrink: 0;
  }

  .hours-title {
    display: block !important;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    width: 100%;
    flex: none !important;
  }

  .hours-content {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-left: 0;
    display: block !important;
    width: 100%;
    flex: none !important;
  }

  .location-directions {
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .directions-btn,
  .menu-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
  }

  .directions-btn:hover,
  .menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* 右侧图片样式 */
  .location-image {
    width: 100%;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }

  .location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .location-image:hover img {
    transform: scale(1.02);
  }

  .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 0;
    color: #6c757d;
    text-align: center;
  }

  .image-placeholder p {
    margin: 10px 0 0 0;
    font-size: 1rem;
  }

  /* 移动端地址详情样式 */
  .location-details-mobile {
    display: none;
    background-color: #F8F9FA;
    padding: 20px;
    border-radius: 0;
  }

  /* 响应式设计 */
  @media (max-width: 768px) {
    .location-selector-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 0 16px;
      min-height: auto;
    }

    .location-selector-left {
      height: auto;
      overflow: visible;
      order: 1;
    }

    .location-selector-right {
      height: 300px;
      order: 2;
    }

    .location-details {
      display: none;
    }

    .location-details-mobile {
      display: block;
      order: 3;
    }

    .location-item-mobile {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .location-item-mobile .location-hours {
      display: block !important;
      flex-direction: column !important;
    }

    .location-name {
      font-size: 1.25rem;
    }

    .location-image {
      height: 300px;
    }
  }

  @media (max-width: 768px) {
    #location-selector-{{ section.id }} {
      padding-top: 5px !important;
      padding-bottom: 30px !important;
      margin-top: 0 !important;
    }
  }

  @media (max-width: 480px) {
    #location-selector-{{ section.id }} {
      padding-top: 0px !important;
      padding-bottom: 20px !important;
    }

    .location-item {
      gap: 15px;
    }

    .location-item-mobile {
      gap: 15px;
    }

    .location-name {
      font-size: 1.125rem;
    }

    .location-select {
      padding: 8px 35px 8px 12px;
      font-size: 0.9rem;
    }

    .dropdown-arrow svg {
      width: 9px;
      height: 5px;
    }

    .location-image {
      height: 250px;
    }

    .location-directions {
      flex-direction: column;
      gap: 8px;
    }

    .directions-btn,
    .menu-btn {
      padding: 8px 20px;
      font-size: 0.8rem;
      text-align: center;
    }
  }
/* 引入 Poppins 字体 */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

  .custom-carousel666 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif; /* 确保全局字体 */
    background-color: #ffffff; /* 默认背景白 */
    padding: 40px 0;
  }

  .carousel-wrapper {
    position: relative;
    width: 998px;
    height: 503px;
    overflow: visible;
  }

  .carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 998px;
    margin-top: 30px;
  }

  .carousel-container {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    height: 503px;
    cursor: grab;
    user-select: none;
    transition: left 0.5s ease-out;
  }

  .carousel-container:active {
    cursor: grabbing;
  }

  .carousel-slide {
    position: relative;
    min-width: 998px;
    width: 998px;
    height: 503px;
    flex-shrink: 0;
    margin: 0 15px;
  }

  .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    background-color: #f0f0f0;
  }

  video.slide-background {
    display: block;
  }

  .slide-overlay {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 104%;
    background-color: rgba(0, 0, 0, 0.5); /* 恢复默认遮罩 */
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .carousel-slide.active .slide-overlay {
    opacity: 0;
  }

  .slide-content {
    position: absolute;
    top: -20px;
    left: 0;
    padding: 30px 40px;
    /* 宽度优化防止截断 */
    max-width: 500px; 
    z-index: 2;
    /* 恢复原版颜色 #73BCC7 */
    background-color: #73BCC7; 
    transition: all 0.3s ease;
    pointer-events: auto;
    box-sizing: border-box;
  }

  .slide-content.expanded {
    max-height: 600px; 
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.5) transparent;
  }

  .slide-content.expanded::-webkit-scrollbar {
    width: 6px;
  }

  .slide-content.expanded::-webkit-scrollbar-track {
    background: transparent;
  }

  .slide-content.expanded::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
  }

  .slide-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
  }

  .slide-description {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Poppins', sans-serif;
  }

  .slide-content.expanded .slide-description {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 15px;
  }

  .show-more-btn {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: border-bottom 0.3s ease;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
  }

  .show-more-btn:after {
    content: '›';
    margin-left: 5px;
    font-size: 18px;
    transition: transform 0.3s ease;
    transform: rotate(90deg); 
  }

  /* 展开状态下 Show Less 按钮样式 */
  .slide-content.expanded .show-more-btn.show-less {
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 10px; /* 下方留出空间给 Full Article */
  }

  .slide-content.expanded .show-more-btn:after {
    transform: rotate(90deg);
  }

  /* 底部按钮容器：垂直排列 */
  .slide-actions {
    display: none; /* 默认隐藏 */
    flex-direction: column; /* 垂直排列 */
    align-items: flex-start; /* 左对齐 */
    margin-top: 10px;
  }
  
  .slide-content.expanded .slide-actions {
    display: flex;
  }

  /* Full Article 按钮样式调整 */
  .slide-link {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    font-style: normal; /* 取消斜体 */
    border: 1px solid #ffffff; /* 空心方框 */
    padding: 8px 20px; /* 增加内边距 */
    margin-top: 5px; /* 与 Show Less 的间距 */
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  .slide-link:hover {
    background-color: rgba(255,255,255,0.1);
  }

  /* 不需要箭头 */
  .slide-link:after {
    content: none; 
  }

  .nav-button {
    background: transparent;
    border: none;
    color: #73bcc7; /* 恢复原版颜色 */
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
  }

  .nav-button:hover {
    color: #5aa5b0;
  }

  .nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  /* 隐藏类 */
  .nav-button.invisible {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .nav-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .nav-button.prev svg {
    transform: rotate(180deg);
  }

  @media (max-width: 768px) {
    .custom-carousel {
      padding: 0;
    }

    .carousel-wrapper {
      width: 100vw;
      height: 503px;
    }

    .carousel-navigation {
      margin-top: 20px;
      width: calc(100vw - 40px);
      margin-left: 20px;
    }

    .carousel-container {
      height: 503px;
    }

    .carousel-slide {
      min-width: 100vw;
      width: 100vw;
      height: 503px;
      margin: 0 0;
    }

    .slide-content {
      max-width: 80%;
      padding: 30px;
    }

    .slide-title {
      font-size: 24px;
    }

    .nav-button {
      font-size: 12px;
    }
  }
.product-tabs-section {
        padding: 0;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .section-header {
        text-align: center;
        margin-bottom: 40px;
      }

      .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 0 16px 0;
        color: #333;
      }

      .section-description {
        font-size: 1.1rem;
        color: #666;
        margin: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      /* 标签页导航 */
      .tabs-nav {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
      }

      .tab-button {
        padding: 12px 24px;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        min-width: 120px;
        text-align: center;
        border-radius: 0;
      }

      /* 按钮样式变体 */
      .tab-button.style-rounded {
        border-radius: 8px;
      }

      .tab-button.style-pill {
        border-radius: 25px;
      }

      .tab-button.style-square {
        border-radius: 0;
      }

      /* 标签页内容 */
      .tabs-content {
        position: relative;
      }

      .tab-panel {
        display: none;
      }

      .tab-panel.active {
        display: block;
      }

      /* 商品轮播 */
      .products-carousel {
        position: relative;
        overflow: hidden;
      }

      .products-track {
        display: flex;
        gap: 20px;
        transition: transform 0.4s ease;
        will-change: transform;
      }

        .product-card {
          flex: 0 0 calc((100% / {{ section.settings.desktop_products_per_page | default: 4 }}) - (20px * ({{ section.settings.desktop_products_per_page | default: 4 }} - 1) / {{ section.settings.desktop_products_per_page | default: 4 }}));
          background: #fff;
          border-radius: 0;
          box-shadow: none;
          overflow: hidden;
          transition: transform 0.3s ease;
        }

      .product-card:hover {
        transform: translateY(-4px);
      }

      .product-image {
        position: relative;
        width: 100%;
        padding-bottom: 100%;
        overflow: hidden;
        background: #f8f9fa;
      }

      .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .product-card:hover .product-image img {
        transform: scale(1.05);
      }

      .product-image-placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ccc;
      }

      .product-info {
        padding: 20px;
        text-align: center;
      }

      .product-title {
        margin: 0 0 12px 0;
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.4;
      }

      .product-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .product-title a:hover {
        color: #007bff;
      }

      .product-price {
        margin-bottom: 12px;
        font-weight: 600;
      }

      .price-regular {
        color: #333;
        font-size: 1.2rem;
      }

      .price-compare {
        color: #999;
        text-decoration: line-through;
        margin-right: 8px;
        font-size: 1rem;
      }

      .price-sale {
        color: #e74c3c;
        font-size: 1.2rem;
      }

      /* 星级评价 */
      .product-rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }

      .stars {
        display: flex;
        gap: 2px;
      }

      .star {
        font-size: 1rem;
        line-height: 1;
      }

      .star-full {
        color: #ffc107;
      }

      .star-half {
        position: relative;
        display: inline-block;
        color: #ddd;
      }

      .star-half::before {
        content: '★';
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        overflow: hidden;
        color: #ffc107;
      }

      .star-empty {
        color: #ddd;
      }

      .rating-text {
        font-size: 0.9rem;
        color: #666;
      }

      /* 轮播控制按钮容器 */
      .carousel-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        position: relative;
        z-index: 5;
      }

      /* 轮播控制按钮 */
      .carousel-btn {
        width: 48px;
        height: 48px;
        border: none;
        background: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding: 0;
        position: relative;
        z-index: 10;
        pointer-events: auto;
      }

      .carousel-btn:hover {
        transform: scale(1.1);
        background: rgba(0, 0, 0, 0.05);
      }

      .carousel-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
      }

      .carousel-btn:disabled:hover {
        transform: none;
        background: none;
      }

      .carousel-btn svg {
        pointer-events: none;
      }

      .product-tabs-section {
        position: relative;
        z-index: 1;
      }

      .empty-collection {
        text-align: center;
        padding: 60px 20px;
        color: #666;
        font-size: 1.1rem;
      }

      /* 响应式设计 */
      @media (max-width: 1024px) {
        .product-card {
          flex: 0 0 calc((100% / 3) - (20px * 2 / 3));
        }
      }

        @media (max-width: 768px) {
          .product-tabs-section {
            padding: 0;
          }

          .section-title {
            font-size: 2rem;
          }

          .tab-button {
            padding: 10px 16px;
            font-size: 0.9rem;
            min-width: 100px;
          }

          .product-card {
            flex: 0 0 calc((100% / {{ section.settings.mobile_products_per_page | default: 2 }}) - (20px * ({{ section.settings.mobile_products_per_page | default: 2 }} - 1) / {{ section.settings.mobile_products_per_page | default: 2 }}));
          }

          .carousel-controls {
            margin-top: 20px;
            gap: 15px;
          }

          .carousel-btn {
            width: 40px;
            height: 40px;
          }
        }

      @media (max-width: 480px) {
        .container {
          padding: 0 16px;
        }

        .product-card {
          flex: 0 0 100%;
        }

        .products-track {
          gap: 16px;
        }

        .carousel-controls {
          display: none;
        }
      }
.text-content-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text-content-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .text-content-container--full-width {
    max-width: none;
  }

  .text-content-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
  }

  .text-content-description {
    line-height: 1.6;
    margin: 0;
    white-space: pre-line;
  }

  /* 响应式设计 */
  @media (max-width: 1200px) {
    .text-content-container {
      max-width: 100%;
      padding: 0 20px;
    }
  }

  @media (max-width: 768px) {
    .text-content-container {
      padding: 0 16px;
    }

    .text-content-title {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 480px) {
    .text-content-container {
      padding: 0 12px;
    }

    .text-content-title {
      margin-bottom: 16px;
    }
  }

  /* 无障碍支持 */
  @media (prefers-reduced-motion: reduce) {
    .text-content-title,
    .text-content-description {
      transition: none;
    }
  }
.sinnkawa-story-club {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-body-family);
}

.story-club__banner {
  position: relative;
  margin-bottom: 40px;
}

.story-club__banner-content {
  position: relative;
}

.story-club__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-weight: 700;
}

.story-club__banner-img {
  max-width: 100%;
  border-radius: 12px;
}

.story-club__intro {
  margin-bottom: 40px;
}

.story-club__summary {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.story-club__perks {
  margin-bottom: 50px;
}

.story-club__perks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.story-club__perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.story-club__perk-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.story-club__perk-text {
  font-size: 1rem;
}

.story-club__ugc {
  margin-bottom: 50px;
}

.story-club__ugc-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--color-secondary);
}

.story-club__carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.story-club__carousel-item {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  background: var(--color-background-light);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.story-club__ugc-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.story-club__ugc-item-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.story-club__ugc-item-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.story-club__cta {
  margin-top: 30px;
}

.story-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-club__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .story-club__title {
    font-size: 2rem;
  }
  
  .story-club__summary {
    font-size: 1rem;
  }
  
  .story-club__perks-list {
    gap: 20px;
  }
  
  .story-club__perk-item {
    width: 150px;
  }
}
.sinnkawa-story-club {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-body-family);
}

.story-club__banner {
  position: relative;
  margin-bottom: 40px;
}

.story-club__banner-content {
  position: relative;
}

.story-club__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-weight: 700;
}

.story-club__banner-img {
  max-width: 100%;
  border-radius: 12px;
}

.story-club__intro {
  margin-bottom: 40px;
}

.story-club__summary {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.story-club__perks {
  margin-bottom: 50px;
}

.story-club__perks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.story-club__perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.story-club__perk-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.story-club__perk-text {
  font-size: 1rem;
}

.story-club__ugc {
  margin-bottom: 50px;
}

.story-club__ugc-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--color-secondary);
}

.story-club__carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.story-club__carousel-item {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  background: var(--color-background-light);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.story-club__ugc-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.story-club__ugc-item-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.story-club__ugc-item-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.story-club__cta {
  margin-top: 30px;
}

.story-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-club__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .story-club__title {
    font-size: 2rem;
  }
  
  .story-club__summary {
    font-size: 1rem;
  }
  
  .story-club__perks-list {
    gap: 20px;
  }
  
  .story-club__perk-item {
    width: 150px;
  }
}
/* 引入 Poppins 字体 */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

  .custom-carousel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif; /* 确保全局字体 */
    background-color: #ffffff; /* 默认背景白 */
    padding: 40px 0;
  }

  .carousel-wrapper {
    position: relative;
    width: 998px;
    height: 503px;
    overflow: visible;
  }

  .carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 998px;
    margin-top: 30px;
  }

  .carousel-container {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    height: 503px;
    cursor: grab;
    user-select: none;
    transition: left 0.5s ease-out;
  }

  .carousel-container:active {
    cursor: grabbing;
  }

  .carousel-slide {
    position: relative;
    min-width: 998px;
    width: 998px;
    height: 503px;
    flex-shrink: 0;
    margin: 0 15px;
  }

  .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    background-color: #f0f0f0;
  }

  video.slide-background {
    display: block;
  }

  .slide-overlay {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 104%;
    background-color: rgba(0, 0, 0, 0.5); /* 恢复默认遮罩 */
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .carousel-slide.active .slide-overlay {
    opacity: 0;
  }

  .slide-content {
    position: absolute;
    top: -20px;
    left: 0;
    padding: 30px 40px;
    /* 宽度优化防止截断 */
    max-width: 500px; 
    z-index: 2;
    /* 恢复原版颜色 #73BCC7 */
    background-color: #73BCC7; 
    transition: all 0.3s ease;
    pointer-events: auto;
    box-sizing: border-box;
  }

  .slide-content.expanded {
    max-height: 600px; 
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.5) transparent;
  }

  .slide-content.expanded::-webkit-scrollbar {
    width: 6px;
  }

  .slide-content.expanded::-webkit-scrollbar-track {
    background: transparent;
  }

  .slide-content.expanded::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
  }

  .slide-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
  }

  .slide-description {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Poppins', sans-serif;
  }

  .slide-content.expanded .slide-description {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 15px;
  }

  /* Show More / Show Less 通用样式 */
  .show-more-btn {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #ffffff; /* 默认下划线 */
    padding-bottom: 2px;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
  }
  
  .show-more-btn:hover {
    opacity: 0.8;
  }

  .show-more-btn:after {
    content: '›';
    margin-left: 5px;
    font-size: 18px;
    transition: transform 0.3s ease;
    transform: rotate(90deg); 
  }

  /* 展开状态下 Show Less 按钮样式 */
  .slide-content.expanded .show-more-btn.show-less {
    border-bottom: 1px solid #ffffff; /* 保持下划线 */
    margin-top: 0;
    margin-bottom: 15px; /* 下方留出空间给 Full Article */
  }

  .slide-content.expanded .show-more-btn:after {
    transform: rotate(90deg);
  }

  /* 底部按钮容器：垂直排列 */
  .slide-actions {
    display: none; /* 默认隐藏 */
    flex-direction: column; /* 垂直排列 */
    align-items: flex-start; /* 左对齐 */
    margin-top: 10px;
  }
  
  .slide-content.expanded .slide-actions {
    display: flex;
  }

  /* Full Article 按钮样式 (与 Show More/Less 同款) */
  .slide-link {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex; 
    align-items: center;
    /* 取消之前的空心方框和内边距 */
    border: none;
    background: transparent;
    padding: 0;
    
    /* 添加与 Show More 一样的下划线 */
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    
    margin-top: 5px; /* 与 Show Less 的间距 */
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-style: normal; /* 确保无斜体 */
  }
  
  .slide-link:hover {
    opacity: 0.8;
    background-color: transparent; /* 取消之前的hover背景色 */
  }

  /* 不需要箭头 */
  .slide-link:after {
    content: none; 
  }

  .nav-button {
    background: transparent;
    border: none;
    color: #73bcc7; /* 恢复原版颜色 */
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
  }

  .nav-button:hover {
    color: #5aa5b0;
  }

  .nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  /* 隐藏类 */
  .nav-button.invisible {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .nav-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .nav-button.prev svg {
    transform: rotate(180deg);
  }

  @media (max-width: 768px) {
    .custom-carousel {
      padding: 0;
    }

    .carousel-wrapper {
      width: 100vw;
      height: 503px;
    }

    .carousel-navigation {
      margin-top: 20px;
      width: calc(100vw - 40px);
      margin-left: 20px;
    }

    .carousel-container {
      height: 503px;
    }

    .carousel-slide {
      min-width: 100vw;
      width: 100vw;
      height: 503px;
      margin: 0 0;
    }

    .slide-content {
      max-width: 80%;
      padding: 30px;
    }

    .slide-title {
      font-size: 24px;
    }

    .nav-button {
      font-size: 12px;
    }
  }