/** Shopify CDN: Minification failed

Line 43:15 Expected identifier but found whitespace
Line 43:16 Unexpected "0"
Line 43:21 Unexpected "{"
Line 43:30 Expected ":"
Line 43:60 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:sy (INDEX:93) */
/* ── PC layout (�?025px): two-column flex, no grid ── */
      .sy-main {
          display: flex;
          flex-direction: row;
          width: calc(100% - 80px);
          margin: 30px auto 0 0;
          padding-bottom: 32px;
          position: relative;
      }

      @media (min-width: 1440px) {
          .sy-main {
              margin-left: auto;
              margin-right: auto;
              max-width: 1440px;
          }
      }

      /* left = image area, right = product info */
      .sy-left {
          flex: 1 1 auto;
          display: flex;
          position: sticky;
          top: 0;
          align-self: flex-start;
      }

      .sy-right {
          flex: 0 0 {{ section.settings.right_panel_width }}%;
          padding-left: 24px;
          display: none;
          min-width: 0;
      }
      .sy-right.ready {
          display: block;
      }

      .sy-rating {
          display: flex;
          align-items: center;
          gap: 2px;
          margin-bottom: 8px;
      }

      .sy-rating .jdgm-star,
      .sy-rating .jdgm-star__piece {
          color: #000 !important;
      }

      .sy-rating .customizer-product-rating .jdgm-star,
      .sy-rating .customizer-product-rating .jdgm-star__piece {
          color: #000 !important;
      }

      .sy-rating .jdgm-widget {
          display: flex !important;
          align-items: center !important;
          gap: 4px !important;
          color: #000 !important;
          font-size: 14px !important;
      }

      .sy-rating .jdgm-widget * {
          color: #000 !important;
          font-size: 14px !important;
      }

      .sy-rating .jdgm-prev-badge {
          display: inline-flex !important;
          align-items: center !important;
          gap: 4px !important;
          color: #000 !important;
          font-size: 14px !important;
          line-height: 1 !important;
      }

      .sy-rating .jdgm-prev-badge__text {
          position: relative;
          top: 2px;
          color: #000 !important;
          font-size: 14px !important;
          display: inline;
          visibility: visible;
          opacity: 1;
          line-height: 1 !important;
          vertical-align: middle !important;
      }

      .sy-rating .jdgm-star,
      .sy-rating .jdgm-star svg {
          vertical-align: middle !important;
      }

      .sy-rating-stars {
          color: #000;
          font-size: 14px;
          letter-spacing: 1px;
      }

      .sy-rating-count {
          color: #666;
          font-size: 13px;
          margin-left: 4px;
      }

      .sy-delivery {
        font-weight:700;
        color:#000;
        /* text-decoration:underline; */
          /* color: #888; */
          /* font-size: 14px; */
          /* margin: 0; */
      }

      /* Disable mobile tap highlight on all interactive elements */
      .sy-snapcover-item,
      .sy-giftbox-item,
      .sy-color-block,
      .sy-none-block,
      .sy-dropdown-item,
      .sy-dropdown-toggle,
      .sy-accessories-card-btn,
      .sy-accessories-card-dot,
      .sy-accessories-page-dot,
      .sy-video-card-add,
      .sy-video-card-info,
      .sy-video-wrap,
      .sy-recommended-card,
      .thumb,
      .thumb-composite,
      .sy-desc-header,
      .sy-giftbox-toggle,
      .sy-devicecolor-item {
          -webkit-tap-highlight-color: transparent;
      }

      /* image area: two sub-columns �?thumbnails | preview */
      .image-panel {
          display: flex;
          height: calc(100vh - 160px);
          width: 100%;
      }

      .thumbs-area {
          flex: 1;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 8px;
          padding: 6px;
          min-height: 0;
      }

      .thumbs-viewport {
          flex: 1;
          min-height: 0;
          overflow-y: auto;
          display: flex;
          flex-direction: column;
          gap: 8px;
          scrollbar-width: none;
      }

      .thumbs-viewport::-webkit-scrollbar {
          display: none;
      }

      .thumb {
          width: 110px;
          height: 110px;
          object-fit: cover;
          border: 1px solid #ddd;
          display: block;
          flex-shrink: 0;
          cursor: pointer;
      }

      .thumb.active {
          border: 1px solid #000;
      }

      .sy-composite-img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .sy-composite-img.layer-bottom { z-index: 1; }
      .sy-composite-img.layer-middle { z-index: 2; }
      .sy-composite-img.layer-top { z-index: 3; }

      /* Composite image for thumbnails */
      .thumb-composite {
          width: 110px;
          height: 110px;
          position: relative;
          flex-shrink: 0;
      }

      .thumb-composite img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .thumb-composite img.layer-bottom { z-index: 1; }
      .thumb-composite img.layer-middle { z-index: 2; }
      .thumb-composite img.layer-top { z-index: 3; }

      .thumb-composite.thumb.active {
          border: 1px solid #000;
      }

      /* Composite image for preview - 100% of parent */
      .preview-composite {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: flex;
          flex-direction: column;
          overflow: hidden;
      }

      .preview-composite.active {
          display: flex;
      }

      /* Composite layers take full remaining height in flex container */
      .preview-composite .sy-composite-layers {
          position: relative;
          flex: 1;
          min-height: 0;
          width: 100%;
          overflow: hidden;
      }

      .preview-composite .sy-composite-img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: contain;
      }

      .preview-composite .sy-composite-img.layer-bottom { z-index: 1; }
      .preview-composite .sy-composite-img.layer-middle { z-index: 2; }
      .preview-composite .sy-composite-img.layer-top { z-index: 3; }

      .preview-composite .sy-composite-layers .sy-composite-img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: contain;
      }

      /* DEVICE COLOR module inside composite */
      .preview-devicecolor {
          flex-shrink: 0;
          height: 20%;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          padding: 10px;
          box-sizing: border-box;
      }

      .preview-devicecolor .sy-option-label {
          font-size: 12px;
          font-weight: 600;
          color: #222;
          margin-bottom: 6px;
          letter-spacing: 0.5px;
          text-align: center;
      }

      .preview-devicecolor .sy-devicecolor-container {
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-wrap: wrap;
          gap: 10px;
      }

      .preview-devicecolor .sy-devicecolor-item {
          position: relative;
          box-sizing: border-box;
          width: 48px;
          height: 48px;
          padding: 4px;
          border-radius: 50%;
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: border-color 0.2s;
          -webkit-tap-highlight-color: transparent;
      }

      .preview-devicecolor .sy-devicecolor-item img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
      }

      @media (max-width: 1024px) {
          .thumb-composite {
              width: 60px;
              height: 60px;
          }
      }

      .thumb-arrow {
          height: 36px;
          border: none;
          background: transparent;
          cursor: pointer;
          font-size: 14px;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .preview-area {
          width: calc(100vh - 160px);
          height: calc(100vh - 160px);
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
      }

      .preview-area img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .preview-area {
          position: relative;
          overflow: hidden;
          display: none;
      }
      .preview-area.ready {
          display: block;
      }

      .thumbs-area {
          width: 28%;
          padding: 0 3%;
          min-width: 140px;
          display: none;
          flex-direction: column;
      }
      @media (min-width: 1025px) {
          .thumbs-area.ready {
              display: flex;
          }
      }
.preview-area.ready {
          opacity: 1;
      }

      .preview-img-wrapper {
          position: relative;
          overflow: hidden;
          width: 100%;
          height: 100%;
      }

      .preview-img-wrapper img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
          z-index: 1;
      }

      .preview-img-wrapper img.entering-next {
          transform: translateX(100%);
          z-index: 2;
      }

      .preview-img-wrapper img.entering-next.active {
          transform: translateX(0) !important;
      }

      .preview-img-wrapper img.entering-prev {
          transform: translateX(-100%);
          z-index: 2;
      }

      .preview-img-wrapper img.entering-prev.active {
          transform: translateX(0) !important;
      }

      .preview-img-wrapper img.leaving {
          transform: translateX(0);
          z-index: 1;
      }

      .preview-img-wrapper img.leaving.active {
          transform: translateX(-100%) !important;
      }

      /* ── Mobile (�?024px): stack vertically ── */
      @media (max-width: 1024px) {
          .sy-main {
              flex-direction: column;
              width: 100%;
              margin-top: 0;
          }

          .sy-left {
              order: 1;
              position: static;
              width: 100%;
          }

          .sy-right {
              order: 2;
              width: 100%;
              padding: 16px;
              box-sizing: border-box;
          }

          .image-panel {
              height: auto;
              flex-direction: column;
          }

          .thumbs-area {
              display: none;
          }

          .thumbs-viewport {
              flex-direction: row;
              overflow-x: auto;
          }

          .thumb {
              width: 60px;
              height: 60px;
          }

          .preview-area {
              width: 100%;
              height: auto;
              overflow: hidden;
              position: relative;
              display: none;
              flex-shrink: 1;
          }
          .preview-area.ready {
              display: block;
          }

          .preview-area::before {
              content: '';
              display: block;
              padding-top: 100%;
          }

          .preview-area .preview-img-wrapper {
              position: absolute;
              top: 0; left: 0;
              display: flex;
              overflow-x: auto;
              scroll-snap-type: x mandatory;
              scrollbar-width: none;
              width: 100%;
              height: 100%;
          }

          .preview-area .preview-img-wrapper::-webkit-scrollbar {
              display: none;
          }

          .preview-area .preview-img-wrapper img {
              position: relative;
              flex: 0 0 100%;
              width: 100%;
              height: 100%;
              object-fit: cover;
              scroll-snap-align: start;
              display: block !important;
              transform: none !important;
              z-index: 1 !important;
          }

          .preview-area .preview-img-wrapper .preview-composite {
              flex: 0 0 100%;
              scroll-snap-align: start;
              display: flex !important;
              position: relative !important;
              width: 100%;
              height: 100%;
              overflow: hidden;
          }

          .preview-devicecolor {
              position: absolute;
              left: 16px;
              top: 44%;
              z-index: 20;
              width: 54px;
              height: auto;
              max-height: calc(100% - 24px);
              padding: 0;
              transform: translateY(-50%);
              overflow: visible;
              background: transparent;
              box-shadow: none;
              border: none;
          }

          .preview-devicecolor::-webkit-scrollbar {
              display: none;
          }

          .preview-devicecolor .sy-option-label {
              display: block;
              width: 54px;
              margin: 0 0 7px;
              font-size: 8px;
              font-weight: 400;
              line-height: 10px;
              letter-spacing: 0.1px;
              color: #333;
              text-align: center;
              white-space: normal;
          }

          .preview-devicecolor .sy-devicecolor-container {
              width: 54px;
              max-height: calc(100% - 30px);
              padding: 0;
              margin: 0;
              display: flex;           
              flex-direction: column;          
              flex-wrap: nowrap;          
              align-items: center;          
              justify-content: center;
              gap: 14px;        
              background: transparent;        
              border: none;               
              border-radius: 0;        
              box-shadow: none;       
              overflow-y: auto;       
              overflow-x: visible;      
              scrollbar-width: none;
          }

          .preview-devicecolor .sy-devicecolor-container::-webkit-scrollbar {
              display: none;
          }

          .preview-devicecolor .sy-devicecolor-item {   
              position: relative;
              width: 22px;
              height: 22px;
              padding: 0;
              box-sizing: border-box;
              border: 1px solid rgba(0, 0, 0, 0.16);
              border-radius: 50%;
              background: #fff;
              overflow: visible;
              flex-shrink: 0;
              cursor: pointer;
              transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
              box-shadow:
                  0 3px 8px rgba(0, 0, 0, 0.16),
                  inset 0 1px 1px rgba(255, 255, 255, 0.65),
                  inset 0 -2px 3px rgba(0, 0, 0, 0.08);
              -webkit-tap-highlight-color: transparent;
          }

          /* .preview-devicecolor .sy-devicecolor-swatch {
              display: block;
              width: 100%;
              height: 100%;
              border-radius: 50%;
              background: var(--sy-device-color, #fff);
          } */

          .preview-devicecolor .sy-devicecolor-item[data-color] img,
          .preview-devicecolor .sy-devicecolor-item[data-color] .sy-devicecolor-swatch {
              display: none !important;
          }

          .preview-devicecolor .sy-devicecolor-item[data-color]::before {
              content: '';
              display: block;
              width: 100%;
              height: 100%;
              border-radius: 50%;
              background: var(--sy-device-color, #fff);
              box-shadow:
                  inset 0 2px 3px rgba(255, 255, 255, 0.55),
                  inset 0 -2px 4px rgba(0, 0, 0, 0.12);
          }

          .preview-devicecolor .sy-devicecolor-item[data-color]::after {
              display: block;
              content: '';
              position: absolute;
              top: 3px;
              left: 5px;
              width: 9px;
              height: 5px;
              border-radius: 999px;
              background: rgba(255, 255, 255, 0.28);
              filter: blur(0.2px);
              pointer-events: none;
          }

          .preview-devicecolor .sy-devicecolor-item:hover {
              content: '';
              transform: translateY(-1px);
              box-shadow:
                  0 4px 10px rgba(0, 0, 0, 0.18),
                  inset 0 1px 1px rgba(255, 255, 255, 0.65),
                  inset 0 -2px 3px rgba(0, 0, 0, 0.08);
          }

          .preview-devicecolor .sy-devicecolor-item.selected {
              border-color: #222;
              transform: scale(1.04);
              box-shadow:
                  0 0 0 2px #fff,
                  0 0 0 3px #222,
                  0 4px 10px rgba(0, 0, 0, 0.18)
                  inset 0 1px 1px rgba(255, 255, 255, 0.65),
                  inset 0 -2px 3px rgba(0, 0, 0, 0.08);
          }

          .preview-devicecolor .sy-devicecolor-item.selected::before {
              box-shadow:
                  inset 0 2px 3px rgba(255, 255, 255, 0.55),
                  inset 0 -2px 4px rgba(0, 0, 0, 0.12);
          }

        /* .sy-snapcover-item {
            width: 76px;
            min-width: 76px;
        }

        .sy-snapcover-item img {
            width: 76px;
            height: 76px;
        }

        .sy-addtocart-section {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 12px 16px;
            z-index: 999;
            border-top: 1px solid #eee;
        } */
    }

      /* ── DEVICE & BASE CASE modules ── */
      .sy-option-module {
          margin-top: 20px;
          width: 100%;
          box-sizing: border-box;
      }

      .sy-option-label {
          font-size: 13px;
          font-weight: 600;
          color: #222;
          margin-bottom: 8px;
          display: block;
          letter-spacing: 0.5px;
      }

      /* SNAP ON COVER container */
  .sy-snapcover-container {
          display: flex;
          gap: 12px;
          overflow-x: auto;
          padding-bottom: 10px;
          margin-top: 10px;
          width: 100%;
          box-sizing: border-box;
          flex-wrap: nowrap;
          white-space: nowrap;
          min-width: 0;
      }

      .sy-snapcover-container::-webkit-scrollbar {
          height: 6px;
      }

      .sy-snapcover-container::-webkit-scrollbar-track {
          background: #f1f1f1;
          border-radius: 3px;
      }

      .sy-snapcover-container::-webkit-scrollbar-thumb {
          background: #ccc;
          border-radius: 3px;
      }

      .sy-snapcover-container::-webkit-scrollbar-thumb:hover {
          background: #999;
      }

      .sy-snapcover-item {
          flex-shrink: 0;
          width: 80px;
          min-width: 80px;
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 4px;
      }

      .sy-snapcover-item img {
          width: 80px;
          height: 80px;
          object-fit: cover;
          border: 1px solid transparent;
          border-radius: 4px;
          transition: border-color 0.2s;
          flex-shrink: 0;
      }

      .sy-snapcover-item.selected img {
          border-color: #333;
      }

      .sy-snapcover-item .sy-snapcover-title {
          font-size: 12px;
          color: #888;
          text-align: center;
          width: 80px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          line-height: 1.2;
      }

      .sy-snapcover-item .sy-snapcover-check {
          position: absolute;
          top: 2px;
          right: 2px;
          width: 18px;
          height: 18px;
          border-radius: 50%;
          background: #000;
          color: #fff;
          display: none;
          align-items: center;
          justify-content: center;
          z-index: 2;
          pointer-events: none;
      }

      .sy-snapcover-item .sy-snapcover-check svg {
          width: 12px;
          height: 12px;
      }

      .sy-snapcover-item.picked .sy-snapcover-check {
          display: flex;
      }

      .sy-snapcover-item .sy-snapcover-bar {
          position: absolute;
          bottom: 18px;
          left: 0;
          right: 0;
          height: 24px;
          background: rgba(0, 0, 0, 0.75);
          color: #fff;
          display: none;
          align-items: center;
          justify-content: center;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 1px;
          cursor: pointer;
          z-index: 2;
          border-radius: 0 0 4px 4px;
      }

      .sy-snapcover-item.selected .sy-snapcover-bar {
          display: flex;
      }

      /* Custom dropdown */
      .sy-dropdown {
          position: relative;
          width: 100%;
      }

      .sy-dropdown-toggle {
          width: 100%;
          padding: 10px 14px;
          border: 1px solid #ccc;
          border-radius: 4px;
          background: #fff;
          display: flex;
          align-items: center;
          justify-content: space-between;
          cursor: pointer;
          transition: border-color 0.2s;
      }

      .sy-dropdown-toggle:hover {
          border-color: #999;
      }

      .sy-dropdown-toggle.active {
          border: 1px solid #333;
          border-bottom: 1px solid #000;
          border-radius: 4px 4px 0 0;
      }

      .sy-dropdown-toggle span {
          font-size: 14px;
          color: #333;
      }

      .sy-dropdown-arrow {
          width: 18px;
          height: 18px;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: transform 0.2s;
          color: #666;
      }

      .sy-dropdown-toggle.active .sy-dropdown-arrow {
          transform: rotate(180deg);
          color: #333;
      }

      .sy-dropdown-menu::-webkit-scrollbar {
          width: 6px;
      }

      .sy-dropdown-menu::-webkit-scrollbar-track {
          background: #f1f1f1;
      }

      .sy-dropdown-menu::-webkit-scrollbar-thumb {
          background: #ccc;
          border-radius: 3px;
      }

      .sy-dropdown-menu::-webkit-scrollbar-thumb:hover {
          background: #999;
      }

      .sy-dropdown-menu {
          position: absolute;
          top: 120%;
          left: 0;
          right: 0;
          background: #fff;
          border: 1.5px solid #222;
          border-top: none;
          border-radius: 0 0 10px 10px;
          overflow: hidden;
          z-index: 100;
          display: none;
          max-height: 280px;
          overflow-y: auto;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }

      .sy-dropdown-menu.open {
          display: block;
      }

      .sy-dropdown-item {
          padding: 12px 16px;
          font-size: 14px;
          color: #333;
          cursor: pointer;
          transition: background 0.15s;
          border-bottom: 1px solid #eee;
      }

      .sy-dropdown-item:last-child {
          border-bottom: none;
      }

      .sy-dropdown-item:hover {
          background: #f5f5f5;
      }

      .sy-dropdown-item.selected {
          background: #f0f0f0;
          color: #222;
          font-weight: 500;
      }

      /* BASE CASE color blocks */
      .sy-color-block {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          cursor: pointer;
          border: 1px solid transparent;
          transition: transform 0.15s, border-color 0.15s;
          position: relative;
      }

      .sy-color-block:hover {
          transform: scale(1.12);
      }

      .sy-color-block.selected {
          outline: 1px solid #333;
          outline-offset: 2px;
      }

      .sy-color-block.disabled {
          opacity: 0.35;
          cursor: not-allowed;
          transform: none;
      }

      /* None block - diagonal line */
      .sy-none-block {
          position: relative !important;
          background: #fff !important;
          border: 1px solid #ccc !important;
          cursor: pointer !important;
      }

      .sy-none-block::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 120%;
          height: 1px;
          background: #000;
          transform: translate(-50%, -50%) rotate(45deg);
          pointer-events: none;
          z-index: 1;
      }

      /* Color blocks container - horizontal row, wrap */
      .sy-color-blocks {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
          align-items: center;
      }

      /* DEVICE COLOR images */
      .sy-devicecolor-container {
          display: flex;
          gap: 10px;
          overflow-x: auto;
          padding-bottom: 8px;
          margin-top: 10px;
          width: 100%;
          flex-wrap: nowrap;
          white-space: nowrap;
          min-width: 0;
      }

      .sy-devicecolor-container::-webkit-scrollbar {
          height: 4px;
      }

      .sy-devicecolor-container::-webkit-scrollbar-track {
          background: #f1f1f1;
          border-radius: 2px;
      }

      .sy-devicecolor-container::-webkit-scrollbar-thumb {
          background: #ccc;
          border-radius: 2px;
      }

  .sy-devicecolor-container::-webkit-scrollbar-thumb:hover {
          background: #999;
      }

      /* SNAP ON COVER scrollbar - thin black */
      .sy-snapcover-container::-webkit-scrollbar {
          height: 2px;
      }

      .sy-snapcover-container::-webkit-scrollbar-track {
          background: transparent;
      }

      .sy-snapcover-container::-webkit-scrollbar-thumb {
          background: #000;
          border-radius: 1px;
      }

      .sy-devicecolor-item:hover {
          border-color: #999;
      }

      .sy-devicecolor-item.selected {
          border-color: #000;
      }

  .sy-devicecolor-item img {
          position: relative !important;
          width: 48px !important;
          height: 48px !important;
          object-fit: cover;
      }

      /* GIFT BOX module */
      .sy-giftbox-module {
          margin-top: 20px;
      }

      .sy-giftbox-question {
          display: block;
          font-size: 13px;
          font-weight: 600;
          color: #222;
          margin-bottom: 8px;
          letter-spacing: 0.5px;
      }

      .sy-giftbox-toggle {
          display: flex;
          align-items: center;
          gap: 8px;
          cursor: pointer;
          user-select: none;
      }

      .sy-giftbox-toggle input[type="checkbox"] {
          display: none;
      }

      .sy-giftbox-check {
          width: 20px;
          height: 20px;
          min-width: 20px;
          border: 1.5px solid #ccc;
          border-radius: 3px;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: border-color 0.2s, background 0.2s;
      }

      .sy-giftbox-check svg {
          width: 14px;
          height: 14px;
          display: none;
          color: #000;
      }

      .sy-giftbox-toggle input:checked + .sy-giftbox-check {
          border-color: #000;
          background: #fff;
      }

      .sy-giftbox-toggle input:checked + .sy-giftbox-check svg {
          display: block;
      }

      .sy-giftbox-yes {
          font-size: 14px;
          color: #333;
          font-weight: 500;
      }

      .sy-giftbox-products {
          display: none;
          margin-top: 12px;
      }

      .sy-giftbox-products.visible {
          display: block;
      }

      .sy-giftbox-label-title {
          font-size: 13px;
          font-weight: 600;
          color: #222;
          margin-bottom: 8px;
          display: block;
          letter-spacing: 0.5px;
      }

      .sy-giftbox-grid {
          display: flex;
          gap: 10px;
          overflow-x: auto;
          padding-bottom: 8px;
          flex-wrap: nowrap;
      }

      .sy-giftbox-grid::-webkit-scrollbar {
          height: 2px;
      }

      .sy-giftbox-grid::-webkit-scrollbar-track {
          background: transparent;
      }

      .sy-giftbox-grid::-webkit-scrollbar-thumb {
          background: #000;
          border-radius: 1px;
      }

      .sy-giftbox-col {
          flex-shrink: 0;
      }

      .sy-giftbox-item {
          width: 80px;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 4px;
          cursor: pointer;
      }

      .sy-giftbox-item img {
          width: 80px;
          height: 80px;
          object-fit: cover;
          border: 1px solid transparent;
          border-radius: 4px;
          display: block;
          transition: border-color 0.2s;
      }

      .sy-giftbox-item:hover img {
          border-color: #999;
      }

      .sy-giftbox-item.selected img {
          border-color: #000;
      }

      .sy-giftbox-item .sy-giftbox-title {
          display: block;
          font-size: 12px;
          color: #888;
          text-align: center;
          line-height: 1.2;
          width: 80px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
      }

      /* ADD TO CART section */
      .sy-addtocart-section {
          margin-top: 20px;
          width: 100%;
      }

      .sy-addtocart-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 8px;
          min-height: 20px;
      }

      .sy-addtocart-items {
          font-size: 14px;
          color: #000;
      }

      .sy-addtocart-price-group {
          display: flex;
          align-items: baseline;
          gap: 6px;
      }

      .sy-addtocart-price {
          font-size: 16px;
          font-weight: 700;
          color: #222;
      }

      .sy-addtocart-price-label {
          font-size: 12px;
          color: #888;
      }

      .sy-addtocart-btn {
          width: 100%;
          padding: 14px 20px;
          background: #000;
          color: #fff;
          border: none;
          border-radius: 4px;
          font-size: 16px;
          font-weight: 700;
          cursor: pointer;
          transition: background 0.2s;
      }

      .sy-addtocart-btn:hover {
          background: #333;
      }

      .sy-addtocart-btn:disabled {
          background: #ccc;
          cursor: not-allowed;
      }

      .sy-addtocart-btn.loading {
          color: transparent;
          cursor: wait;
          pointer-events: none;
          position: relative;
      }

      .sy-addtocart-btn.loading::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 18px;
          height: 18px;
          margin: -9px 0 0 -9px;
          border: 2px solid rgba(255,255,255,0.3);
          border-top-color: #fff;
          border-radius: 50%;
          animation: sy-spin 0.6s linear infinite;
      }

      @keyframes sy-spin {
          to { transform: rotate(360deg); }
      }

      .sy-accessories-card-btn.loading,
      .sy-video-card-add.loading {
          color: transparent;
          position: relative;
          pointer-events: none;
      }

      .sy-accessories-card-btn.loading::after,
      .sy-video-card-add.loading::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 14px;
          height: 14px;
          margin: -7px 0 0 -7px;
          border: 2px solid rgba(255,255,255,0.3);
          border-top-color: #fff;
          border-radius: 50%;
          animation: sy-spin 0.6s linear infinite;
      }

      .sy-video-card-add.loading {
          border-color: transparent;
      }

      .sy-video-card-add.loading::after {
          border-color: rgba(0,0,0,0.15);
          border-top-color: #000;
      }

      .sy-addtocart-note {
          margin-top: 8px;
          font-size: 12px;
          color: #86644E;
          text-align: center;
      }

      /* GIFT PROMO banner */
      .sy-gift-promo {
          display: flex;
          width: 100%;
          margin-top: 20px;
          margin-bottom: 20px;
          border-radius: 4px;
          overflow: hidden;
      }

      .sy-gift-promo-left {
          flex: 0 0 50%;
          background: #EE94B9;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          padding: 24px 20px;
          box-sizing: border-box;
      }

      .sy-gift-promo-title {
          font-family: Inter, sans-serif;
          font-weight: 600;
          font-size: 16px;
          line-height: 100%;
          letter-spacing: 0;
          color: #000;
          margin-bottom: 6px;
      }

      .sy-gift-promo-subtitle {
          font-family: Inter, sans-serif;
          font-weight: 400;
          font-size: 12px;
          line-height: 100%;
          letter-spacing: 0;
          color: #000;
      }

      .sy-gift-promo-right {
          flex: 0 0 50%;
      }

      .sy-gift-promo-right img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
      }

      .sy-accessories-header {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 12px;
          margin-bottom: 12px;
      }

      .sy-accessories-module {
          margin-bottom: 16px;
      }

      @media (max-width: 1024px) {
          .sy-gift-promo {
              flex-direction: row;
          }

          .sy-gift-promo-left {
              flex: 1 1 50%;
              padding: 12px 8px;
              align-items: flex-start;
              text-align: left;
              justify-content: center;
          }

          .sy-gift-promo-right {
              flex: 0 0 50%;
          }

        .sy-gift-promo-right img {
            aspect-ratio: auto;
            height: 100%;
            object-fit: cover;
        }
      }

    @media (max-width: 1024px) {
        .sy-reviews-section,
        .sy-recommended,
        .sy-accessories-header,
        .sy-video-module {
            width: 100%;
            padding: 0 16px;
            box-sizing: border-box;
        }

        .sy-accessories-header {
            margin-top: 24px;
            margin-bottom: 16px;
        }

        .sy-accessories-title {
            font-size: 14px;
        }

        .sy-accessories-badge {
            font-size: 10px;
            padding: 2px 8px;
        }

        .sy-reviews-header {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            justify-content: flex-start !important;
            gap: 12px;
            flex-wrap: nowrap;
            margin-bottom: 16px;
        }

        .sy-reviews-header-left {
            width: 100%;
        }

        .sy-reviews-write-btn-mobile {
            display: none !important;
        }

        .sy-reviews-section .sy-reviews-list .jdgm-rev-widg__header {
            position: static !important;
            display: flex !important;
            justify-content: flex-start !important;
            padding: 0 !important;
            margin: 0 0 16px !important;
        }

        .sy-recommended,
        .sy-video-module {
            width: 100% !important;
        }

        .sy-gift-promo {
            width: 100%;
            aspect-ratio: 4 / 1;
            max-height: none;
        }

        .sy-gift-promo-left {
            padding: 8px;
        }

        .sy-accessories-card-bottom {
            flex-wrap: wrap;
            gap: 8px;
        }

        .sy-accessories-card-btn {
            width: 80px;
            height: 24px;
            font-size: 12px;
        }

        .sy-accessories-card-price-current {
            font-size: 14px;
        }

        .sy-accessories-card-price-original {
            font-size: 12px;
        }

        .sy-accessories-card-img-wrap {
            flex: 0 0 25%;
        }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        .sy-dropdown {
            width: 40%;
        }
    }

    /* Device modal (mobile) */
    .sy-device-modal {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        flex-direction: column;
        padding: 40px 16px;
        box-sizing: border-box;
    }

    .sy-device-modal.open {
        display: flex;
    }

    .sy-device-modal-header {
        display: flex;
        align-items: center;
        padding: 16px;
        background: #fff;
        border-radius: 12px 12px 0 0;
        flex-shrink: 0;
    }

    .sy-device-modal-list {
        flex: 1;
        overflow-y: auto;
        padding: 12px 16px;
        background: #fff;
        border-radius: 0 0 12px 12px;
    }

    .sy-device-modal-back {
        width: 24px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .sy-device-modal-title {
        flex: 1;
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        color: #000;
    }

    .sy-device-modal-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 16px;
        border: 1.5px solid #e5e5e5;
        border-radius: 8px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #888;
        cursor: pointer;
        position: relative;
        min-height: 48px;
    }

    .sy-device-modal-item.selected {
        border-color: #000;
        color: #000;
    }

    .sy-device-modal-item .sy-device-modal-badge {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: #000;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 4px;
    }

        .sy-reviews-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

