    /* ── BREADCRUMB ────────────────────────────────── */
    .breadcrumb {
      padding: 18px 48px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-light);
      padding-top: 85px;
    }

    .breadcrumb a { color: var(--text-light); text-decoration: none; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb .sep { color: var(--taupe); }

    /* ── PRODUCT LAYOUT ────────────────────────────── */
    .product-layout {
      display: grid;
      grid-template-columns: 1fr 600px;
      gap: 0;
      padding: 0 48px 80px;
      align-items: start;
    }

    /* ── GALLERY ───────────────────────────────────── */
    .gallery {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 12px;
      position: sticky;
      top: 88px;
    }

    .gallery-thumbs {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .thumb {
      width: 80px;
      height: 88px;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid transparent;
      transition: border-color .2s;
      flex-shrink: 0;
    }

    .thumb.active { border-color: var(--deep-brown); }
    .thumb:hover { border-color: var(--taupe); }

    .thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .thumb:hover img { transform: scale(1.08); }

    .gallery-main {
      position: relative;
      overflow: hidden;
      background: var(--sand);
      aspect-ratio: 4/5;
    }

    .gallery-main img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity .4s ease;
    }

    .gallery-badge {
      position: absolute;
      top: 20px; left: 20px;
      background: var(--deep-brown);
      color: var(--cream);
      font-size: 9px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 12px;
      font-weight: 600;
    }

    .gallery-wishlist {
      position: absolute;
      top: 20px; right: 20px;
      width: 42px; height: 42px;
      background: var(--warm-white);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
    }

    .gallery-wishlist:hover { background: var(--deep-brown); }
    .gallery-wishlist:hover svg { stroke: white; }
    .gallery-wishlist svg { width: 18px; height: 18px; stroke: var(--deep-brown); fill: none; stroke-width: 1.5; transition: stroke .2s; }

    .gallery-nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
    }

    .gallery-dot {
      width: 6px; height: 6px;
      background: rgba(255,255,255,.5);
      cursor: pointer;
      transition: background .2s;
    }

    .gallery-dot.active { background: white; }

    /* ── PRODUCT INFO ──────────────────────────────── */
    .product-info {
      padding: 0 0 0 56px;
    }

    .product-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .product-category-tag {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
    }

    .product-sku {
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--text-light);
    }

    .product-name {
      font-family: var(--font-display);
      font-size: clamp(30px, 2vw, 30px);
      font-weight: 300;
      line-height: 1.3;
      color: var(--deep-brown);
      margin-bottom: 10px;
    }

    .product-name em {
      font-style: italic;
      font-weight: 300;
      color: var(--accent);
    }

    .product-subtitle {
      font-size: 13px;
      color: var(--text-light);
      letter-spacing: 0.06em;
      margin-bottom: 20px;
    }

    /* Stars */
    .product-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }

    .stars { color: #c9a84c; letter-spacing: 2px; font-size: 13px; }

    .rating-count {
      font-size: 12px;
      color: var(--text-light);
      text-decoration: underline;
      cursor: pointer;
    }

    .rating-count:hover { color: var(--accent); }

    /* Divider */
    .divider {
      height: 1px;
      background: var(--bordergrey);
      margin: 24px 0;
    }

    /* Price */
    .price-block {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin-bottom: 24px;
    }

    .price-current {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--deep-brown);
      line-height: 1;
    }

    .price-original {
      font-family: var(--font-display);
      font-size: 14px;
      color: var(--taupe);
      text-decoration: line-through;
    }

    .price-tag {
      background: #8b3a3a;
      color: white;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 4px 10px;
      font-weight: 600;
    }

    .price-note {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 6px;
    }

    /* Options */
    .option-group { margin-bottom: 22px; }

    .option-label {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--deep-brown);
      margin-bottom: 10px;
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .option-label span {
      font-weight: 300;
      color: var(--text-light);
      text-transform: none;
      letter-spacing: 0;
      font-size: 12px;
    }

    .option-label a {
      font-weight: 300;
      color: var(--accent);
      text-transform: none;
      letter-spacing: 0;
      font-size: 12px;
      cursor: pointer;
      text-decoration: underline;
      margin-left: auto;
    }

    /* Color options */
    .color-options { display: flex; gap: 10px; flex-wrap: wrap; }

    .color-opt {
      position: relative;
      cursor: pointer;
    }

    .color-swatch {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2px solid transparent;
      outline: 2px solid transparent;
      outline-offset: 3px;
      transition: outline-color .2s;
      cursor: pointer;
    }

    .color-opt.active .color-swatch {
      outline-color: var(--deep-brown);
    }

    .color-opt:hover .color-swatch { outline-color: var(--taupe); }

    .color-tooltip {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 6px;
      background: var(--deep-brown);
      color: var(--cream);
      font-size: 10px;
      letter-spacing: 0.1em;
      white-space: nowrap;
      padding: 4px 8px;
      pointer-events: none;
      opacity: 0;
      transition: opacity .2s;
    }

    .color-opt:hover .color-tooltip { opacity: 1; }

    /* Size options */
    .size-options { display: flex; gap: 8px; flex-wrap: wrap; }

    .size-btn {
      padding: 9px 18px;
      border: 1px solid var(--bordergrey);
      background: none;
      font-family: var(--font-body);
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--text);
      cursor: pointer;
      transition: all .2s;
      position: relative;
    }

    .size-btn:hover { border-color: var(--deep-brown); color: var(--deep-brown); }
    .size-btn.active { background: var(--deep-brown); border-color: var(--deep-brown); color: white; }
    .size-btn.out { color: var(--taupe); cursor: not-allowed; }
    .size-btn.out::after {
      content: '';
      position: absolute;
      top: 50%; left: 0; right: 0;
      height: 1px;
      background: var(--taupe);
      transform: rotate(-15deg);
    }

    /* Quantity */
    .qty-atc {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 10px;
      margin-bottom: 14px;
    }

    .qty-selector {
      display: flex;
      align-items: center;
      border: 1px solid var(--bordergrey);
    }

    .qty-btn {
      width: 40px; height: 52px;
      background: none;
      border: none;
      font-size: 18px;
      font-weight: 300;
      color: var(--text);
      cursor: pointer;
      transition: background .2s;
      font-family: var(--font-display);
    }

    .qty-btn:hover { background: var(--sand); }

    .qty-input {
      flex: 1;
      text-align: center;
      border: none;
      background: none;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 400;
      color: var(--deep-brown);
      width: 40px;
    }

    .qty-input:focus { outline: none; }

    .atc-btn {
      background: var(--deep-brown);
      color: var(--warm-white);
      border: none;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .25s;
      height: 52px;
    }

    .atc-btn:hover { background: var(--accent); }

    .buy-now-btn {
      width: 100%;
      background: none;
      border: 1px solid var(--bordergrey);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      height: 48px;
      transition: all .2s;
      margin-bottom: 20px;
    }

    .buy-now-btn:hover { border-color: var(--accent); color: var(--accent); }

    /* Trust badges */
    .trust-badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 28px;
    }

    .trust-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px;
      background: var(--cream);
      border: 1px solid var(--bordergrey);
    }

    .trust-icon { font-size: 18px; flex-shrink: 0; line-height: 1; margin-top: 1px; }

    .trust-title {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--deep-brown);
      margin-bottom: 2px;
    }

    .trust-desc { font-size: 11px; color: var(--text-light); line-height: 1.5; }

    /* ── ACCORDION ─────────────────────────────────── */
    .accordionprd { border-top: 1px solid var(--bordergrey); }

    .accordionprd-item { border-bottom: 1px solid var(--bordergrey); }

    .accordionprd-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 18px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--deep-brown);
      text-align: left;
    }

    .accordionprd-icon {
      font-size: 20px;
      font-weight: 300;
      color: var(--text-light);
      transition: transform .3s;
      line-height: 1;
    }

    .accordionprd-item.open .accordionprd-icon { transform: rotate(45deg); }

    .accordionprd-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .4s ease;
    }

    .accordionprd-item.open .accordionprd-body {
      max-height: 400px;
      padding-bottom: 20px;
    }

    .accordionprd-body p, .accordionprd-body li {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.9;
    }

    .accordionprd-body ul { padding-left: 16px; }
    .accordionprd-body ul li { margin-bottom: 4px; }

    .fabric-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
    }

    .fabric-table td {
      padding: 8px 0;
      border-bottom: 1px solid var(--bordergrey);
      color: var(--text-light);
    }

    .fabric-table td:first-child {
      font-weight: 500;
      color: var(--deep-brown);
      width: 40%;
      letter-spacing: 0.06em;
    }

    /* ── BELOW FOLD ────────────────────────────────── */

    /* Story section */
    .product-story {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin: 80px 48px;
      border: 1px solid var(--bordergrey);
      overflow: hidden;
    }

    .story-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .story-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .story-content {
      background: var(--cream);
      padding: 60px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .story-eyebrow {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .story-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 300;
      line-height: 1.2;
      color: var(--deep-brown);
      margin-bottom: 20px;
    }

    .story-title em { font-style: italic; color: var(--accent); }

    .story-body {
      font-size: 13px;
      line-height: 1.9;
      color: var(--text-light);
      margin-bottom: 28px;
    }

    .story-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .spec-item {}
    .spec-label {
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 3px;
    }

    .spec-value {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 400;
      color: var(--deep-brown);
    }

    /* Reviews */
    .reviews-section {
      padding: 0 48px 80px;
    }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(24px, 2vw, 24px);
      font-weight: 500;
      color: var(--deep-brown);
      line-height: 1;
    }

    .section-title em { font-style: italic; color: var(--accent); }

    .section-action {
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      cursor: pointer;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 2px;
    }

    .reviews-summary {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 48px;
      margin-bottom: 48px;
      padding: 36px;
      background: var(--cream);
      border: 1px solid var(--bordergrey);
    }

    .rating-big {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .rating-num {
      font-family: var(--font-display);
      font-size: 72px;
      font-weight: 300;
      line-height: 1;
      color: var(--deep-brown);
    }

    .rating-stars-big { font-size: 18px; color: #c9a84c; letter-spacing: 3px; margin: 8px 0; }

    .rating-total { font-size: 12px; color: var(--text-light); letter-spacing: 0.08em; }

    .rating-bars { flex: 1; }

    .bar-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .bar-label { font-size: 12px; color: var(--text-light); width: 40px; text-align: right; }

    .bar-track {
      flex: 1;
      height: 6px;
      background: var(--bordergrey);
      position: relative;
    }

    .bar-fill {
      height: 100%;
      background: var(--deep-brown);
      position: absolute;
      top: 0; left: 0;
    }

    .bar-count { font-size: 12px; color: var(--text-light); width: 24px; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      padding: 28px;
      border: 1px solid var(--bordergrey);
      background: var(--warm-white);
    }

    .review-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .reviewer-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--deep-brown);
      letter-spacing: 0.04em;
    }

    .reviewer-loc { font-size: 11px; color: var(--text-light); margin-top: 2px; }

    .review-stars { font-size: 12px; color: #c9a84c; letter-spacing: 2px; }

    .review-title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 400;
      color: var(--deep-brown);
      margin-bottom: 10px;
    }

    .review-body { font-size: 13px; color: var(--text-light); line-height: 1.8; }

    .review-date { font-size: 11px; color: var(--taupe); margin-top: 12px; letter-spacing: 0.06em; }

    .verified { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: #4a6741; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

    /* Related products */
    .related-section {
      padding: 0 48px 80px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
    }

    .variation-box {
        display: flex;                
        align-items: center;         
        border: 2px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        cursor: pointer;
        transition: 0.3s;
        background: #fff;
        gap: 12px;                   
    }

    .variation-thumb {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #ddd;
        flex-shrink: 0;               
    }

    .variation-info {
        display: flex;
        flex-direction: column;
    }

    .variation-box:hover {
        border-color: var(--sage);
    }

    .variation-box.active {
        border-color: var(--sage);
        background: var(--warm-white);
    }

    .variation-box.disabled {
        opacity: 0.5;
        pointer-events: none;
    }
    .variation-box h6, .variation-box p {
        margin: 0;
        padding: 0;
    }
    .variation-box h6{
        font-size: 0.9rem;
        color: #1e2b3e;
        font-weight: 500;
    }
    .variation-box h6 span{
        font-size: 0.65rem;
        margin-left: 10px;
    }
    .variation-box p{
        font-size: 0.65rem;
        color: #1e2b3e;
        font-weight: 300;
    }
    .variation-box p.var-price{
        font-size: 0.75rem;
        font-weight: 400;
        margin-bottom: 5px;
        margin-top: 2px;
    }
    #addToCartLink.disabled {
        opacity: 0.5;
        pointer-events: none;
    }

