/* ── Match home.css variables exactly ── */
    :root{
      --yellow:#FFD93D;
      --orange:#FF6B35;
      --pink:#FF4D8D;
      --teal:#00C9A7;
      --purple:#7B5EA7;
      --sky:#4FC3F7;
      --white:#fff;
      --dark:#1A1A2E;
      --light-bg:#FFF9F0;
      --card-radius:24px;
      /* Your header: header-top(~37px) + header-main(~108px) + nav(~50px) = ~195px
         JS below will measure the real height at runtime and override this */
      --header-h: 195px;
    }
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}

    /* home.css has overflow-x:hidden on html,body
       We keep it on html only so position:sticky + swipe gallery work */
    html{ overflow-x:hidden; }
    body{
      font-family:'Nunito',sans-serif;
      background:var(--light-bg);
      color:var(--dark);
      max-width:100%;
      /* NO overflow-x:hidden on body — it breaks sticky positioning & swipe */
    }

    /* ── BREADCRUMB ── */
    .breadcrumb{padding:12px 40px;font-size:13px;color:#999;display:flex;align-items:center;gap:6px;background:var(--white);border-bottom:1px solid #f5e6ff;}
    .breadcrumb a{color:var(--pink);text-decoration:none;font-weight:700;}
    .breadcrumb span{color:#ccc;}

    /* ══════════════════════════════════════════
       DESKTOP LAYOUT
    ══════════════════════════════════════════ */

    /* ── DESKTOP TWO-COLUMN ── */
    /* Normal page flow — no fixed heights, no overflow:hidden clipping */
    .detail-wrap{
      max-width:1300px;
      margin:0 auto;
      padding:40px 40px 60px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:start;
    }

    /* Left col — sticky so gallery stays visible while right col scrolls */
    .gallery{
      position:sticky;
      top:calc(var(--header-h) + 20px);
      display:flex;
      flex-direction:row;   /* thumbs LEFT, main image RIGHT */
      gap:12px;
      align-items:flex-start;
    }

    /* Right col — normal flow, page scroll handles it */
    .prod-info{
      padding:0;
    }

    /* ── DESKTOP GALLERY ── */
    .gallery-main{
      border-radius:var(--card-radius);
      overflow:hidden;
      flex:1;               /* fills remaining width after thumb column */
      aspect-ratio:1 / 1;
      position:relative;
      cursor:zoom-in;
      background:var(--white);
      box-shadow:0 12px 40px rgba(0,0,0,.1);
      min-width:0;
    }
    .gallery-main img{
      width:100%;
      height:100%;
      object-fit:contain;
      object-position:center center;
      transition:transform .4s,opacity .3s;
    }
    .gallery-main:hover img{transform:scale(1.04);}
    .gallery-badge{position:absolute;top:16px;left:16px;background:var(--pink);color:#fff;font-size:13px;font-weight:800;padding:6px 14px;border-radius:20px;z-index:2;}
    .gallery-wish{position:absolute;top:16px;right:16px;width:40px;height:40px;border-radius:50%;background:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px;box-shadow:0 2px 12px rgba(0,0,0,.12);transition:transform .2s;z-index:2;}
    .gallery-wish:hover{transform:scale(1.2);}
    /* Vertical thumb strip — always LEFT of main image */
    /* 6 thumbs visible: 6×76px + 5×10px gaps = 506px */
    .thumbs{
      display:flex;
      flex-direction:column;
      gap:10px;
      flex-shrink:0;
      order:-1;
      width:80px;
      max-height:506px;      /* exactly 6 thumbs, 7th+ scrolls */
      overflow-y:auto;
      overflow-x:visible;
      scroll-behavior:smooth;
      scrollbar-width:thin;
      scrollbar-color: var(--pink) #f0e6ff;
      padding:2px;
    }
    .thumbs::-webkit-scrollbar{ width:4px; }
    .thumbs::-webkit-scrollbar-track{ background:#f0e6ff; border-radius:4px; }
    .thumbs::-webkit-scrollbar-thumb{ background:var(--pink); border-radius:4px; }
    .thumb{
      width:76px;height:76px;
      border-radius:12px;overflow:hidden;
      cursor:pointer;border:3px solid transparent;
      transition:border-color .2s,transform .2s;
      flex-shrink:0;background:var(--white);
      box-shadow:0 2px 8px rgba(0,0,0,.08);
    }
    .thumb:hover{transform:scale(1.05);}
    .thumb.active{border-color:var(--pink);}
    .thumb img{width:100%;height:100%;object-fit:contain;}

    /* ── PRODUCT INFO ── */
    .prod-brand{display:flex;align-items:center;gap:10px;margin-bottom:8px;}
    .prod-brand span{font-size:13px;color:#aaa;font-weight:700;}
    .verified-badge{background:#e8fff8;color:var(--teal);font-size:11px;font-weight:800;padding:3px 10px;border-radius:20px;}
    .prod-info h1{font-family:'Baloo 2',cursive;font-size:36px;font-weight:800;line-height:1.15;margin-bottom:10px;color:var(--dark);}
    .rating-row{display:flex;align-items:center;gap:12px;margin-bottom:18px;flex-wrap:wrap;}
    .stars-lg{color:var(--yellow);font-size:20px;}
    .rating-num{font-weight:800;font-size:15px;}
    .review-link{color:var(--pink);font-size:13px;font-weight:700;text-decoration:none;}
    .in-stock{background:#e8fff8;color:var(--teal);font-size:12px;font-weight:800;padding:4px 12px;border-radius:20px;}

    .price-block{background:var(--light-bg);border-radius:18px;padding:20px 24px;margin-bottom:24px;}
    .price-block .price{font-family:'Baloo 2',cursive;font-size:42px;font-weight:800;color:var(--pink);line-height:1;}
    .price-block .price-row{display:flex;align-items:center;gap:14px;margin-top:6px;flex-wrap:wrap;}
    .price-old{font-size:18px;color:#bbb;text-decoration:line-through;}
    .price-save{background:var(--teal);color:#fff;font-size:13px;font-weight:800;padding:4px 12px;border-radius:20px;}
    .price-note{font-size:12px;color:#aaa;margin-top:6px;}

    .option-label{font-weight:800;font-size:14px;color:var(--dark);margin-bottom:10px;display:flex;align-items:center;gap:6px;}
    .size-guide{color:var(--pink);font-size:12px;font-weight:700;cursor:pointer;text-decoration:underline;}

    /* ── SIZE BUTTONS ── */
    .sizes{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:22px;}
    .size-btn{
      min-width:52px;height:52px;padding:0 10px;border-radius:14px;
      border:2px solid #f0e6ff;background:#fff;
      font-weight:800;font-size:13px;cursor:pointer;
      transition:all .2s;display:flex;align-items:center;justify-content:center;
    }
    .size-btn:hover,.size-btn.active{background:linear-gradient(135deg,var(--pink),var(--orange));border-color:var(--pink);color:#fff;}
    .size-btn.out{color:#ccc;border-color:#eee;cursor:not-allowed;text-decoration:line-through;opacity:.6;}
    .size-btn.hidden-size{display:none;}
    .size-hint{font-size:12px;color:#aaa;font-weight:700;margin-bottom:14px;min-height:18px;}

    /* ── COLOUR ── */
    .color-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:22px;}
    .color-opt{width:36px;height:36px;border-radius:50%;cursor:pointer;border:3px solid transparent;transition:transform .2s,border-color .2s;position:relative;}
    .color-opt:hover,.color-opt.active{transform:scale(1.18);border-color:var(--dark);}
    .color-name-hint{font-size:12px;color:var(--pink);font-weight:800;margin-bottom:10px;min-height:18px;}

    /* ── QTY ── */
    .qty-row{display:flex;align-items:center;gap:14px;margin-bottom:24px;}
    .qty-box{display:flex;align-items:center;border:2px solid #f0e6ff;border-radius:14px;overflow:hidden;}
    .qty-box button{width:44px;height:44px;border:none;background:#fff;font-size:22px;cursor:pointer;color:var(--pink);font-weight:800;transition:background .2s;}
    .qty-box button:hover{background:#fff0f5;}
    .qty-box input{width:56px;height:44px;border:none;text-align:center;font-family:'Nunito',sans-serif;font-weight:800;font-size:16px;outline:none;}

    /* ── CTAS ── */
    .cta-row{display:flex;gap:12px;margin-bottom:24px;flex-wrap:wrap;}
    .btn-primary{padding:16px 36px;background:linear-gradient(135deg,var(--pink),var(--orange));color:#fff;font-weight:800;font-size:16px;border:none;border-radius:50px;cursor:pointer;box-shadow:0 8px 24px rgba(255,77,141,.4);transition:transform .2s,box-shadow .2s;flex:none;min-width:140px;}
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(255,77,141,.6);}
    .btn-buy{background:linear-gradient(135deg,var(--orange),var(--yellow));box-shadow:0 8px 24px rgba(255,107,53,.4);}
    .btn-buy:hover{box-shadow:0 12px 30px rgba(255,107,53,.6);}
    .btn-wishlist{width:56px;height:56px;border-radius:50%;border:2px solid #f0e6ff;background:#fff;font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;flex-shrink:0;}
    .btn-wishlist:hover{border-color:var(--pink);background:#fff0f5;}

    /* ── TRUST ── */
    .trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:24px;}
    .trust-badge{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:#666;}

    /* ── HIGHLIGHTS ── */
    .highlights{background:#fff;border-radius:18px;padding:20px 24px;margin-bottom:24px;}
    .highlights h4{font-weight:800;font-size:15px;margin-bottom:14px;color:var(--dark);}
    .highlight-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;font-size:14px;color:#555;line-height:1.5;}
    .highlight-item .dot{width:8px;height:8px;border-radius:50%;background:var(--pink);flex-shrink:0;margin-top:6px;}

    /* ── ACCORDION ── */
    .accordion{border-radius:18px;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.05);margin-bottom:28px;}
    .acc-item{background:#fff;border-bottom:1px solid #f5e6ff;}
    .acc-item:last-child{border-bottom:none;}
    .acc-head{width:100%;padding:18px 24px;background:none;border:none;display:flex;justify-content:space-between;align-items:center;font-family:'Nunito',sans-serif;font-weight:800;font-size:15px;cursor:pointer;color:var(--dark);}
    .acc-head .acc-arrow{font-size:20px;transition:transform .3s;}
    .acc-body{max-height:0;overflow:hidden;transition:max-height .35s ease;}
    .acc-body p{padding:0 24px 18px;font-size:14px;color:#666;line-height:1.8;}
    .acc-item.open .acc-arrow{transform:rotate(45deg);}
    .acc-item.open .acc-body{max-height:300px;}

    /* ── DESCRIPTION ── */
    .prod-description{background:#fff;border-radius:18px;padding:24px;margin-bottom:24px;box-shadow:0 4px 16px rgba(0,0,0,.05);}
    .prod-description h3{font-family:'Baloo 2',cursive;font-size:20px;font-weight:800;color:var(--dark);margin-bottom:14px;padding-bottom:12px;border-bottom:2px solid #f5e6ff;}
    .prod-description .desc-content{font-size:14px;color:#555;line-height:1.9;}
    .prod-description .desc-content p{margin-bottom:12px;}
    .prod-description .desc-content p:last-child{margin-bottom:0;}

    /* ── REVIEWS ── */
    .prod-reviews{background:#fff;border-radius:18px;padding:24px;margin-bottom:24px;box-shadow:0 4px 16px rgba(0,0,0,.05);}
    .prod-reviews h3{font-family:'Baloo 2',cursive;font-size:20px;font-weight:800;color:var(--dark);margin-bottom:18px;padding-bottom:12px;border-bottom:2px solid #f5e6ff;}
    .review-summary-compact{display:flex;gap:24px;align-items:center;background:var(--light-bg);border-radius:14px;padding:18px 20px;margin-bottom:20px;}
    .big-rating-sm .num{font-family:'Baloo 2',cursive;font-size:44px;font-weight:800;color:var(--pink);line-height:1;}
    .big-rating-sm .stars{color:var(--yellow);font-size:18px;}
    .big-rating-sm p{font-size:12px;color:#aaa;margin-top:3px;}
    .rating-bars{flex:1;}
    .bar-row{display:flex;align-items:center;gap:10px;margin-bottom:6px;font-size:12px;font-weight:700;}
    .bar-row span:first-child{width:36px;text-align:right;color:#666;}
    .bar-bg{flex:1;height:7px;background:#f0e6ff;border-radius:4px;overflow:hidden;}
    .bar-fill{height:100%;background:linear-gradient(90deg,var(--pink),var(--orange));border-radius:4px;}
    .bar-row span:last-child{width:30px;color:#aaa;}
    .review-list{display:grid;gap:14px;}
    .review-card{background:var(--light-bg);border-radius:14px;padding:18px;}
    .review-top{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
    .review-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover;border:2px solid var(--pink);}
    .reviewer-name{font-weight:800;font-size:14px;}
    .review-date{font-size:11px;color:#aaa;}
    .review-stars{color:var(--yellow);font-size:14px;margin-bottom:7px;}
    .review-text{font-size:13px;color:#555;line-height:1.7;}
    .review-helpful{margin-top:10px;font-size:11px;color:#aaa;font-weight:700;}
    .review-helpful button{background:none;border:1px solid #eee;border-radius:20px;padding:3px 10px;font-size:11px;cursor:pointer;transition:all .2s;margin-right:6px;}
    .review-helpful button:hover{border-color:var(--pink);color:var(--pink);}
    .verified-tag{margin-left:auto;background:#e8fff8;color:var(--teal);font-size:11px;font-weight:800;padding:3px 10px;border-radius:20px;}

    /* ── RELATED ── */
    .related-section{max-width:1300px;margin:0 auto;padding:40px 40px 60px;}
    .related-section h2{font-family:'Baloo 2',cursive;font-size:28px;font-weight:800;color:var(--dark);margin-bottom:24px;}
    .related-section h2 span{color:var(--pink);}
    .related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
    .product-card{background:#fff;border-radius:var(--card-radius);overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.06);transition:transform .25s,box-shadow .25s;position:relative;}
    .product-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.12);}
    .product-img{height:200px;position:relative;overflow:hidden;}
    .product-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
    .product-card:hover .product-img img{transform:scale(1.06);}
    .prod-badge{position:absolute;top:12px;left:12px;background:var(--pink);color:#fff;font-size:11px;font-weight:800;padding:4px 10px;border-radius:20px;z-index:2;}
    .prod-wish{position:absolute;top:12px;right:12px;width:34px;height:34px;border-radius:50%;background:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:16px;box-shadow:0 2px 10px rgba(0,0,0,.1);transition:transform .2s;z-index:2;}
    .prod-wish:hover{transform:scale(1.2);}
    .prod-body{padding:14px;}
    .prod-body h4{font-weight:800;font-size:14px;margin-bottom:4px;}
    .price-row-sm{display:flex;align-items:center;gap:8px;margin-top:8px;}
    .price-sm{font-family:'Baloo 2',cursive;font-size:20px;font-weight:800;color:var(--pink);}
    .price-old-sm{font-size:13px;color:#bbb;text-decoration:line-through;}
    .add-cart{width:100%;padding:11px;background:linear-gradient(135deg,var(--pink),var(--orange));color:#fff;font-weight:800;font-size:13px;border:none;border-radius:12px;cursor:pointer;margin-top:10px;transition:opacity .2s;}
    .add-cart:hover{opacity:.85;}

    /* ══════════════════════════════════════════
       MOBILE SWIPE GALLERY  (≤768px)
    ══════════════════════════════════════════ */
    .mobile-gallery{display:none;position:relative;background:#fff;}

    /* Swipe slider */
    .swipe-track-wrap{overflow:hidden;position:relative;}
    .swipe-track{
      display:flex;
      transition:transform .38s cubic-bezier(.4,0,.2,1);
      will-change:transform;
    }
    .swipe-slide{
      min-width:100%;height:380px;flex-shrink:0;
      position:relative;overflow:hidden;
    }
    .swipe-slide img{
      width:100%;height:100%;object-fit:cover;
      pointer-events:none;user-select:none;
      -webkit-user-drag:none;
    }

    /* Discount badge on mobile */
    .mob-badge{
      position:absolute;top:14px;left:14px;
      background:var(--pink);color:#fff;
      font-size:12px;font-weight:800;padding:5px 12px;border-radius:20px;z-index:4;
    }
    /* Wishlist on mobile */
    .mob-wish{
      position:absolute;top:12px;right:12px;
      width:38px;height:38px;border-radius:50%;
      background:#fff;border:none;cursor:pointer;
      display:flex;align-items:center;justify-content:center;
      font-size:18px;box-shadow:0 2px 10px rgba(0,0,0,.15);z-index:4;
    }

    /* Dot indicators */
    .swipe-dots{
      display:flex;justify-content:center;align-items:center;
      gap:6px;padding:10px 0 6px;
    }
    .swipe-dot{
      width:7px;height:7px;border-radius:50%;
      background:#f0e6ff;transition:all .25s;cursor:pointer;
    }
    .swipe-dot.active{background:var(--pink);width:20px;border-radius:4px;}

    /* Arrow nav (shows on hover / always on desktop) */
    .swipe-arrow{
      position:absolute;top:50%;transform:translateY(-50%);
      width:36px;height:36px;border-radius:50%;
      background:rgba(255,255,255,.9);border:none;
      display:flex;align-items:center;justify-content:center;
      font-size:18px;cursor:pointer;z-index:5;
      box-shadow:0 2px 10px rgba(0,0,0,.15);
      transition:opacity .2s;
    }
    .swipe-arrow.prev{left:10px;}
    .swipe-arrow.next{right:10px;}

    /* Mobile info panel */
    .mobile-info-top{
      padding:0 16px 0;
    }
    .mob-brand{display:flex;align-items:center;gap:8px;margin-bottom:6px;}
    .mob-brand span{font-size:12px;color:#aaa;font-weight:700;}
    .mob-title{font-family:'Baloo 2',cursive;font-size:24px;font-weight:800;color:var(--dark);line-height:1.2;margin-bottom:8px;}
    .mob-rating{display:flex;align-items:center;gap:8px;margin-bottom:14px;flex-wrap:wrap;}
    .mob-stars{color:var(--yellow);font-size:16px;}
    .mob-rnum{font-weight:800;font-size:13px;}
    .mob-rlink{color:var(--pink);font-size:12px;font-weight:700;text-decoration:none;}
    .mob-stock{background:#e8fff8;color:var(--teal);font-size:11px;font-weight:800;padding:3px 10px;border-radius:20px;}

    .mob-price-block{background:var(--light-bg);border-radius:16px;padding:14px 16px;margin-bottom:16px;}
    .mob-price{font-family:'Baloo 2',cursive;font-size:34px;font-weight:800;color:var(--pink);line-height:1;}
    .mob-price-row{display:flex;align-items:center;gap:10px;margin-top:4px;flex-wrap:wrap;}
    .mob-price-old{font-size:15px;color:#bbb;text-decoration:line-through;}
    .mob-price-save{background:var(--teal);color:#fff;font-size:12px;font-weight:800;padding:3px 10px;border-radius:20px;}
    .mob-price-note{font-size:11px;color:#aaa;margin-top:5px;}

    /* Mobile colour picker */
    .mob-section-label{font-weight:800;font-size:13px;color:var(--dark);margin-bottom:8px;display:flex;align-items:center;gap:6px;}
    .mob-color-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:6px;}
    .mob-color-opt{
      width:34px;height:34px;border-radius:50%;cursor:pointer;
      border:3px solid transparent;transition:transform .2s,border-color .2s;
    }
    .mob-color-opt:hover,.mob-color-opt.active{transform:scale(1.18);border-color:var(--dark);}
    .mob-color-name{font-size:12px;color:var(--pink);font-weight:800;margin-bottom:10px;min-height:18px;}
    .mobile-info-top .mob-section-label:first-child{margin-top:4px;}

    /* Mobile size picker */
    .mob-sizes{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:6px;}
    .mob-size-btn{
      min-width:48px;height:46px;padding:0 8px;border-radius:12px;
      border:2px solid #f0e6ff;background:#fff;
      font-weight:800;font-size:12px;cursor:pointer;
      transition:all .2s;display:flex;align-items:center;justify-content:center;
    }
    .mob-size-btn:hover,.mob-size-btn.active{background:linear-gradient(135deg,var(--pink),var(--orange));border-color:var(--pink);color:#fff;}
    .mob-size-btn.out{color:#ccc;border-color:#eee;cursor:not-allowed;text-decoration:line-through;opacity:.5;}
    .mob-size-hint{font-size:11px;color:#aaa;font-weight:700;margin-bottom:14px;min-height:16px;}

    /* Mobile qty */
    .mob-qty-row{display:flex;align-items:center;gap:12px;margin-bottom:18px;}
    .mob-qty-box{display:flex;align-items:center;border:2px solid #f0e6ff;border-radius:12px;overflow:hidden;}
    .mob-qty-box button{width:40px;height:40px;border:none;background:#fff;font-size:20px;cursor:pointer;color:var(--pink);font-weight:800;}
    .mob-qty-box input{width:48px;height:40px;border:none;text-align:center;font-family:'Nunito',sans-serif;font-weight:800;font-size:15px;outline:none;}
    .mob-stock-warn{font-size:12px;color:#aaa;font-weight:700;}
    .mob-stock-warn strong{color:var(--orange);}

    /* Mobile sticky CTA bar */
    .mob-cta-sticky{
      position:sticky;bottom:0;left:0;right:0;
      background:#fff;padding:12px 16px;
      box-shadow:0 -4px 20px rgba(0,0,0,.08);
      display:none;
      z-index:100;gap:10px;
    }
    .mob-btn-cart{
      flex:1;padding:1px;
      background:linear-gradient(135deg,var(--pink),var(--orange));
      color:#fff;font-weight:800;font-size:11px;
      border:none;border-radius:40px;cursor:pointer;
      box-shadow:0 6px 18px rgba(255,77,141,.4);
      transition:transform .2s;
    }
    .mob-btn-cart:active{transform:scale(.97);}
    .mob-btn-buy{
      flex:1;padding:11px;
      background:linear-gradient(135deg,var(--orange),var(--yellow));
      color:#fff;font-weight:800;font-size:11px;
      border:none;border-radius:40px;cursor:pointer;
      box-shadow:0 6px 18px rgba(255,107,53,.4);
      transition:transform .2s;
    }
    .mob-btn-buy:active{transform:scale(.97);}
    .mob-btn-wish{
      width:48px;height:48px;border-radius:50%;
      border:2px solid #f0e6ff;background:#fff;
      font-size:20px;cursor:pointer;display:flex;
      align-items:center;justify-content:center;flex-shrink:0;
    }

    /* Mobile sections (highlights, accordion, desc, reviews) */
    .mob-highlights{background:#fff;border-radius:16px;padding:18px;margin:0 16px 16px;box-shadow:0 4px 14px rgba(0,0,0,.05);}
    .mob-highlights h4{font-weight:800;font-size:14px;margin-bottom:12px;color:var(--dark);}
    .mob-accordion{margin:0 16px 16px;border-radius:16px;overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,.05);}
    .mob-desc{background:#fff;border-radius:16px;padding:18px;margin:0 16px 16px;box-shadow:0 4px 14px rgba(0,0,0,.05);}
    .mob-desc h3,.mob-reviews h3{font-family:'Baloo 2',cursive;font-size:18px;font-weight:800;color:var(--dark);margin-bottom:12px;padding-bottom:10px;border-bottom:2px solid #f5e6ff;}
    .mob-reviews{background:#fff;border-radius:16px;padding:18px;margin:0 16px 24px;box-shadow:0 4px 14px rgba(0,0,0,.05);}
    .mob-related{padding:0 16px 100px;}
    .mob-related h2{font-family:'Baloo 2',cursive;font-size:22px;font-weight:800;color:var(--dark);margin-bottom:16px;}
    .mob-related h2 span{color:var(--pink);}
    .mob-related-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}

    /* ══════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
    ══════════════════════════════════════════ */
    /* ── TABLET (769–900px) ── */
    @media(max-width:900px) and (min-width:769px){
      .detail-wrap{
        grid-template-columns:1fr;
        gap:30px;
        padding:20px 16px 40px;
      }
      .gallery{
        position:static;
        flex-direction:row; /* keep thumbs left on tablet too */
      }
      .thumbs{width:68px;max-height:400px;}
      .thumb{width:64px;height:64px;}
      .gallery-main{aspect-ratio:1/1;}
      .related-grid{grid-template-columns:repeat(2,1fr);}
      .related-section{padding:0 16px 40px;}
      .breadcrumb{padding:10px 16px;}
      .review-summary-compact{flex-direction:column;gap:16px;}
    }

    /* ── MOBILE (≤768px) — show mobile layout, hide desktop ── */
    @media(max-width:768px){
      .desktop-only{display:none!important;}
      .mobile-gallery{display:block;}
      .mob-cta-sticky{display:flex;}
      .detail-wrap{display:none;}
      .related-section{display:none;}
      /* breadcrumb compact */
      .breadcrumb{padding:10px 12px;font-size:12px;}
    }

    /* ── SMALL MOBILE (≤480px) ── */
    @media(max-width:480px){
      .mob-title{font-size:20px;}
      .mob-price{font-size:28px;}
      .swipe-slide{height:320px;}
    }