/* ADD ACCESSORIES module */
      .sy-accessories-header {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 12px;
          margin-top: 20px;
          margin-bottom: 10px;
      }

      .sy-accessories-title {
          font-family: Inter, sans-serif;
          font-weight: 600;
          font-size: 18px;
          line-height: 150%;
          text-align: center;
          color: #000;
      }

      .sy-accessories-badge {
          font-family: Inter, sans-serif;
          font-weight: 600;
          font-size: 16px;
          line-height: 150%;
          text-align: center;
          background: #F16148;
          color: #fff;
          padding: 4px 12px;
      }

      .sy-accessories-module {
          background: #fff;
          border: 1px solid #e5e5e5;
          border-radius: 6px;
          padding: 16px;
          min-height: 140px;
          margin-bottom: 20px;
          user-select: none;
          -webkit-user-select: none;
      }

      .sy-accessories-list {
          overflow: hidden;
      }

      .sy-accessories-track {
          display: flex;
          transition: transform 0.3s ease;
      }

      .sy-accessories-card {
          display: flex;
          gap: 16px;
          align-items: center;
          flex: 0 0 100%;
      }

      .sy-accessories-card-img-wrap {
          flex: 0 0 30%;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .sy-accessories-card-img {
          width: 100%;
          height: auto;
          object-fit: contain;
          display: block;
          pointer-events: none;
          -webkit-user-drag: none;
          user-drag: none;
      }

      .sy-accessories-card-info {
          flex: 1;
          min-width: 0;
      }

      .sy-accessories-card-name {
          font-family: Inter, sans-serif;
          font-weight: 600;
          font-size: 16px;
          line-height: 150%;
          color: #000;
          margin-bottom: 4px;
          text-align: left;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
      }

      .sy-accessories-card-desc {
          font-family: Inter, sans-serif;
          font-weight: 400;
          font-size: 12px;
          line-height: 150%;
          color: #888;
          margin-bottom: 10px;
          text-align: left;
      }

      .sy-accessories-card-bottom {
          display: flex;
          align-items: center;
          justify-content: space-between;
      }

      .sy-accessories-card-btn {
          width: 106px;
          height: 26px;
          font-family: Inter, sans-serif;
          font-weight: 600;
          font-size: 14px;
          line-height: 150%;
          background: #000;
          color: #fff;
          border: none;
          border-radius: 4px;
          cursor: pointer;
          flex-shrink: 0;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .sy-accessories-card-price {
          display: flex;
          align-items: baseline;
          gap: 6px;
      }

      .sy-accessories-card-price-current {
          font-family: Inter, sans-serif;
          font-weight: 600;
          font-size: 16px;
          line-height: 150%;
          color: #d00;
      }

      .sy-accessories-card-price-original {
          font-family: Inter, sans-serif;
          font-weight: 400;
          font-size: 14px;
          line-height: 150%;
          text-align: center;
          color: #aaa;
          text-decoration: line-through;
      }

      .sy-accessories-card-dots {
          display: flex;
          gap: 6px;
          margin-top: 8px;
      }

      .sy-accessories-card-dot {
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: #ddd;
          cursor: pointer;
      }

      .sy-accessories-card-dot.selected {
          background: #000;
      }

      .sy-accessories-pagination {
          display: flex;
          justify-content: center;
          gap: 8px;
          margin-top: 12px;
      }

      .sy-accessories-page-dot {
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: #ddd;
          cursor: pointer;
      }

      .sy-accessories-page-dot.active {
          background: #000;
      }

      /* DESCRIPTION accordion */
      .sy-desc-accordion {
          margin-top: 0;
      }

      .sy-desc-accordion:first-of-type {
          margin-top: 20px;
      }

      .sy-desc-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          border: 1px solid #e5e5e5;
          border-radius: 4px;
          padding: 12px 16px;
          cursor: pointer;
          user-select: none;
      }

      .sy-desc-accordion + .sy-desc-accordion .sy-desc-header {
          border-top: none;
          border-radius: 0;
      }

      .sy-desc-header.open {
          border-radius: 4px 4px 0 0;
      }

      .sy-desc-header-left {
          display: flex;
          align-items: center;
          gap: 10px;
      }

      .sy-desc-icon {
          width: 16px;
          height: 16px;
          flex-shrink: 0;
          color: #000;
      }

      .sy-desc-icon svg {
          width: 100%;
          height: 100%;
          display: block;
      }

      .sy-desc-title {
          font-size: 14px;
          font-weight: 600;
          color: #000;
          letter-spacing: 0.5px;
      }

      .sy-desc-toggle {
          font-size: 18px;
          font-weight: 400;
          color: #000;
          line-height: 1;
      }

      .sy-desc-content {
          display: none;
          border: 1px solid #e5e5e5;
          border-top: none;
          border-radius: 0 0 4px 4px;
          padding: 16px;
          font-size: 13px;
          color: #000;
          line-height: 1.7;
      }

      .sy-desc-content.open {
          display: block;
      }

      .faq-question {
          font-weight: 700;
          font-size: 15px;
          color: #000;
          margin-bottom: 4px;
          margin-top: 14px;
      }

      .faq-question:first-child {
          margin-top: 0;
      }

      .faq-answer {
          color: #555;
          margin-bottom: 14px;
          line-height: 1.6;
      }

      /* REVIEWS section */
      .sy-reviews-section {
          width: calc(100% - 80px);
          margin: 40px auto 0 0;
          padding-bottom: 60px;
          position: relative;
          display: none;
      }
      .sy-reviews-section.ready {
          display: block;
      }

      @media (min-width: 1440px) {
          .sy-reviews-section {
              margin-left: auto;
              margin-right: auto;
              max-width: 1440px;
          }
      }

      .sy-reviews-header {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          flex-wrap: wrap;
          gap: 16px;
      }

      .sy-reviews-header-left {
          display: flex;
          flex-direction: column;
          gap: 10px;
      }

      .sy-reviews-title {
          font-size: 18px;
          font-weight: 700;
          color: #000;
          letter-spacing: 0.5px;
      }

      .sy-reviews-rating-row {
          display: flex;
          align-items: center;
          gap: 8px;
      }

      .sy-reviews-stars {
          color: #000;
          font-size: 16px;
      }

      .sy-reviews-stars .jdgm-prev-badge {
          font-size: 16px !important;
      }

      .sy-reviews-stars .jdgm-star,
      .sy-reviews-stars .jdgm-star__piece,
      .sy-reviews-stars .jdgm-prev-badge__text {
          color: #000 !important;
      }

      /* ── Judge.me full widget restyle ── */
      .sy-reviews-list {
          flex: 1;
          min-width: 0;
      }

      .sy-reviews-list .jdgm-rev-widg {
          border: none !important;
          padding: 0 !important;
          margin: 0 !important;
          font-size: 14px !important;
      }

      .sy-reviews-list .jdgm-rev-widg__header {
          position: absolute !important;
          top: 0 !important;
          right: 0 !important;
          display: flex !important;
          align-items: center !important;
          margin: 0 !important;
          padding: 0 !important;
          border: none !important;
          background: none !important;
          gap: 12px !important;
          min-height: auto !important;
          flex-wrap: nowrap !important;
          z-index: 1 !important;
      }

      .sy-reviews-list .jdgm-rev-widg__summary,
      .sy-reviews-list .jdgm-histogram,
      .sy-reviews-list .jdgm-rev-widg__sort-wrapper,
      .sy-reviews-list .jdgm-rev-widg__summary-stars,
      .sy-reviews-list .jdgm-rev-widg__summary-text,
      .sy-reviews-list .jdgm-form-wrapper,
      .sy-reviews-list .jdgm-rev-widg__title {
          display: none !important;
      }

      .sy-reviews-list .jdgm-write-rev-link {
          padding: 12px 24px !important;
          background: #000 !important;
          color: #fff !important;
          border: none !important;
          border-radius: 4px !important;
          font-size: 14px !important;
          font-weight: 700 !important;
          letter-spacing: 0.5px !important;
          text-decoration: none !important;
          line-height: 1.4 !important;
          display: inline-block !important;
          white-space: nowrap !important;
          width: auto !important;
          height: auto !important;
          flex-shrink: 0 !important;
      }

      .sy-reviews-list .jdgm-write-rev-link:hover {
          background: #333 !important;
          color: #fff !important;
      }

      .sy-reviews-list .jdgm-rev-widg__body {
          padding: 0 !important;
      }

      /* Sort dropdown */
      .sy-reviews-list .jdgm-sort-dropdown {
          padding: 6px 28px 6px 10px !important;
          border: 1px solid #ddd !important;
          border-radius: 4px !important;
          font-size: 13px !important;
          color: #333 !important;
          background: #fff !important;
      }

      /* Review card */
      .sy-reviews-list .jdgm-rev {
          padding: 20px 0 !important;
          border-bottom: 1px solid #eee !important;
          margin: 0 !important;
          background: none !important;
      }

      .sy-reviews-list .jdgm-row-actions {
          border: none !important;
      }

      .sy-reviews-list .jdgm-rev__header {
          margin-bottom: 8px !important;
      }

      .sy-reviews-list .jdgm-rev__author {
          font-size: 14px !important;
          font-weight: 600 !important;
          color: #000 !important;
      }

      .sy-reviews-list .jdgm-rev__title {
          font-size: 14px !important;
          font-weight: 700 !important;
          color: #000 !important;
          margin-bottom: 4px !important;
      }

      .sy-reviews-list .jdgm-rev__body {
          font-size: 13px !important;
          color: #000 !important;
          line-height: 1.6 !important;
      }

      /* Hide ugly default avatars */
      .sy-reviews-list .jdgm-rev__icon,
      .sy-reviews-list .jdgm-rev__avatar,
      .sy-reviews-list .jdgm-rev__avatar-wrapper,
      .sy-reviews-list .jdgm-rev__avatar-img {
          display: none !important;
      }

      .sy-reviews-list .jdgm-rev__timestamp {
          font-size: 12px !important;
          color: #888 !important;
      }

      .sy-reviews-list .jdgm-rev__pics {
          margin-top: 10px !important;
      }

      .sy-reviews-list .jdgm-rev__pic-img {
          border-radius: 4px !important;
      }

      .sy-reviews-list .jdgm-rev__buyer-badge {
          background: #000 !important;
          color: #fff !important;
          border-radius: 3px !important;
          font-size: 11px !important;
          padding: 2px 8px !important;
      }

      /* Stars */
      .sy-reviews-list .jdgm-star {
          color: #000 !important;
          font-size: 14px !important;
      }

      .sy-reviews-list .jdgm-star.jdgm--off {
          color: #ddd !important;
      }

      /* Pagination */
        .sy-reviews-write-btn-mobile {
            display: none;
        }

        .sy-reviews-list .jdgm-paginate {
          display: flex !important;
          justify-content: center !important;
          margin-top: 24px !important;
          padding: 0 !important;
          border: none !important;
          gap: 4px !important;
      }

      .sy-reviews-list .jdgm-paginate__page {
          width: 32px !important;
          height: 32px !important;
          display: inline-flex !important;
          align-items: center !important;
          justify-content: center !important;
          border: 1px solid #ddd !important;
          border-radius: 4px !important;
          font-size: 13px !important;
          color: #333 !important;
          background: #fff !important;
          text-decoration: none !important;
      }

      .sy-reviews-list .jdgm-paginate__page.jdgm-paginate__current-page {
          background: #000 !important;
          color: #fff !important;
          border-color: #000 !important;
      }

      .sy-reviews-write-btn-mobile {
          display: none;
      }

      /* No reviews empty state */
      .sy-reviews-list .jdgm-rev-widg__reviews:empty::after {
          content: 'Be the first to write a review!';
          display: block;
          text-align: center;
          padding: 40px;
          color: #888;
          font-size: 14px;
      }

      /* RECOMMENDED PRODUCTS */
      .sy-recommended {
          width: calc(100% - 80px);
          margin: 40px auto 0 0;
          visibility: hidden;
      }
      .sy-recommended.ready {
          visibility: visible;
      }

      @media (min-width: 1440px) {
          .sy-recommended {
              margin-left: auto;
              margin-right: auto;
              max-width: 1440px;
          }
      }

      .sy-recommended-title {
          font-size: 18px;
          font-weight: 700;
          color: #000;
          margin-bottom: 20px;
          letter-spacing: 0.5px;
      }

      .sy-recommended-track {
          display: flex;
          gap: 12px;
          overflow-x: auto;
          padding-bottom: 8px;
      }

      .sy-recommended-track::-webkit-scrollbar {
          height: 2px;
      }

      .sy-recommended-track::-webkit-scrollbar-track {
          background: transparent;
      }

      .sy-recommended-track::-webkit-scrollbar-thumb {
          background: #000;
          border-radius: 1px;
      }


      .sy-recommended-card-name {
          font-size: 13px;
          font-weight: 600;
          color: #000;
          margin-top: 8px;
          line-height: 1.3;
          height: 17px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: 200px;
      }

      .sy-recommended-card-price {
          font-size: 14px;
          font-weight: 700;
          color: #000;
          margin-top: 2px;
          line-height: 1.3;
          height: 18px;
      }

      .sy-recommended-card-rating {
          font-size: 12px;
          color: #000;
          margin-top: 4px;
          min-height: 16px;
          height: 16px;
          line-height: 1.3;
      }

      .sy-recommended-card-rating .jdgm-prev-badge {
          font-size: 12px !important;
      }

      .sy-recommended-card-rating .jdgm-star {
          color: #000 !important;
          font-size: 12px !important;
      }

      .sy-recommended-card {
          flex: 0 0 calc((100% - 48px) / 5);
          user-select: none;
          -webkit-user-select: none;
          display: flex;
          flex-direction: column;
      }

      .sy-recommended-card-img {
          width: 100%;
          aspect-ratio: 4 / 5;
          object-fit: cover;
          background: #f5f5f5;
          pointer-events: none;
          -webkit-user-drag: none;
          user-drag: none;
          flex-shrink: 0;
      }

      @media (max-width: 1024px) {
          .sy-recommended-card {
              flex: 0 0 140px;
              width: 140px;
          }
          .sy-recommended-card-img {
              width: 140px;
              height: 175px;
              aspect-ratio: auto;
          }
      }

      /* UGC VIDEO module */
      .sy-video-module {
          width: calc(100% - 80px);
          margin: 30px auto 0 0;
          visibility: hidden;
      }
      .sy-video-module.ready {
          visibility: visible;
      }

      @media (min-width: 1440px) {
          .sy-video-module {
              margin-left: auto;
              margin-right: auto;
              max-width: 1440px;
          }
      }

      .sy-video-track {
          display: flex;
          gap: 10px;
          overflow-x: auto;
          padding-bottom: 8px;
          user-select: none;
          -webkit-user-select: none;
      }

      .sy-video-track::-webkit-scrollbar {
          height: 2px;
      }

      .sy-video-track::-webkit-scrollbar-track {
          background: transparent;
      }

      .sy-video-track::-webkit-scrollbar-thumb {
          background: #000;
          border-radius: 1px;
      }

      .sy-video-card {
          flex: 0 0 calc((100% - 40px) / 5);
          min-width: 140px;
          display: flex;
          flex-direction: column;
          transition: transform 0.3s ease;
          z-index: 1;
      }

      .sy-video-card:hover {
          z-index: 2;
      }

      .sy-video-wrap {
          position: relative;
          width: 100%;
          aspect-ratio: 3 / 4;
          overflow: hidden;
          cursor: pointer;
          transition: transform 0.3s ease;
      }

      .sy-video-wrap:hover {
          transform: scale(1.05);
      }

      .sy-video-wrap video {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          background: #000;
      }

      .sy-video-play {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.9);
          display: flex;
          align-items: center;
          justify-content: center;
          pointer-events: none;
          z-index: 2;
      }

      .sy-video-play svg {
          width: 16px;
          height: 16px;
          color: #000;
      }

      .sy-video-play .play-icon { display: block; }
      .sy-video-play .pause-icon { display: none; }
      .sy-video-wrap.playing .sy-video-play .play-icon { display: none; }
      .sy-video-wrap.playing .sy-video-play .pause-icon { display: block; }

      .sy-video-wrap.playing .sy-video-play {
          opacity: 0;
          transition: opacity 0.2s;
      }

      .sy-video-wrap:hover .sy-video-play {
          opacity: 1;
      }

      .sy-video-progress {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 2px;
          background: rgba(255,255,255,0.3);
          z-index: 2;
      }

      .sy-video-progress-bar {
          height: 100%;
          background: #fff;
          width: 0%;
      }

      .sy-video-card-info {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 8px 0;
          cursor: pointer;
          height: 52px;
          box-sizing: border-box;
      }

      .sy-video-card-thumb {
          width: 36px;
          height: 36px;
          object-fit: cover;
          border-radius: 4px;
          flex-shrink: 0;
      }

      .sy-video-card-details {
          flex: 1;
          min-width: 0;
      }

      .sy-video-card-name {
          font-size: 11px;
          font-weight: 600;
          color: #000;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          line-height: 1.3;
      }

      .sy-video-card-price {
          font-size: 12px;
          font-weight: 700;
          color: #000;
          line-height: 1.3;
      }

      .sy-video-card-add {
          width: 26px;
          height: 26px;
          border: 1.5px solid #000;
          border-radius: 50%;
          background: #fff;
          font-size: 16px;
          font-weight: 400;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          line-height: 1;
      }

      @media (max-width: 1024px) {
          .sy-video-card {
              flex: 0 0 160px;
          }
      }

      /* Loading spinner */
      .sy-loader {
          position: fixed;
          top: 50%; left: 50%;
          width: 36px; height: 36px;
          margin: -18px 0 0 -18px;
          border: 3px solid #eee;
          border-top-color: #333;
          border-radius: 50%;
          animation: sy-spin 0.7s linear infinite;
          z-index: 9999;
          pointer-events: none;
      }
      /* Toast notification */
      .sy-toast-overlay {
          position: fixed;
          top: 0; left: 0; right: 0; bottom: 0;
          background: rgba(0, 0, 0, 0.45);
          z-index: 10000;
          display: none;
          align-items: center;
          justify-content: center;
          animation: sy-fadeIn 0.2s ease;
      }
      .sy-toast-overlay.active {
          display: flex;
      }
      .sy-toast {
          background: #fff;
          border-radius: 12px;
          padding: 32px 28px 24px;
          max-width: 340px;
          width: 90%;
          text-align: center;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
          animation: sy-toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      }
      @keyframes sy-fadeIn { from { opacity: 0; } to { opacity: 1; } }
      @keyframes sy-toastIn { from { opacity: 0; transform: scale(0.92) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
      .sy-toast-icon {
          width: 52px;
          height: 52px;
          border-radius: 50%;
          background: #f5f5f5;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 16px;
      }
      .sy-toast-icon svg {
          color: #888;
      }
      .sy-toast-title {
          font-size: 17px;
          font-weight: 700;
          color: #000;
          margin-bottom: 6px;
          letter-spacing: 0.2px;
      }
      .sy-toast-msg {
          font-size: 13px;
          color: #666;
          line-height: 1.6;
          margin-bottom: 24px;
          padding: 0 4px;
      }
      .sy-toast-btn {
          width: 100%;
          padding: 13px;
          background: #000;
          color: #fff;
          border: none;
          border-radius: 8px;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          letter-spacing: 0.3px;
          transition: background 0.2s;
      }
      .sy-toast-btn:hover {
          background: #333;
      }

      /* Tip banner (inline, right panel) */
      .sy-tip {
          background: #f9f9f9;
          border: 1px solid #eee;
          border-radius: 10px;
          padding: 14px 16px;
          display: flex;
          align-items: flex-start;
          gap: 12px;
          margin-bottom: 16px;
          animation: sy-tipIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
          transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease, border-width 0.3s ease;
          overflow: hidden;
          max-height: 120px;
      }
      .sy-tip.out {
          opacity: 0;
          transform: translateY(-6px);
          max-height: 0;
          padding-top: 0;
          padding-bottom: 0;
          margin-bottom: 0;
          border-top-width: 0;
          border-bottom-width: 0;
      }
      @keyframes sy-tipIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
      .sy-tip-icon {
          flex-shrink: 0;
          width: 20px;
          height: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-top: 1px;
      }
      .sy-tip-icon svg { width: 18px; height: 18px; }
      .sy-tip-text {
          flex: 1;
          font-size: 12.5px;
          color: #555;
          line-height: 1.55;
      }
      .sy-tip-text b { color: #333; }
      .sy-tip-close {
          flex-shrink: 0;
          width: 22px;
          height: 22px;
          cursor: pointer;
          border: none;
          background: none;
          padding: 0;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 4px;
          transition: background 0.15s;
      }
      .sy-tip-close:hover { background: #eee; }
      .sy-tip-close svg { width: 14px; height: 14px; color: #bbb; }
/* END_SECTION:sy */