/* ── STICKY ATC BAR (mobile-like feel on scroll) ── */
    .sticky-atc {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--warm-white);
      border-top: 1px solid var(--border);
      padding: 16px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      z-index: 99;
      transform: translateY(100%);
      transition: transform .3s ease;
    }

    .sticky-atc.visible { transform: translateY(0); }

    .sticky-product-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--dark);
    }

    .sticky-price {
      font-family: var(--font-display);
      font-size: 20px;
      color: var(--accent);
    }

    .sticky-atc-btn {
      background: var(--deep-brown);
      color: white;
      border: none;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 14px 32px;
      cursor: pointer;
      transition: background .2s;
      white-space: nowrap;
    }

    .sticky-atc-btn:hover { background: var(--accent); }
/* ── SWIPE GALLERY (mobile) ──────────────────── */
    .gallery-swipe-track {
      display: none;
    }

    /* ── TABLET: 1024px ──────────────────────────── */
    @media (max-width: 1024px) {
      .breadcrumb { padding: 14px 24px; }
      .product-layout {
        grid-template-columns: 1fr 400px;
        padding: 0 24px 60px;
        gap: 0;
      }

      .product-info { padding: 0 0 0 36px; }

      .gallery { grid-template-columns: 68px 1fr; }
      .thumb { width: 68px; height: 76px; }

      .product-story { margin: 60px 24px; }
      .story-content { padding: 40px 36px; }

      .reviews-section { padding: 0 24px 60px; }
      .related-section { padding: 0 24px 60px; }
      .related-grid { grid-template-columns: repeat(2, 1fr); }

      .sticky-atc { padding: 14px 24px; }
    }

    /* ── MOBILE: 768px ───────────────────────────── */
    @media (max-width: 768px) {
      /* Breadcrumb */
      .breadcrumb {
        padding: 12px 20px;
        font-size: 10px;
        gap: 6px;
        overflow: hidden;
        white-space: nowrap;
        padding-top:86px;
      }

      .breadcrumb > *:not(:last-child):not(:nth-last-child(2)):not(.sep:nth-last-child(2)) {
        display: none;
      }

      /* Product layout: stack vertically */
      .product-layout {
        grid-template-columns: 1fr;
        padding: 0 0 40px;
        gap: 0;
      }

      /* Gallery: hide sidebar thumbs, show swipe + dots */
      .gallery {
        grid-template-columns: 1fr;
        position: static;
        gap: 0;
      }

      .gallery-thumbs { display: none; }

      .gallery-main {
        aspect-ratio: 1/1;
        border-radius: 0;
      }

      .gallery-nav {
        display: flex;
      }

      /* Product info */
      .product-info {
        padding: 24px 20px 0;
      }

      .product-name { font-size: clamp(24px, 4vw, 24px) }

      /* Price */
      .price-current { font-size: 18px; }
      .price-original { font-size: 15px; }

      /* Qty + ATC: stack on small, side-by-side on medium */
      .qty-atc {
        grid-template-columns: 110px 1fr;
        gap: 8px;
      }

      /* Trust badges: 1 column */
      .trust-badges { grid-template-columns: 1fr 1fr; }

      /* Story section */
      .product-story {
        grid-template-columns: 1fr;
        margin: 40px 20px;
      }

      .story-image { aspect-ratio: 16/9; }
      .story-content { padding: 32px 24px; }
      .story-specs { grid-template-columns: 1fr 1fr; }

      /* Reviews */
      .reviews-section { padding: 0 20px 48px; }

      .reviews-summary {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
      }

      .rating-big { flex-direction: row; gap: 20px; align-items: center; }
      .rating-num { font-size: 56px; }

      .reviews-grid { grid-template-columns: 1fr; }

      /* Related */
      .related-section { padding: 0 20px 48px; }
      .related-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 24px;
      }
      /* Sticky ATC */
      .sticky-atc {
        padding: 12px 20px;
        gap: 12px;
      }

      .sticky-product-name { font-size: 0.8rem; color:  var(--deep-brown) }
      .sticky-price { font-size: 0.8rem; color: var(--deep-brown) }
      .sticky-atc-btn { padding: 12px 20px; font-size: 0.65rem; }
    }

    /* ── SMALL MOBILE: 480px ─────────────────────── */
    @media (max-width: 480px) {

      .gallery-main { aspect-ratio: 4/5; }

      .product-info { padding: 20px 16px 0; }

      .trust-badges { grid-template-columns: 1fr; }

      .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

      .pc-name { font-size: 15px; }

      .sticky-atc {
        padding: 10px 16px;
        flex-wrap: wrap;
      }

      .sticky-product-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    }