:root{
      --bg:#ffffff;
      --soft:#f7fbff;
      --text:#0c1b2a;
      --muted:#526171;
      --line:rgba(12,27,42,.10);

      --green:#0b5a2c;
      --green2:#138a43;

      --orange:#ff7a1a;
      --orange2:#ff5a2a;

      --shadow: 0 18px 45px rgba(15,23,42,.10);
      --shadow2: 0 12px 30px rgba(2,6,23,.12);

      --radius:22px;
      --radius2:18px;

      --max:1120px;
    }

    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:'Hind', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      background: radial-gradient(900px 380px at 10% 0%, rgba(255,122,26,.12), transparent 60%),
                  radial-gradient(900px 380px at 90% 0%, rgba(19,138,67,.12), transparent 60%),
                  var(--bg);
      color:var(--text);
      line-height:1.55;
      overflow-x:hidden;
      -webkit-text-size-adjust: 100%;
    }
    a{color:inherit}
    img{max-width:100%; display:block}

    .container{max-width:var(--max); margin:0 auto; padding:0 18px}
    .section{padding:64px 0}
    .section-title{
      font-size:34px; line-height:1.2; margin:0 0 8px; color:var(--green);
      letter-spacing:-.3px;
    }
    .section-sub{margin:0 0 18px; color:var(--muted); font-size:16px}
    .note{color:var(--muted); font-size:14px; margin:10px 0 0; line-height:1.5}

    /* =======================
       STICKY HEADER + FOOTER
       ======================= */
    .topbar{
      position:sticky; top:0; z-index:999;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid var(--line);
      will-change: transform;
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:10px 0;
      gap:14px;
    }
    .brand{display:flex; align-items:center; gap:10px}
    .brand img{height:auto; width:auto}

    .top-cta{display:flex; gap:10px; align-items:center}

    .btn{
      border:0; cursor:pointer;
      border-radius:999px;
      padding:12px 16px;
      font-weight:800;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
      text-decoration:none;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn-orange{
      background:linear-gradient(135deg, var(--orange), var(--orange2));
      color:#fff;
      box-shadow: 0 14px 30px rgba(255,122,26,.25);
    }
    .btn-green{
      background:linear-gradient(135deg, var(--green2), var(--green));
      color:#fff;
      box-shadow: 0 14px 30px rgba(19,138,67,.22);
    }
    .btn-ghost{
      background:#fff;
      border:1px solid var(--line);
      color:var(--text);
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
    }
    .btn-small{padding:10px 14px; font-size:14px}

    /* Hero */
    .hero{padding:44px 0 28px;}
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:26px;
      align-items:center;
    }
    .hero-left h1{
      margin:0 0 10px;
      font-size:44px;
      line-height:1.1;
      letter-spacing:-.5px;
      color:var(--green);
    }
    .hero-left p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:16px;
      max-width: 58ch;
    }
    .ticks{margin:14px 0 18px; display:grid; gap:10px;}
    .tick{
      display:flex; gap:10px; align-items:flex-start;
      background:#fff;
      border:1px solid var(--line);
      border-radius: 14px;
      padding:10px 12px;
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      text-align:left;
    }
    .tick b{color:var(--text)}
    .tick span{color:var(--muted); font-size:14px}
    .tick .dot{
      width:22px; height:22px; border-radius:999px;
      background: rgba(19,138,67,.14);
      display:flex; align-items:center; justify-content:center;
      color:var(--green);
      font-weight:900;
      flex:0 0 22px;
      margin-top:1px;
    }

    .hero-ctas{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .hero-ctas .btn{min-width: 220px}
    .hero-ctas .btn-row{
      display:flex; gap:12px; flex-wrap:wrap;
      width:100%;
    }
    .hero-ctas .btn-row .btn{flex:1}

    .hero-right{position:relative;}
    .card-surface{
      background: rgba(255,255,255,.85);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
    }

    /* HERO VIDEO */
    .hvideo{
      position:relative;
      border-radius: var(--radius);
      overflow:hidden;
      background:#0b0f14;
    }
    .hvideo video{
      width:100%;
      height:auto;
      display:block;
      aspect-ratio: 4/3;
      object-fit: cover;
      background:#0b0f14;
    }
    .hgrad{
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.00) 45%, rgba(0,0,0,.55));
      pointer-events:none;
    }
    .hbadge{
      position:absolute; left:16px; bottom:16px;
      background: rgba(255,255,255,.90);
      border:1px solid rgba(255,255,255,.28);
      border-radius: 999px;
      padding:8px 12px;
      font-weight:900;
      box-shadow: 0 10px 22px rgba(2,6,23,.18);
      display:inline-flex;
      gap:8px;
      align-items:center;
    }
    .hbadge .p{
      width:10px;height:10px;border-radius:999px;
      background: var(--orange);
      box-shadow: 0 0 0 6px rgba(255,122,26,.15);
    }
    .sound-fab{
      position:absolute;
      right:14px;
      bottom:14px;
      z-index:5;
      border-radius:999px;
      padding:10px 12px;
      font-weight:900;
      border:1px solid rgba(255,255,255,.25);
      background: rgba(0,0,0,.45);
      color:#fff;
      cursor:pointer;
      backdrop-filter: blur(8px);
    }

    /* MOBILE-ONLY & DESKTOP-ONLY */
    .mobile-only{display:none}
    .desktop-only{display:block}

    /* Problem section */
    .pgrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      margin-top:18px;
    }
    .pcard{
      background:#fff;
      border:1px solid var(--line);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      display:flex;
      gap:12px;
      align-items:flex-start;
      min-height: 130px;
    }
    .picon{
      width:44px; height:44px; border-radius: 14px;
      background: rgba(255,122,26,.12);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 44px;
      overflow:hidden;
      border:1px solid rgba(255,122,26,.20);
    }
    .picon img{width:28px;height:28px; object-fit:contain}
    .pcard h4{margin:0 0 6px; font-size:16px}
    .pcard p{margin:0; color:var(--muted); font-size:14px}
    
    /* =========================
       MOBILE: Reduce section spacing
       ========================= */
    @media (max-width: 980px){

      /* Main section padding */
          .section{
        padding: 36px 0;   /* पहले 64px था */
      }

      /* Hero top-bottom spacing */
      .hero{
        padding: 28px 0 18px;
      }

      /* Section titles spacing */
      .section-title{
        margin-bottom: 6px;
      }

      .section-sub{
        margin-bottom: 14px;
      }

      /* Product / content blocks */
      .product-page{
        margin-top: 10px;
      }

      /* Testimonials spacing */
      .tslider{
        margin-top: 10px;
      }

      /* Gallery spacing */
      .gallery-wrap{
        padding: 28px 0;
      }
    
      /* Guru section spacing */
      .guru{
        padding: 36px 0;
      }
    
      /* Between cards spacing */
      .pgrid,
      .t-highlights{
        gap: 10px;
      }
    }
    /* Mobile: convert to slider */
    .pslider{
      position:relative;
      overflow:hidden;
      border-radius: var(--radius2);
      margin-top:18px;
      display:none;
    }
    .ptrack{
      display:flex;
      gap:12px;
      transition: transform .55s ease;
      will-change: transform;
      padding: 4px 2px;
    }
    .pslide{flex: 0 0 100%;}
    .pdots{display:flex; justify-content:center; gap:8px; margin-top:10px}
    .pdot{
      width:10px;height:10px;border-radius:999px;
      border:1px solid rgba(12,27,42,.22);
      background:transparent; cursor:pointer;
    }
    .pdot.active{background: var(--green); border-color: var(--green)}

    /* Gallery auto slider */
    .gallery-wrap{
      background: linear-gradient(180deg, rgba(19,138,67,.08), rgba(255,122,26,.06), transparent);
      border-top:1px solid rgba(12,27,42,.06);
      border-bottom:1px solid rgba(12,27,42,.06);
    }
    .gslider{position:relative; margin-top:14px}
    .gtrack-wrap{overflow:hidden; border-radius: 22px}
    .gtrack{
      display:flex;
      gap:12px;
      transition: transform .55s ease;
      will-change: transform;
      padding: 8px 2px;
    }
    .gcard{
      flex: 0 0 calc((100% - 24px)/3);
      border-radius: 18px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      box-shadow: 0 12px 35px rgba(2,6,23,.08);
      cursor:pointer;
      position:relative;
      min-height: 220px;
    }
    .gcard img{
      width:100%; height:100%;
      object-fit: cover;
      transition: transform .35s ease;
    }
    .gcard:hover img{transform: scale(1.04)}
    .gnav{
      position:absolute; top:50%;
      transform:translateY(-50%);
      width:42px;height:42px;border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.90);
      box-shadow: 0 10px 22px rgba(2,6,23,.10);
      cursor:pointer;
      z-index:5;
    }
    .gnav.left{left:-6px}
    .gnav.right{right:-6px}
    .gdots{
      display:flex; gap:8px; justify-content:center;
      align-items:center; margin-top:12px;
    }
    .gdot{
      width:10px;height:10px;border-radius:999px;
      border:1px solid rgba(15,23,42,.25);
      background:transparent;
      cursor:pointer;
      transition:transform .2s ease, background .2s ease;
    }
    .gdot.active{
      background:#0b5a2c;
      border-color:#0b5a2c;
      transform:scale(1.15);
    }

    /* Product page style offer section */
    .product-page{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:22px;
      align-items:start;
      margin-top: 16px;
    }
    .gallery-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .main-img{
      width:100%;
      aspect-ratio: 4/3;
      object-fit: contain;
      background: radial-gradient(500px 200px at 50% 20%, rgba(255,122,26,.10), transparent 55%),
                  radial-gradient(500px 200px at 50% 90%, rgba(19,138,67,.10), transparent 55%),
                  #fff;
      padding:18px;
    }

    .pdetails{
      background: rgba(255,255,255,.90);
      border:1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding:18px;
    }
    .pill{
      display:inline-flex;
      gap:8px;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      font-weight:900;
      font-size:13px;
      border:1px solid rgba(255,122,26,.25);
      background: rgba(255,122,26,.10);
      color:#7a2d06;
    }
    .pdetails h3{margin:10px 0 6px; font-size:24px; color:var(--green)}
    .pdetails .desc{margin:0 0 12px; color:var(--muted)}
    .mini-tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
    .mtag{
      display:inline-flex; gap:8px; align-items:center;
      padding:8px 12px; border-radius:999px;
      border:1px solid rgba(12,27,42,.12);
      background:#fff;
      font-weight:800;
      font-size:13px;
      box-shadow: 0 10px 18px rgba(2,6,23,.06);
    }

    /* Guru section (video) */
    .guru{
      background: linear-gradient(180deg, rgba(255,122,26,.06), rgba(19,138,67,.05), transparent);
    }
    .guru-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:center;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border-radius:999px;
      padding:7px 12px;
      background: rgba(255,122,26,.12);
      border:1px solid rgba(255,122,26,.20);
      font-weight:900;
      font-size:13px;
      color:#7a2d06;
      width:fit-content;
      margin-bottom:12px;
    }
    .guru p{color:var(--muted); margin:0 0 12px}
    .video-card{
      background:#0b0f14;
      border-radius: var(--radius);
      overflow:hidden;
      border:1px solid rgba(12,27,42,.12);
      box-shadow: var(--shadow2);
      position:relative;
      aspect-ratio: 16/9;
    }
    .video-card iframe{width:100%; height:100%; border:0;}
    .video-fallback{
      display:none;
      position:absolute; inset:0;
      align-items:center; justify-content:center;
      padding:18px;
      color:#fff;
      text-align:center;
      background: radial-gradient(700px 260px at 50% 0%, rgba(255,122,26,.18), transparent 55%),
                  radial-gradient(700px 260px at 50% 100%, rgba(19,138,67,.18), transparent 55%),
                  rgba(11,15,20,.85);
    }

    /* Testimonials slider */
    .tslider{
      position:relative;
      border-radius: var(--radius);
      border:1px solid var(--line);
      background: rgba(255,255,255,.90);
      box-shadow: var(--shadow);
      overflow:hidden;
      margin-top:16px;
    }
    .ttrack{
      display:flex;
      transition: transform .6s ease;
      will-change: transform;
    }
    .titem{
      flex:0 0 100%;
      padding:18px;
      display:grid;
      grid-template-columns: 220px 1fr;
      gap:16px;
      align-items:center;
      min-height: 220px;
    }
    .tmedia{
      width:220px;
      height:220px;
      border-radius: 20px;
      overflow:hidden;
      border:1px solid rgba(12,27,42,.12);
      box-shadow: 0 12px 26px rgba(2,6,23,.12);
      background:#fff;
      position:relative;
    }
    .tmedia img{width:100%;height:100%;object-fit:cover}
    .tmedia video{
      width:100%;height:100%;
      object-fit:cover;
      display:block;
      background:#0b0f14;
    }
    .sound-btn{
      position:absolute;
      right:10px;
      bottom:10px;
      border-radius:999px;
      padding:8px 10px;
      font-weight:900;
      border:1px solid rgba(255,255,255,.25);
      background: rgba(0,0,0,.45);
      color:#fff;
      cursor:pointer;
      backdrop-filter: blur(8px);
      font-size:13px;
    }
    .tcontent h4{margin:0 0 6px; font-size:20px; color:var(--green)}
    .tmeta{color:var(--muted); font-size:14px}
    .tname{font-weight:900; color:#0f172a}
    .tq{
      background: rgba(255,122,26,.10);
      border:1px solid rgba(255,122,26,.18);
      padding:10px 12px;
      border-radius: 16px;
      margin-top:10px;
      font-weight:700;
      color:#4b1f0a;
    }
    .tnav{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      width:42px;height:42px;border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 10px 22px rgba(2,6,23,.12);
      cursor:pointer;
      z-index:4;
    }
    .tnav.left{left:10px}
    .tnav.right{right:10px}
    .tdots{
      display:flex;
      justify-content:center;
      gap:8px;
      padding:14px 0 16px;
      border-top:1px solid rgba(12,27,42,.08);
      background: rgba(247,251,255,.9);
    }
    .tdot{
      width:10px;height:10px;border-radius:999px;
      border:1px solid rgba(12,27,42,.22);
      background:transparent;
      cursor:pointer;
    }
    .tdot.active{background: var(--green); border-color: var(--green)}

    .t-highlights{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      margin-top:16px;
    }
    .hi-card{
      display:flex;
      gap:12px;
      align-items:center;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(12,27,42,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 12px 26px rgba(2,6,23,.08);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .hi-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(2,6,23,.12);
    }
    .hi-ico{
      width:48px;
      height:48px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      background: linear-gradient(135deg, rgba(255,122,26,.18), rgba(19,138,67,.14));
      border:1px solid rgba(255,122,26,.20);
      flex:0 0 48px;
    }
    .hi-text b{
      display:block;
      font-weight:900;
      color:#0f172a;
      line-height:1.1;
    }
    .hi-text span{
      display:block;
      margin-top:2px;
      font-size:13px;
      color: var(--muted);
      font-weight:700;
    }

    /* Popup modal form */
    .modal{
      position:fixed;
      inset:0;
      background: rgba(2,6,23,.55);
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      z-index:1000; /* above sticky header/footer */
    }
    .modal.open{display:flex}
    .modal-card{
      width:min(920px, 100%);
      background:#fff;
      border-radius: 26px;
      overflow:hidden;
      box-shadow: 0 30px 80px rgba(2,6,23,.35);
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      border:1px solid rgba(255,255,255,.18);
    }
    .m-left{
      background: radial-gradient(700px 260px at 50% 0%, rgba(255,122,26,.18), transparent 55%),
                  radial-gradient(700px 260px at 50% 100%, rgba(19,138,67,.18), transparent 55%),
                  #0b0f14;
      color:#fff;
      padding:18px;
      position:relative;
    }
    .m-left img{
      width:100%;
      height:100%;
      max-height: 360px;
      object-fit:cover;
      border-radius: 18px;
      opacity:.92;
      border:1px solid rgba(255,255,255,.12);
    }
    .m-left .mlabel{
      position:absolute; left:18px; top:18px;
      background: rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      padding:7px 10px;
      border-radius: 999px;
      font-weight:900;
      font-size:13px;
      backdrop-filter: blur(10px);
    }
    .m-right{padding:18px;}
    .mhead{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .mhead h3{margin:0; color:var(--green); font-size:22px}
    .close{
      border:1px solid rgba(12,27,42,.12);
      background:#fff;
      width:42px; height:42px;
      border-radius:999px;
      cursor:pointer;
      font-weight:900;
      box-shadow: 0 10px 18px rgba(2,6,23,.08);
    }
    .m-right p{margin:8px 0 14px; color:var(--muted)}
    .form{display:grid; gap:10px;}
    .field{display:grid; gap:6px;}
    .field label{font-weight:800; font-size:14px}
    .field input, .field textarea, .field select{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border:1px solid rgba(12,27,42,.12);
      background:#fff;
      font-size:15px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    .field input:focus, .field textarea:focus, .field select:focus{
      border-color: rgba(255,122,26,.55);
      box-shadow: 0 0 0 6px rgba(255,122,26,.12);
    }
    .hint{font-size:12px; color:var(--muted)}
    .error{font-size:12px; color:#b42318;}
    .error.show{display:block}
    .m-actions{
      display:flex;
      gap:10px;
      align-items:center;
      margin-top:6px;
      flex-wrap:wrap;
    }

    /* Sticky bottom bar */
    .bottom-bar{
      position:fixed;
      left:0; right:0; bottom:0;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(10px);
      border-top:1px solid var(--line);
      z-index:900; /* below modal, above content */
      padding:10px 0;
      will-change: transform;
    }
    .bottom-inner{
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .bb-text{display:flex; flex-direction:column; gap:2px;}
    .bb-text b{color:var(--green); font-size:14px}
    .bb-text span{color:var(--muted); font-size:12px}
    .bb-actions{display:flex; gap:10px; flex-wrap:wrap}
    .bb-actions .btn{padding:10px 14px}

    /* Scroll reveal */
    .reveal{
      opacity:0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.show{opacity:1; transform:none;}

    /* Lightbox */
    .lightbox{
      position:fixed; inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      background: rgba(2,6,23,.75);
      z-index:1200;
      padding:18px;
    }
    .lightbox.open{display:flex}
    .lightbox img{
      max-width:min(980px, 100%);
      max-height: 80vh;
      border-radius: 20px;
      border:1px solid rgba(255,255,255,.18);
      box-shadow: 0 30px 80px rgba(0,0,0,.35);
      background:#fff;
      object-fit:contain;
    }

    /* Prevent bottom bar overlap */
    .spacer{height: 92px}

    /* ============================
       MOBILE CENTER ALIGN + FIXES
       ============================ */
    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; gap:18px}
      .desktop-only{display:none}
      .mobile-only{display:block}

      /* Mobile center align */
      .hero-left{ text-align:center; }
      .hero-left p{ margin-left:auto; margin-right:auto; }
      .ticks{ justify-items:center; }
      .tick{ width:100%; max-width:560px; }
      .hero-ctas{ justify-content:center; }
      .hero-ctas .btn{ width:100%; min-width:unset; }
      .hero-ctas .btn-row{ flex-direction:column; }
      .hero-ctas .btn-row .btn{ width:100%; }

      /* All sections center on mobile */
      .section-title, .section-sub{ text-align:center; }
      .section-sub{ margin-left:auto; margin-right:auto; max-width: 62ch; }

      /* Product pages mobile: image on top always */
      .product-page{ grid-template-columns:1fr !important; }
      .product-page .gallery-card{ order:1; }
      .product-page .pdetails{ order:2; }

      /* About & offer pdetails center */
      .pdetails{ text-align:center; }
      .mini-tags{ justify-content:center; }
      .mtag{ justify-content:center; }

      /* Guru mobile */
      .guru-grid{grid-template-columns:1fr}

      /* Problem grid hide, slider show */
      .pgrid{display:none}
      .pslider{display:block}

      /* testimonial layout mobile */
      .titem{grid-template-columns: 1fr; }
      .tmedia{width:100%; height:260px}

      .modal-card{grid-template-columns:1fr}
      .m-left{display:none}

      /* highlights stack */
      .t-highlights{ grid-template-columns: 1fr; }
      .hi-card{ padding:12px; }

      /* Header CTA wrap stable on mobile */
      .topbar-inner{flex-wrap:wrap; justify-content:center}
      .top-cta{width:100%; justify-content:center}
    }

    @media (max-width: 520px){
      .hero-left h1{font-size:34px}
      .section-title{font-size:28px}
      .gcard{flex: 0 0 100%}
      .top-cta .btn{width:100%}
    }
    @media (max-width: 980px){
      .gcard{flex: 0 0 calc((100% - 12px)/2);}
    }
    @media (max-width: 520px){
      .gcard{flex: 0 0 100%;}
    }

    /* =========================================
       FIX: #offer mobile alignment "hilaav" stop
       (ONLY #offer is affected)
    ========================================= */
    #offer .product-page{align-items: stretch;}

    #offer #thumbs{
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    #offer #thumbs::-webkit-scrollbar{ display:none; }

    #offer #thumbs .thumb.active{
      outline: 2px solid rgba(255,122,26,.55);
      box-shadow: 0 10px 18px rgba(255,122,26,.18);
    }

    @media (max-width: 980px){
      #offer .product-page{
        grid-template-columns: 1fr !important;
        gap: 14px;
      }
      #offer .pdetails{ text-align:center !important; }
      #offer .pdetails > div:first-child{
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        text-align:center;
      }
      #offer .price-row{
        justify-content:center !important;
        gap:10px !important;
      }
      #offer .price-row .now{ font-size:30px !important; }
      #offer .delivery{
        justify-content:center !important;
        text-align:center;
      }
      #offer .note{
        max-width:52ch;
        margin:10px auto 0;
        text-align:center;
      }
      #offer .pcta{
        grid-template-columns:1fr !important;
      }
      #offer .pcta .btn{
        width:100%;
      }
      #offer .main-img{
        padding:14px;
        aspect-ratio: 4/3;
        object-fit: contain;
      }
    }
    /* =========================
       MOBILE: Remove sticky header
       ========================= */
    @media (max-width: 980px){
      .topbar{
        position: static !important;
        top: auto !important;
        backdrop-filter: none;
      }
    }
    /* =========================
       MOBILE HEADER: Single Line
       ========================= */
    @media (max-width: 980px){

      .topbar-inner{
        flex-wrap: nowrap !important;   /* wrap band */
        justify-content: space-between;
        align-items: center;
      }

      .brand img{
        height: 28px;   /* logo thoda compact */
      }

      .top-cta{
        width: auto !important;
        flex-wrap: nowrap !important;
        gap: 6px;
      }

      .top-cta .btn{
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 999px;
        white-space: nowrap;
      }
    }