 
    :root {
      --primary:       #1a6b8a;
      --primary-mid:   #218fba;
      --primary-light: #d0edf7;
      --primary-dark:  #104d65;
      --accent:        #e8a020;
      --accent-dark:   #c07a10;
      --navy:          #0b1f35;
      --slate:         #1a3248;
      --text:          #1e3248;
      --muted:         #5a7490;
      --white:         #ffffff;
      --off:           #f4f8fb;
      --border:        #dceaf2;
      --green:         #05875a;
      --green-bg:      #d1f5e8;
      --red:           #dc2626;
      --radius:        12px;
      --radius-lg:     20px;
      --shadow:        0 4px 24px rgba(26,107,138,.14);
      --shadow-lg:     0 20px 60px rgba(26,107,138,.2);
      --ease:          all .26s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    h1,h2,h3,h4,h5,h6 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.22;
    }
    a { text-decoration: none; color: inherit; transition: var(--ease); }
    img { max-width: 100%; height: auto; display: block; }
    :focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

    /* ── Layout ───────────────────────────── */
    .section-pad { padding: 80px 0; }
    .eyebrow {
      display: inline-block;
      font-family: 'Sora', sans-serif;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 14px; border-radius: 99px;
      margin-bottom: 10px;
    }
    .eyebrow.on-dark { color: #7dd4f0; background: rgba(125,212,240,.15); }
    .section-title { font-size: clamp(1.65rem, 3vw, 2.35rem); }
    .section-sub { color: var(--muted); max-width: 520px; margin: 8px auto 0; }

    /* ── Buttons ──────────────────────────── */
    .btn-sv {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: 'Sora', sans-serif; font-size: .85rem; font-weight: 600;
      padding: 12px 26px; border-radius: var(--radius); border: none;
      cursor: pointer; transition: var(--ease);
    }
    .btn-sv-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
      color: #fff; box-shadow: 0 4px 18px rgba(26,107,138,.38);
    }
    .btn-sv-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-2px); color: #fff; box-shadow: 0 8px 28px rgba(26,107,138,.48); }
    .btn-sv-accent {
      background: linear-gradient(135deg, var(--accent) 0%, #f0b030 100%);
      color: #fff; box-shadow: 0 4px 18px rgba(232,160,32,.35);
    }
    .btn-sv-accent:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); transform: translateY(-2px); color: #fff; }
    .btn-sv-outline-w {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.55);
    }
    .btn-sv-outline-w:hover { background: rgba(255,255,255,.13); border-color: #fff; color: #fff; }
    .btn-sv-outline-p {
      background: transparent; color: var(--primary);
      border: 2px solid var(--primary);
    }
    .btn-sv-outline-p:hover { background: var(--primary); color: #fff; }

    /* ════════════════════════════════════════
       TOPBAR
    ════════════════════════════════════════ */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,.72);
      font-size: .78rem;
      padding: 7px 0;
    }
    .topbar a { color: rgba(255,255,255,.72); }
    .topbar a:hover { color: #7dd4f0; }

    /* ════════════════════════════════════════
       NAVBAR
    ════════════════════════════════════════ */
    .sv-nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
      box-shadow: 0 2px 14px rgba(0,0,0,.06);
      transition: box-shadow .3s;
    }
    .sv-nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.13); }

    .logo-mark {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--primary), var(--primary-mid));
      border-radius: 11px;
      display: grid; place-items: center;
      color: #fff; font-size: 1.25rem; flex-shrink: 0;
      position: relative; overflow: hidden;
    }
    .logo-mark::after {
      content: '';
      position: absolute; width: 60%; height: 60%;
      background: rgba(255,255,255,.15);
      border-radius: 50%; top: -10%; right: -10%;
    }
    .logo-name {
      font-family: 'Sora', sans-serif; font-weight: 800;
      font-size: 1.2rem; color: var(--navy); line-height: 1;
    }
    .logo-name span { color: var(--primary); }
    .logo-tag { font-size: .62rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

    .nav-search { max-width: 340px; width: 100%; }
    .nav-search input {
      border: 1.5px solid var(--border); border-radius: var(--radius) 0 0 var(--radius);
      background: var(--off); font-size: .84rem; padding: 9px 13px; transition: var(--ease);
    }
    .nav-search input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(26,107,138,.1); outline: none; }
    .nav-search button {
      background: var(--primary); color: #fff; border: none;
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 9px 15px; cursor: pointer; transition: var(--ease);
    }
    .nav-search button:hover { background: var(--primary-dark); }

    .sv-nav .nav-link {
      font-family: 'Sora', sans-serif; font-size: .83rem; font-weight: 500;
      color: var(--text); padding: 8px 12px !important; border-radius: 8px; transition: var(--ease);
    }
    .sv-nav .nav-link:hover, .sv-nav .nav-link.active { color: var(--primary); background: var(--primary-light); }
    .nav-cta-btn {
      background: var(--accent) !important; color: #fff !important;
      font-weight: 700 !important; border-radius: 8px;
    }
    .nav-cta-btn:hover { background: var(--accent-dark) !important; color: #fff !important; }
    .cart-w { position: relative; }
    .cart-dot { position: absolute; top: 0; right: 0; background: var(--red); color: #fff; font-size: .58rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; }

    /* Mobile menu */
    #mobileMenu {
      background: var(--white); border-top: 1px solid var(--border);
      padding: 14px 16px;
    }

    /* ════════════════════════════════════════
       HERO
    ════════════════════════════════════════ */
    .hero-swiper { height: 560px; }
    @media(max-width:768px){ .hero-swiper{ height: 430px; } }

    .hero-slide { display: flex; align-items: center; position: relative; overflow: hidden; }
    .hs-1 { background: linear-gradient(135deg, #072a3d 0%, #1a6b8a 50%, #218fba 100%); }
    .hs-2 { background: linear-gradient(135deg, #0b1f35 0%, #1a3f6b 50%, #1a6baa 100%); }
    .hs-3 { background: linear-gradient(135deg, #0d2b1a 0%, #0e6b45 50%, #12a05c 100%); }

    .hero-bg-dots {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(circle at 15% 85%, rgba(255,255,255,.05) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.06) 0%, transparent 45%);
    }

    .hero-cross {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 42%; pointer-events: none; overflow: hidden;
    }
    .hero-cross::before {
      content: '+';
      position: absolute; font-size: 320px; font-weight: 900; color: rgba(255,255,255,.04);
      line-height: 1; top: 50%; right: -40px; transform: translateY(-50%);
      font-family: 'Sora', sans-serif;
    }

    .hero-content { position: relative; z-index: 2; }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
      color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .07em;
      text-transform: uppercase; padding: 5px 14px; border-radius: 99px;
      border: 1px solid rgba(255,255,255,.25); margin-bottom: 14px;
    }
    .hero-title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.15; }
    .hero-title span { color: #7dd4f0; }
    .hero-sub { color: rgba(255,255,255,.78); font-size: .97rem; margin-top: 10px; line-height: 1.6; }

    .hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 36px; }
    .h-stat-num { font-family: 'Sora',sans-serif; font-size: 1.55rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
    .h-stat-lbl { font-size: .68rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

    .hero-img-wrap { position: relative; padding: 10px; }
    .hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(33,143,186,.35) 0%, transparent 70%); pointer-events: none; }
    .hero-img-wrap img {
      filter: drop-shadow(0 28px 56px rgba(0,0,0,.42));
      animation: float 4s ease-in-out infinite;
      max-width: 450px;
    }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-13px)} }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
      width: 44px; height: 44px; background: rgba(255,255,255,.16);
      backdrop-filter: blur(8px); border-radius: 50%; color: #fff; transition: var(--ease);
    }
    .hero-swiper .swiper-button-prev:hover,
    .hero-swiper .swiper-button-next:hover { background: rgba(255,255,255,.3); }
    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after { font-size: .85rem; font-weight: 900; }
    .hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.4); width: 8px; height: 8px; }
    .hero-swiper .swiper-pagination-bullet-active { background: #fff; width: 26px; border-radius: 4px; }

    /* ════════════════════════════════════════
       USP STRIP
    ════════════════════════════════════════ */
    .usp-strip { background: var(--primary); padding: 14px 0; }
    .usp-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 500; }
    .usp-item i { color: #7dd4f0; font-size: 1rem; }
    .usp-sep { color: rgba(255,255,255,.3); font-size: 1.2rem; }

    /* ════════════════════════════════════════
       CATEGORIES
    ════════════════════════════════════════ */
    .cat-card {
      display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
      padding: 26px 14px; border-radius: var(--radius-lg); border: 1.5px solid var(--border);
      background: var(--white); color: var(--text); transition: var(--ease); cursor: pointer;
    }
    .cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-5px); }
    .cat-icon {
      /*width: 58px; height: 58px;*/
      border-radius: 14px;
      display: grid; place-items: center; font-size: 1.5rem; transition: var(--ease);
    }
    .cat-card:hover .cat-icon { transform: scale(1.1); }
    .cat-name { font-family: 'Sora',sans-serif; font-size: .8rem; font-weight: 600; }
    .cat-arr { font-size: .72rem; color: var(--primary); opacity: 0; transition: var(--ease); }
    .cat-card:hover .cat-arr { opacity: 1; }

    /* ════════════════════════════════════════
       DEAL BAR
    ════════════════════════════════════════ */
    .deal-bar { background: linear-gradient(90deg, var(--navy) 0%, var(--slate) 100%); padding: 11px 0; }
    .deal-tag { background: var(--accent); color: #fff; font-family: 'Sora',sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 12px; border-radius: 99px; white-space: nowrap; }
    .deal-text { color: rgba(255,255,255,.82); font-size: .875rem; }
    .deal-timer { color: #7dd4f0; font-family: 'Sora',sans-serif; font-weight: 700; font-size: .875rem; white-space: nowrap; }

    /* ════════════════════════════════════════
       PRODUCTS
    ════════════════════════════════════════ */
    .prod-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      display: flex; flex-direction: column; transition: var(--ease); position: relative;
    }
    .prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--primary-light); }
    .prod-tag {
      position: absolute; top: 12px; left: 12px; z-index: 1;
      background: var(--primary); color: #fff;
      font-family: 'Sora',sans-serif; font-size: .67rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 99px;
    }
    .prod-tag.accent { background: var(--accent); }
    .prod-img { background: var(--off); display: flex; align-items: center; justify-content: center; padding: 20px; border-bottom: 1px solid var(--border); overflow: hidden; }
    .prod-img img { max-height: 260px; width: auto; object-fit: contain; transition: transform .4s ease; }
    .prod-card:hover .prod-img img { transform: scale(1.07); }
    .prod-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
    .prod-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 5px; }
    .prod-title { font-size: .94rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
    .prod-badge { display: inline-flex; align-items: center; gap: 4px; font-size: .7rem; font-weight: 600; color: var(--green); background: var(--green-bg); padding: 3px 10px; border-radius: 99px; margin-bottom: 8px; width: fit-content; }
    .prod-old { font-size: .8rem; color: var(--muted); text-decoration: line-through; }
    .prod-price { font-family: 'Sora',sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--primary-dark); }
    .prod-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      background: linear-gradient(135deg, var(--primary), var(--primary-mid)); color: #fff;
      border: none; padding: 10px; border-radius: var(--radius);
      font-family: 'Sora',sans-serif; font-size: .82rem; font-weight: 600;
      cursor: pointer; transition: var(--ease); margin-top: auto; width: 100%;
    }
    .prod-btn:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-1px); }

    /* ════════════════════════════════════════
       BRANDS SWIPER
    ════════════════════════════════════════ */
  .brands-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 12px 16px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--ease);
  cursor: default;
}

.brands-swiper .swiper-slide:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.brands-swiper .swiper-slide img {
  display: block;
  width: 100%;
  /*height: 65px;*/
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s;
}

.brands-swiper .swiper-slide:hover img {
  filter: grayscale(0%);
}
    /* ════════════════════════════════════════
       WHY US
    ════════════════════════════════════════ */
    .feature-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius-lg); padding: 28px 22px; transition: var(--ease);
    }
    .feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
    .feat-icon {
      width: 52px; height: 52px; background: var(--primary-light); border-radius: 12px;
      display: grid; place-items: center; font-size: 1.35rem; color: var(--primary);
      margin-bottom: 14px; transition: var(--ease);
    }
    .feature-card:hover .feat-icon { background: var(--primary); color: #fff; }
    .feature-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 7px; }
    .feature-card p { font-size: .85rem; color: var(--muted); margin: 0; }

    /* ════════════════════════════════════════
       REVIEWS
    ════════════════════════════════════════ */
    .reviews-swiper { padding-bottom: 44px !important; }
    .review-card { background: var(--off); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; margin: 0; }
    .review-stars { color: #f59e0b; margin-bottom: 10px; font-size: .88rem; }
    .review-text { font-size: .875rem; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 14px; }
    .review-author { display: flex; align-items: center; gap: 10px; font-size: .83rem; }
    .r-av { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: 'Sora',sans-serif; font-weight: 700; font-size: .95rem; flex-shrink: 0; }

    /* ════════════════════════════════════════
       ABOUT
    ════════════════════════════════════════ */
    .about-wrap { position: relative; }
    .about-wrap img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); }
    .ab-badge {
      position: absolute; top: -14px; right: -14px;
      background: var(--primary); color: #fff; border-radius: var(--radius);
      padding: 12px 16px; display: flex; align-items: center; gap: 7px;
      font-family: 'Sora',sans-serif; font-size: .84rem; font-weight: 700;
      box-shadow: var(--shadow); z-index: 1;
    }
    .ab-stat {
      position: absolute; bottom: -16px; left: -14px;
      background: #fff; border-radius: var(--radius); padding: 13px 18px;
      box-shadow: var(--shadow-lg); border-left: 4px solid var(--accent); z-index: 1;
    }
    .ab-num { font-family: 'Sora',sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--primary-dark); display: block; }
    .ab-lbl { font-size: .72rem; color: var(--muted); }
    .info-row { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--muted); margin-bottom: 9px; }
    .info-row i { color: var(--primary); font-size: .95rem; flex-shrink: 0; margin-top: 2px; }

    /* ════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════ */
    .contact-sec {
      background: linear-gradient(135deg, #072a3d 0%, var(--slate) 60%, #0e2b44 100%);
      position: relative; overflow: hidden;
    }
    .contact-sec::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 5% 95%, rgba(33,143,186,.15) 0%, transparent 55%);
      pointer-events: none;
    }
    .contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
    .contact-list li { display: flex; align-items: center; gap: 12px; font-size: .88rem; }
    .c-icon { width: 40px; height: 40px; background: rgba(255,255,255,.1); color: #7dd4f0; border-radius: 9px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
    .contact-list a { color: rgba(255,255,255,.8); }
    .contact-list a:hover { color: #7dd4f0; }

    .wh-title { font-family: 'Sora',sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.42); margin-bottom: 8px; }
    .wh-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 10px; padding: 11px 14px; display: flex; flex-direction: column; gap: 2px; }
    .wh-card strong { color: #fff; font-size: .82rem; }
    .wh-card span { color: rgba(255,255,255,.48); font-size: .7rem; }

    .contact-card { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
    @media(max-width:576px){ .contact-card{ padding: 22px; } }
    .form-label { font-size: .83rem; font-weight: 600; color: var(--slate); margin-bottom: 5px; }
    .form-inp {
      width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
      padding: 10px 14px; font-size: .875rem; background: var(--off); color: var(--text);
      transition: var(--ease); font-family: 'DM Sans',sans-serif;
    }
    .form-inp:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(26,107,138,.1); outline: none; }
    .f-success { display: none; align-items: center; gap: 10px; background: var(--green-bg); border: 1px solid #6ee7b7; color: #065f46; border-radius: var(--radius); padding: 13px 16px; font-size: .875rem; margin-bottom: 16px; }
    .f-success.show { display: flex; }
    .req { color: var(--accent); }

    /* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
    .sv-footer { background: var(--navy); padding-top: 64px; }
    .f-head { font-family: 'Sora',sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #7dd4f0; margin-bottom: 14px; }
    .f-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
    .f-list li, .f-list a { font-size: .8rem; color: rgba(255,255,255,.48); transition: var(--ease); }
    .f-list a:hover { color: #7dd4f0; padding-left: 4px; }
    .f-soc { width: 36px; height: 36px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.52); border-radius: 8px; display: grid; place-items: center; font-size: .95rem; transition: var(--ease); }
    .f-soc:hover { background: var(--primary); color: #fff; }
    .f-hr { border-color: rgba(255,255,255,.08); margin: 0; }
    .pay-chip { background: rgba(255,255,255,.08); color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 600; padding: 3px 10px; border-radius: 99px; border: 1px solid rgba(255,255,255,.1); }
    .nl-inp { border: 1.5px solid rgba(255,255,255,.14); border-radius: 8px 0 0 8px; background: rgba(255,255,255,.07); color: #fff; padding: 9px 12px; font-size: .8rem; flex: 1; min-width: 0; }
    .nl-inp::placeholder { color: rgba(255,255,255,.32); }
    .nl-inp:focus { border-color: #7dd4f0; background: rgba(255,255,255,.11); outline: none; }
    .nl-btn { background: var(--primary); color: #fff; border: none; border-radius: 0 8px 8px 0; padding: 9px 14px; cursor: pointer; transition: var(--ease); }
    .nl-btn:hover { background: var(--primary-dark); }

    /* ════════════════════════════════════════
       BACK TO TOP
    ════════════════════════════════════════ */
    #btt {
      position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px;
      background: var(--primary); color: #fff; border: none; border-radius: 50%;
      display: grid; place-items: center; font-size: 1rem;
      box-shadow: 0 4px 18px rgba(26,107,138,.52); cursor: pointer;
      opacity: 0; pointer-events: none; transition: var(--ease); z-index: 999;
    }
    #btt.show { opacity: 1; pointer-events: auto; }
    #btt:hover { background: var(--primary-dark); transform: translateY(-3px); }

    /* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
    @media(max-width:991px){ .hero-img-col{ display:none !important; } .about-wrap img{ height:280px; } .ab-badge{ top:-8px; right:-8px; } .ab-stat{ bottom:-10px; left:-8px; } }
    @media(max-width:768px){ .section-pad{ padding:60px 0; } .hero-swiper{ height:420px; } .hero-title{ font-size:1.9rem; } }
    @media(max-width:480px){ .ab-badge,.ab-stat{ display:none; } }
    
    /*Contact Page */
    
       .section-pad {
            padding: 80px 0;
        }
        
        /* Eyebrow */
        .eyebrow {
            display: inline-block;
            font-family: 'Sora', sans-serif;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 4px 14px;
            border-radius: 99px;
            margin-bottom: 10px;
        }
        
        .eyebrow.on-dark {
            color: #7dd4f0;
            background: rgba(125,212,240,.15);
        }
        
        /* Buttons */
        .btn-sv {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: 'Sora', sans-serif;
            font-size: .85rem;
            font-weight: 600;
            padding: 12px 26px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: var(--ease);
            text-decoration: none;
        }
        
        .btn-sv-primary {
            background: linear-gradient(135deg, #1a6b8a, #218fba);
            color: #fff;
            box-shadow: 0 4px 18px rgba(26,107,138,.38);
        }
        
        .btn-sv-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26,107,138,.5);
            color: #fff;
        }
        
        .btn-sv-accent {
            background: linear-gradient(135deg, #e8a020, #f0b030);
            color: #fff;
        }
        
        .btn-sv-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232,160,32,.4);
            color: #fff;
        }
        
        .btn-sv-outline-w {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,.55);
        }
        
        .btn-sv-outline-w:hover {
            background: rgba(255,255,255,.15);
            border-color: #fff;
            color: #fff;
        }
        
        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(135deg, #072a3d 0%, #1a6b8a 50%, #218fba 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: .4;
        }
        
        .hero-banner .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-banner h1 {
            color: #fff;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .hero-banner .subtitle {
            color: rgba(255,255,255,.78);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 24px;
        }
        
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            color: rgba(255,255,255,.65);
            font-size: .88rem;
        }
        
        .breadcrumb-nav a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            transition: var(--ease);
        }
        
        .breadcrumb-nav a:hover {
            color: #fff;
        }
        
        /* Contact Info Cards */
        .contact-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            transition: var(--ease);
            height: 100%;
        }
        
        .contact-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-6px);
        }
        
        .contact-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-light);
            border-radius: 16px;
            display: grid;
            place-items: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary);
            transition: var(--ease);
        }
        
        .contact-card:hover .contact-icon {
            background: var(--primary);
            color: #fff;
            transform: scale(1.08);
        }
        
        .contact-card h3 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--navy);
        }
        
        .contact-card p {
            color: var(--muted);
            font-size: .95rem;
            margin-bottom: 14px;
        }
        
        .contact-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--ease);
            display: inline-block;
        }
        
        .contact-link:hover {
            color: var(--primary-dark);
            transform: scale(1.05);
        }
        
        /* Form Styles */
        .enquiry-form {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow);
        }
        
        .form-label {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: .88rem;
            color: var(--navy);
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            padding: 12px 16px;
            font-size: .95rem;
            transition: var(--ease);
            font-family: 'DM Sans', sans-serif;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26,107,138,.1);
            outline: none;
        }
        
        .form-control.error, .form-select.error {
            border-color: var(--red);
        }
        
        .error-message {
            color: var(--red);
            font-size: .82rem;
            margin-top: 6px;
            display: none;
        }
        
        .form-control.error + .error-message,
        .form-select.error + .error-message {
            display: block;
        }
        
        .success-message {
            background: var(--green-bg);
            color: var(--green);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            font-weight: 600;
            display: none;
            margin-top: 20px;
        }
        
        .success-message.show {
            display: block;
        }
        
        /* Service Areas */
        .area-badge {
            background: var(--primary-light);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 99px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: .9rem;
            display: inline-block;
            transition: var(--ease);
            border: 1.5px solid transparent;
        }
        
        .area-badge:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: scale(1.05);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #072a3d 0%, var(--slate) 60%, #0e2b44 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            color: #fff;
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        
        .cta-section p {
            color: rgba(255,255,255,.78);
            font-size: 1.08rem;
            margin-bottom: 32px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-pad {
                padding: 60px 0;
            }
            
            .hero-banner {
                padding: 70px 0 60px;
            }
            
            .hero-banner h1 {
                font-size: 2rem;
            }
            
            .hero-banner .subtitle {
                font-size: 1rem;
            }
            
            .enquiry-form {
                padding: 32px 24px;
            }
            
            .cta-section h2 {
                font-size: 1.75rem;
            }
            
            .contact-card {
                padding: 28px 20px;
            }
        }
        
        /*About Page*/
        
         
        .section-pad {
            padding: 80px 0;
        }
        
        /* Eyebrow */
        .eyebrow {
            display: inline-block;
            font-family: 'Sora', sans-serif;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 4px 14px;
            border-radius: 99px;
            margin-bottom: 10px;
        }
        
        .eyebrow.on-dark {
            color: #7dd4f0;
            background: rgba(125,212,240,.15);
        }
        
        /* Buttons */
        .btn-sv {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: 'Sora', sans-serif;
            font-size: .85rem;
            font-weight: 600;
            padding: 12px 26px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: var(--ease);
            text-decoration: none;
        }
        
        .btn-sv-primary {
            background: linear-gradient(135deg, #1a6b8a, #218fba);
            color: #fff;
            box-shadow: 0 4px 18px rgba(26,107,138,.38);
        }
        
        .btn-sv-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26,107,138,.5);
            color: #fff;
        }
        
        .btn-sv-accent {
            background: linear-gradient(135deg, #e8a020, #f0b030);
            color: #fff;
        }
        
        .btn-sv-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232,160,32,.4);
            color: #fff;
        }
        
        .btn-sv-outline-w {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,.55);
        }
        
        .btn-sv-outline-w:hover {
            background: rgba(255,255,255,.15);
            border-color: #fff;
            color: #fff;
        }
        
        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(135deg, #072a3d 0%, #1a6b8a 50%, #218fba 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: .4;
        }
        
        .hero-banner .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-banner h1 {
            color: #fff;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .hero-banner .subtitle {
            color: rgba(255,255,255,.78);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 24px;
        }
        
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            color: rgba(255,255,255,.65);
            font-size: .88rem;
        }
        
        .breadcrumb-nav a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            transition: var(--ease);
        }
        
        .breadcrumb-nav a:hover {
            color: #fff;
        }
        
        /* Story Section */
        .story-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Mission Vision Cards */
        .mv-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px;
            height: 100%;
            transition: var(--ease);
            position: relative;
            overflow: hidden;
        }
        
        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-mid));
            transform: scaleY(0);
            transform-origin: bottom;
            transition: var(--ease);
        }
        
        .mv-card:hover::before {
            transform: scaleY(1);
            transform-origin: top;
        }
        
        .mv-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-6px);
        }
        
        .mv-icon {
            width: 72px;
            height: 72px;
            background: var(--primary-light);
            border-radius: 16px;
            display: grid;
            place-items: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 24px;
            transition: var(--ease);
        }
        
        .mv-card:hover .mv-icon {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1) rotate(5deg);
        }
        
        .mv-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--navy);
        }
        
        .mv-card p {
            color: var(--muted);
            font-size: 1.02rem;
            line-height: 1.8;
        }
        
        /* Feature Cards */
        .feature-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            text-align: center;
            transition: var(--ease);
            height: 100%;
        }
        
        .feature-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-6px);
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-light);
            border-radius: 14px;
            display: grid;
            place-items: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary);
            transition: var(--ease);
        }
        
        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1);
        }
        
        .feature-card h4 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--navy);
        }
        
        .feature-card p {
            color: var(--muted);
            font-size: .92rem;
            line-height: 1.7;
            margin: 0;
        }
        
        /* Stats Counter */
        .stats-section {
            background: linear-gradient(135deg, #072a3d 0%, var(--slate) 60%, #0e2b44 100%);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        
        .stats-section .container {
            position: relative;
            z-index: 2;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-family: 'Sora', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 12px;
            display: block;
        }
        
        .stat-label {
            color: rgba(255,255,255,.75);
            font-size: 1.05rem;
            font-weight: 500;
        }
        
        /* Client Carousel */
        .client-logo-box {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 140px;
            transition: var(--ease);
        }
        
        .client-logo-box:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }
        
        .client-logo-box svg {
            max-width: 180px;
            height: auto;
        }
        
        .swiper-pagination-bullet {
            background: var(--primary);
            opacity: .3;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
        }
        
        /* Values Section */
        .value-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 32px;
        }
        
        .value-icon {
            width: 52px;
            height: 52px;
            background: var(--primary-light);
            border-radius: 12px;
            display: grid;
            place-items: center;
            font-size: 1.35rem;
            color: var(--primary);
            flex-shrink: 0;
        }
        
        .value-content h4 {
            font-size: 1.12rem;
            margin-bottom: 8px;
            color: var(--navy);
        }
        
        .value-content p {
            color: var(--muted);
            font-size: .95rem;
            margin: 0;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #072a3d 0%, var(--slate) 60%, #0e2b44 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            color: #fff;
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        
        .cta-section p {
            color: rgba(255,255,255,.78);
            font-size: 1.08rem;
            margin-bottom: 32px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-pad {
                padding: 60px 0;
            }
            
            .hero-banner {
                padding: 70px 0 60px;
            }
            
            .hero-banner h1 {
                font-size: 2rem;
            }
            
            .hero-banner .subtitle {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .cta-section h2 {
                font-size: 1.75rem;
            }
            
            .mv-card {
                padding: 32px 24px;
            }
            
            .story-image {
                margin-bottom: 32px;
            }
        }
        
        /*Product Ddetails*/
        
        
         .section-pad {
            padding: 80px 0;
        }
        
        /* Eyebrow */
        .eyebrow {
            display: inline-block;
            font-family: 'Sora', sans-serif;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 4px 14px;
            border-radius: 99px;
            margin-bottom: 10px;
        }
        
        /* Buttons */
        .btn-sv {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: 'Sora', sans-serif;
            font-size: .85rem;
            font-weight: 600;
            padding: 12px 26px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: var(--ease);
            text-decoration: none;
        }
        
        .btn-sv-primary {
            background: linear-gradient(135deg, #1a6b8a, #218fba);
            color: #fff;
            box-shadow: 0 4px 18px rgba(26,107,138,.38);
        }
        
        .btn-sv-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26,107,138,.5);
            color: #fff;
        }
        
        .btn-sv-accent {
            background: linear-gradient(135deg, #e8a020, #f0b030);
            color: #fff;
        }
        
        .btn-sv-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232,160,32,.4);
            color: #fff;
        }
        
        .btn-sv-outline-p {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-sv-outline-p:hover {
            background: var(--primary);
            color: #fff;
        }
        
        /* Breadcrumb */
        .breadcrumb-container {
            background: var(--off);
            padding: 20px 0;
        }
        
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--muted);
            font-size: .88rem;
        }
        
        .breadcrumb-nav a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--ease);
        }
        
        .breadcrumb-nav a:hover {
            color: var(--primary-dark);
        }
        
        /* Product Gallery */
        .product-gallery {
            position: sticky;
            top: 20px;
        }
        
        .main-image-container {
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--white);
            margin-bottom: 16px;
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--green);
            color: #fff;
            padding: 6px 16px;
            border-radius: 99px;
            font-family: 'Sora', sans-serif;
            font-size: .75rem;
            font-weight: 700;
            z-index: 10;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 700px;
            object-fit: contain;
            padding: 20px;
        }
        
        .thumb-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        
        .thumb-item {
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 12px;
            cursor: pointer;
            transition: var(--ease);
            background: var(--white);
        }
        
        .thumb-item:hover,
        .thumb-item.active {
            border-color: var(--primary);
        }
        
        .thumb-item img {
            width: 100%;
            height: 80px;
            object-fit: contain;
        }
        
        /* Product Info */
        .product-title {
            font-size: 2rem;
            margin-bottom: 12px;
            color: var(--navy);
        }
        
        .product-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }
        
        .rating-stars {
            color: #fbbf24;
            font-size: 1.1rem;
        }
        
        .review-count {
            color: var(--muted);
            font-size: .9rem;
        }
        
        .stock-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--green-bg);
            color: var(--green);
            padding: 4px 12px;
            border-radius: 99px;
            font-size: .82rem;
            font-weight: 600;
        }
        
        .price-section {
            background: var(--off);
            padding: 24px;
            border-radius: var(--radius-lg);
            margin-bottom: 24px;
        }
        
        .price-label {
            font-size: .85rem;
            color: var(--muted);
            margin-bottom: 8px;
        }
        
        .price-current {
            font-family: 'Sora', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .price-original {
            font-size: 1.2rem;
            color: var(--muted);
            text-decoration: line-through;
            margin-right: 12px;
        }
        
        .price-save {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--green-bg);
            color: var(--green);
            padding: 4px 12px;
            border-radius: 99px;
            font-size: .82rem;
            font-weight: 600;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .quantity-label {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            color: var(--navy);
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }
        
        .qty-btn {
            background: var(--off);
            border: none;
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            cursor: pointer;
            color: var(--primary);
            font-size: 1.2rem;
            transition: var(--ease);
        }
        
        .qty-btn:hover {
            background: var(--primary);
            color: #fff;
        }
        
        .qty-input {
            width: 60px;
            height: 40px;
            border: none;
            text-align: center;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .quick-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        
        /* Features */
        .feature-list {
            list-style: none;
            margin: 20px 0;
        }
        
        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--text);
        }
        
        .feature-list i {
            color: var(--green);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        /* Tabs */
        .product-tabs {
            margin-top: 60px;
        }
        
        .nav-tabs {
            border-bottom: 2px solid var(--border);
        }
        
        .nav-tabs .nav-link {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            color: var(--muted);
            border: none;
            border-bottom: 3px solid transparent;
            padding: 12px 24px;
            margin-bottom: -2px;
            transition: var(--ease);
        }
        
        .nav-tabs .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-tabs .nav-link.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
            background: transparent;
        }
        
        .tab-content {
            padding: 32px 0;
        }
        
        /* Specs Table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .specs-table tr {
            border-bottom: 1px solid var(--border);
        }
        
        .specs-table th,
        .specs-table td {
            padding: 16px;
            text-align: left;
        }
        
        .specs-table th {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            color: var(--navy);
            width: 35%;
            background: var(--off);
        }
        
        .specs-table td {
            color: var(--text);
        }
        
        /* Review Card */
        .review-card {
            background: var(--off);
            border-radius: var(--radius-lg);
            padding: 24px;
            margin-bottom: 20px;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-light);
            display: grid;
            place-items: center;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary);
        }
        
        .reviewer-info h5 {
            font-size: .95rem;
            margin-bottom: 4px;
            color: var(--navy);
        }
        
        .review-date {
            font-size: .82rem;
            color: var(--muted);
        }
        
        .review-rating {
            color: #fbbf24;
            font-size: .95rem;
            margin-bottom: 12px;
        }
        
        .review-text {
            color: var(--text);
            line-height: 1.7;
            font-size: .95rem;
        }
        
        /* Related Products */
        .product-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--ease);
            height: 100%;
        }
        
        .product-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-6px);
        }
        
        .product-card-img {
            height: 220px;
            display: grid;
            place-items: center;
            background: var(--off);
            padding: 20px;
        }
        
        .product-card-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .product-card-body {
            padding: 20px;
        }
        
        .product-card-title {
            font-size: 1.05rem;
            margin-bottom: 12px;
            color: var(--navy);
            font-weight: 600;
        }
        
        .product-card-price {
            font-family: 'Sora', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-pad {
                padding: 60px 0;
            }
            
            .product-title {
                font-size: 1.5rem;
            }
            
            .price-current {
                font-size: 2rem;
            }
            
            .swiper-slide img {
                height: 300px;
                padding: 20px;
            }
            
            .thumb-gallery {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .action-buttons {
                grid-template-columns: 1fr;
            }
            
            .product-gallery {
                position: static;
            }
        }
        
    
    /*privacy-policy*/
     /* ── Hero ── */
    .svpp-hero {
      background: linear-gradient(135deg, var(--svpp-primary-dk) 0%, var(--svpp-primary) 60%, #2a90b4 100%);
      padding: 72px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .svpp-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 80% 20%, rgba(232,160,32,.18) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,.07) 0%, transparent 45%);
    }
    .svpp-hero-inner { position: relative; z-index: 2; text-align: center; }
    .svpp-hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 50px; padding: 6px 18px;
      font-family: var(--svpp-font-head); font-size: .78rem;
      font-weight: 600; letter-spacing: .08em; color: #fff;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .svpp-hero-badge i { color: var(--svpp-accent); font-size: .9rem; }
    .svpp-hero h1 {
      font-family: var(--svpp-font-head);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800; color: #fff; margin-bottom: 14px;
    }
    .svpp-hero p {
      font-size: 1.05rem; color: rgba(255,255,255,.82);
      max-width: 520px; margin: 0 auto 28px;
    }
    .svpp-hero-meta {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
    }
    .svpp-hero-meta span {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: .88rem; color: rgba(255,255,255,.75);
    }
    .svpp-hero-meta span i { color: var(--svpp-accent); }
 
    /* ── Body Layout ── */
    .svpp-body { padding: 60px 0 80px; }
    .svpp-layout { display: flex; gap: 32px; align-items: flex-start; }
 
    /* ── Sidebar TOC ── */
    .svpp-toc { width: 280px; flex-shrink: 0; position: sticky; top: 24px; }
    .svpp-toc-card {
      background: var(--svpp-white); border-radius: var(--svpp-radius);
      border: 1px solid var(--svpp-border); padding: 28px 24px;
      box-shadow: var(--svpp-shadow);
    }
    .svpp-toc-title {
      font-family: var(--svpp-font-head);
      font-size: .82rem; font-weight: 700; letter-spacing: .09em;
      text-transform: uppercase; color: var(--svpp-primary);
      margin-bottom: 18px; padding-bottom: 12px;
      border-bottom: 2px solid var(--svpp-border);
      display: flex; align-items: center; gap: 8px;
    }
    .svpp-toc-list { list-style: none; }
    .svpp-toc-list li { margin-bottom: 4px; }
    .svpp-toc-list a {
      display: flex; align-items: center; gap: 9px;
      padding: 8px 10px; border-radius: 8px;
      font-size: .9rem; color: var(--svpp-text);
      text-decoration: none; transition: all .2s;
    }
    .svpp-toc-list a:hover,
    .svpp-toc-list a.svpp-toc-active {
      background: #eaf4f8; color: var(--svpp-primary); font-weight: 600;
    }
    .svpp-toc-num {
      width: 22px; height: 22px; border-radius: 6px;
      background: var(--svpp-border); color: var(--svpp-primary);
      font-family: var(--svpp-font-head); font-size: .72rem;
      font-weight: 700; display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; transition: background .2s;
    }
    .svpp-toc-list a:hover .svpp-toc-num,
    .svpp-toc-list a.svpp-toc-active .svpp-toc-num {
      background: var(--svpp-primary); color: #fff;
    }
    .svpp-toc-contact {
      margin-top: 22px; padding: 16px;
      background: linear-gradient(135deg, var(--svpp-primary) 0%, #2a90b4 100%);
      border-radius: 10px; text-align: center;
    }
    .svpp-toc-contact p { font-size: .82rem; color: rgba(255,255,255,.85); margin-bottom: 10px; }
    .svpp-toc-contact a {
      display: inline-block; background: var(--svpp-accent);
      color: #fff; font-family: var(--svpp-font-head);
      font-size: .8rem; font-weight: 700; padding: 8px 18px;
      border-radius: 50px; text-decoration: none; transition: opacity .2s;
    }
    .svpp-toc-contact a:hover { opacity: .88; }
 
    /* ── Content ── */
    .svpp-content { flex: 1; min-width: 0; }
 
    .svpp-section {
      background: var(--svpp-white); border-radius: var(--svpp-radius);
      border: 1px solid var(--svpp-border); padding: 36px 40px;
      box-shadow: var(--svpp-shadow); margin-bottom: 24px;
      scroll-margin-top: 24px;
    }
    .svpp-sec-head {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 24px; padding-bottom: 20px;
      border-bottom: 2px solid var(--svpp-border);
    }
    .svpp-sec-icon {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--svpp-primary) 0%, #2a90b4 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: #fff;
      box-shadow: 0 4px 12px rgba(26,107,138,.25);
    }
    .svpp-sec-num {
      font-family: var(--svpp-font-head); font-size: .72rem;
      font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--svpp-accent); margin-bottom: 4px;
    }
    .svpp-sec-title {
      font-family: var(--svpp-font-head); font-size: 1.25rem;
      font-weight: 700; color: var(--svpp-primary); line-height: 1.3;
    }
    .svpp-text {
      font-size: .97rem; line-height: 1.8; color: #4a5568; margin-bottom: 16px;
    }
    .svpp-text:last-child { margin-bottom: 0; }
 
    .svpp-list { list-style: none; margin: 12px 0 16px; padding: 0; }
    .svpp-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: .95rem; line-height: 1.7; color: #4a5568;
      padding: 7px 0; border-bottom: 1px solid #f0f7fb;
    }
    .svpp-list li:last-child { border-bottom: none; }
    .svpp-list li i {
      color: var(--svpp-primary); font-size: .85rem;
      margin-top: 5px; flex-shrink: 0;
    }
 
    .svpp-highlight {
      background: var(--svpp-accent-lt); border-left: 4px solid var(--svpp-accent);
      border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 20px 0;
    }
    .svpp-highlight p { font-size: .93rem; color: #6b4c00; line-height: 1.7; margin: 0; }
    .svpp-highlight strong { color: #4a3300; }
 
    .svpp-info-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0;
    }
    .svpp-info-card {
      background: var(--svpp-bg); border: 1px solid var(--svpp-border);
      border-radius: 10px; padding: 16px 18px;
    }
    .svpp-info-card-label {
      font-family: var(--svpp-font-head); font-size: .72rem;
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--svpp-primary); margin-bottom: 6px;
    }
    .svpp-info-card-val { font-size: .93rem; color: var(--svpp-text); line-height: 1.6; }
 
    .svpp-table-wrap {
      overflow-x: auto; margin: 16px 0;
      border-radius: 10px; border: 1px solid var(--svpp-border);
    }
    .svpp-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
    .svpp-table thead th {
      background: linear-gradient(90deg, var(--svpp-primary) 0%, #2a90b4 100%);
      color: #fff; font-family: var(--svpp-font-head); font-weight: 700;
      padding: 12px 16px; text-align: left; font-size: .82rem; letter-spacing: .04em;
    }
    .svpp-table tbody tr { border-bottom: 1px solid var(--svpp-border); }
    .svpp-table tbody tr:last-child { border-bottom: none; }
    .svpp-table tbody tr:nth-child(even) { background: var(--svpp-bg); }
    .svpp-table td { padding: 11px 16px; color: #4a5568; line-height: 1.6; }
    .svpp-table td:first-child { font-weight: 600; color: var(--svpp-text); }
 
    /* Intro Card */
    .svpp-intro-card {
      background: linear-gradient(135deg, var(--svpp-primary) 0%, var(--svpp-primary-dk) 100%);
      border-radius: var(--svpp-radius); padding: 36px 40px;
      margin-bottom: 24px; color: #fff; position: relative; overflow: hidden;
    }
    .svpp-intro-card h2 {
      font-family: var(--svpp-font-head); font-size: 1.4rem;
      font-weight: 800; margin-bottom: 12px;
    }
    .svpp-intro-card p { font-size: .97rem; line-height: 1.8; opacity: .88; margin-bottom: 12px; }
    .svpp-intro-card p:last-of-type { margin-bottom: 16px; }
    .svpp-intro-date {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
      border-radius: 50px; padding: 5px 14px; font-size: .82rem;
    }
 
    /* CTA */
    .svpp-cta {
      background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ea 100%);
      text-align: center;
    }
    .svpp-cta-icon { font-size: 2.5rem; color: var(--svpp-primary); margin-bottom: 14px; display: block; }
    .svpp-cta h3 { font-family: var(--svpp-font-head); font-size: 1.35rem; font-weight: 700; color: var(--svpp-primary); margin-bottom: 10px; }
    .svpp-cta p { font-size: .96rem; color: var(--svpp-muted); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .svpp-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .svpp-btn-primary {
      background: var(--svpp-primary); color: #fff;
      padding: 12px 28px; border-radius: 50px;
      font-family: var(--svpp-font-head); font-size: .9rem; font-weight: 700;
      text-decoration: none; transition: background .2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .svpp-btn-primary:hover { background: var(--svpp-primary-dk); color: #fff; }
    .svpp-btn-outline {
      background: transparent; color: var(--svpp-primary);
      border: 2px solid var(--svpp-primary); padding: 11px 26px;
      border-radius: 50px; font-family: var(--svpp-font-head);
      font-size: .9rem; font-weight: 700; text-decoration: none;
      transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
    }
    .svpp-btn-outline:hover { background: var(--svpp-primary); color: #fff; }
 
    /* Responsive */
    @media (max-width: 991px) {
      .svpp-layout { flex-direction: column; }
      .svpp-toc { width: 100%; position: static; }
      .svpp-toc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
    }
    @media (max-width: 767px) {
      .svpp-section { padding: 24px 20px; }
      .svpp-intro-card { padding: 28px 20px; }
      .svpp-info-grid { grid-template-columns: 1fr; }
      .svpp-toc-list { grid-template-columns: 1fr; }
      .svpp-hero { padding: 52px 0 44px; }
    }

/*cart page */

    /* ── Hero ── */
    .svct-hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, var(--primary-mid) 100%);
      padding: 52px 0 44px;
      position: relative;
      overflow: hidden;
    }
    .svct-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 80% 20%, rgba(232,160,32,.16) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,.06) 0%, transparent 45%);
    }
    .svct-hero-inner { position: relative; z-index: 2; }
    .svct-breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 14px; flex-wrap: wrap;
    }
    .svct-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
    .svct-breadcrumb a:hover { color: #fff; }
    .svct-breadcrumb i { font-size: .7rem; }
    .svct-breadcrumb span { color: var(--svct-accent); }
    .svct-hero h1 {
      font-family: var(--svct-font-head); font-size: clamp(1.7rem, 4vw, 2.5rem);
      font-weight: 800; color: #fff; margin-bottom: 10px;
      display: flex; align-items: center; gap: 14px;
    }
    .svct-hero h1 .svct-count-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--svct-accent); color: #fff;
      font-family: var(--svct-font-head); font-size: .9rem; font-weight: 700;
    }
    .svct-hero-sub { font-size: .95rem; color: rgba(255,255,255,.75); }

    /* ── Body ── */
    .svct-body { padding: 48px 0 80px; }
    .svct-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }

    /* ── Card Base ── */
    .svct-card {
      background: var(--svct-white); border-radius: var(--svct-radius);
      border: 1px solid var(--svct-border); box-shadow: var(--svct-shadow);
    }
    .svct-card-head {
      padding: 20px 28px; border-bottom: 2px solid var(--svct-border);
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
    }
    .svct-card-head-title {
      font-family: var(--svct-font-head); font-size: 1rem; font-weight: 700;
      color: var(--svct-primary); display: flex; align-items: center; gap: 9px;
    }
    .svct-card-head-title i { font-size: 1.1rem; }
    .svct-clear-btn {
      font-size: .82rem; color: var(--svct-danger); text-decoration: none;
      display: flex; align-items: center; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 0; transition: opacity .2s;
    }
    .svct-clear-btn:hover { opacity: .75; }

    /* ── Cart Items ── */
    .svct-items-list { padding: 8px 0; }

    .svct-item {
      display: flex; gap: 20px; padding: 22px 28px;
      border-bottom: 1px solid #f0f7fb; transition: background .2s;
      position: relative;
    }
    .svct-item:last-child { border-bottom: none; }
    .svct-item:hover { background: #fafcfe; }

    .svct-item-img-wrap {
      width: 100px; height: 100px; border-radius: 12px;
      border: 1px solid var(--svct-border); overflow: hidden;
      background: var(--svct-bg); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .svct-item-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .svct-item-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem; color: var(--svct-border);
    }

    .svct-item-body { flex: 1; min-width: 0; }
    .svct-item-tag {
      display: inline-block; font-size: .7rem; font-weight: 700;
      font-family: var(--svct-font-head); letter-spacing: .07em;
      text-transform: uppercase; color: var(--svct-primary);
      background: var(--svct-primary-lt); border-radius: 4px;
      padding: 2px 8px; margin-bottom: 6px;
    }
    .svct-item-name {
      font-family: var(--svct-font-head); font-size: 1rem;
      font-weight: 700; color: var(--svct-text);
      margin-bottom: 5px; line-height: 1.35;
    }
    .svct-item-brand {
      font-size: .82rem; color: var(--svct-muted); margin-bottom: 10px;
    }
    .svct-item-brand span { color: var(--svct-primary); font-weight: 600; }

    .svct-item-attrs {
      display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
    }
    .svct-item-attr {
      font-size: .78rem; color: var(--svct-muted);
      background: var(--svct-bg); border: 1px solid var(--svct-border);
      border-radius: 5px; padding: 3px 9px;
    }
    .svct-item-attr strong { color: var(--svct-text); }

    .svct-item-actions {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    }

    /* Quantity Stepper */
    .svct-qty {
      display: flex; align-items: center; gap: 0;
      border: 1.5px solid var(--svct-border); border-radius: 8px;
      overflow: hidden; background: var(--svct-bg);
    }
    .svct-qty-btn {
      width: 34px; height: 34px; border: none; background: none;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      color: var(--svct-primary); font-size: 1rem; font-weight: 700;
      transition: background .15s;
    }
    .svct-qty-btn:hover { background: var(--svct-primary-lt); }
    .svct-qty-input {
      width: 42px; height: 34px; border: none; border-left: 1.5px solid var(--svct-border);
      border-right: 1.5px solid var(--svct-border); background: var(--svct-white);
      text-align: center; font-family: var(--svct-font-head); font-size: .9rem;
      font-weight: 700; color: var(--svct-text); outline: none;
    }
    .svct-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

    .svct-wishlist-btn {
      display: flex; align-items: center; gap: 6px;
      font-size: .82rem; color: var(--svct-muted);
      background: none; border: none; cursor: pointer; padding: 0;
      transition: color .2s;
    }
    .svct-wishlist-btn:hover { color: var(--svct-accent); }

    .svct-remove-btn {
      display: flex; align-items: center; gap: 6px;
      font-size: .82rem; color: var(--svct-danger);
      background: none; border: none; cursor: pointer; padding: 0;
      transition: opacity .2s;
    }
    .svct-remove-btn:hover { opacity: .7; }

    /* Item Price column */
    .svct-item-price-col {
      text-align: right; flex-shrink: 0; min-width: 110px;
    }
    .svct-item-price {
      font-family: var(--svct-font-head); font-size: 1.15rem;
      font-weight: 800; color: var(--svct-primary); line-height: 1;
      margin-bottom: 4px;
    }
    .svct-item-mrp {
      font-size: .82rem; color: var(--svct-muted);
      text-decoration: line-through; margin-bottom: 5px;
    }
    .svct-item-save {
      display: inline-block; font-size: .72rem; font-weight: 700;
      color: var(--svct-success); background: #d4f5e9;
      border-radius: 4px; padding: 2px 7px;
    }
    .svct-item-subtotal {
      font-size: .78rem; color: var(--svct-muted);
      margin-top: 10px;
    }
    .svct-item-subtotal strong { color: var(--svct-text); }

    /* ── Coupon Strip ── */
    .svct-coupon-strip {
      padding: 18px 28px;
      border-top: 2px dashed var(--svct-border);
      background: #fafcfe;
      border-radius: 0 0 var(--svct-radius) var(--svct-radius);
    }
    .svct-coupon-form {
      display: flex; gap: 10px;
    }
    .svct-coupon-input {
      flex: 1; padding: 11px 16px;
      border: 1.5px solid var(--svct-border); border-radius: 9px;
      font-family: var(--svct-font-body); font-size: .92rem;
      color: var(--svct-text); outline: none; transition: border-color .2s;
      background: var(--svct-white);
      letter-spacing: .05em; text-transform: uppercase;
    }
    .svct-coupon-input::placeholder { text-transform: none; letter-spacing: 0; }
    .svct-coupon-input:focus { border-color: var(--svct-primary); }
    .svct-coupon-btn {
      padding: 11px 22px; background: var(--svct-primary);
      color: #fff; border: none; border-radius: 9px; cursor: pointer;
      font-family: var(--svct-font-head); font-size: .88rem; font-weight: 700;
      transition: background .2s; white-space: nowrap;
    }
    .svct-coupon-btn:hover { background: var(--svct-primary-dk); }
    .svct-coupon-msg { font-size: .82rem; margin-top: 8px; display: none; }
    .svct-coupon-msg.svct-msg-success { color: var(--svct-success); display: flex; align-items: center; gap: 5px; }
    .svct-coupon-msg.svct-msg-error   { color: var(--svct-danger);  display: flex; align-items: center; gap: 5px; }
    .svct-coupon-applied {
      display: flex; align-items: center; justify-content: space-between;
      background: #d4f5e9; border: 1px solid #a3e4c9;
      border-radius: 9px; padding: 10px 16px; display: none;
    }
    .svct-coupon-applied-text {
      font-size: .88rem; color: var(--svct-success);
      font-family: var(--svct-font-head); font-weight: 700;
      display: flex; align-items: center; gap: 8px;
    }
    .svct-coupon-remove {
      font-size: .8rem; color: var(--svct-danger);
      background: none; border: none; cursor: pointer;
    }

    /* ── Order Summary ── */
    .svct-summary { position: sticky; top: 24px; }
    .svct-summary-body { padding: 24px 24px; }

    .svct-summary-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 0; border-bottom: 1px solid #f0f7fb; font-size: .93rem;
    }
    .svct-summary-row:last-of-type { border-bottom: none; }
    .svct-summary-row .svct-sr-label { color: var(--svct-muted); }
    .svct-summary-row .svct-sr-val { font-weight: 600; color: var(--svct-text); }
    .svct-summary-row .svct-sr-free { color: var(--svct-success); font-weight: 700; }
    .svct-summary-row .svct-sr-discount { color: var(--svct-success); font-weight: 700; }

    .svct-summary-divider {
      height: 2px; background: var(--svct-border); margin: 12px 0;
    }
    .svct-summary-total {
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 0 6px;
    }
    .svct-summary-total .svct-st-label {
      font-family: var(--svct-font-head); font-size: 1rem; font-weight: 700; color: var(--svct-text);
    }
    .svct-summary-total .svct-st-val {
      font-family: var(--svct-font-head); font-size: 1.35rem;
      font-weight: 800; color: var(--svct-primary);
    }
    .svct-summary-savings {
      background: #d4f5e9; border-radius: 8px; padding: 10px 14px;
      font-size: .84rem; color: var(--svct-success); font-weight: 600;
      display: flex; align-items: center; gap: 8px; margin: 4px 0 16px;
    }
    .svct-summary-savings i { font-size: 1rem; }

    .svct-checkout-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 15px; border-radius: 10px;
      background: var(--primary-mid);
      color: #fff; font-family: var(--svct-font-head);
      font-size: 1rem; font-weight: 800; border: none; cursor: pointer;
      transition: filter .2s; text-decoration: none;
      /*box-shadow: 0 6px 20px rgba(232,160,32,.35);*/
    }
    .svct-checkout-btn:hover { filter: brightness(1.06); color: #fff; }
    .svct-checkout-btn i { font-size: 1.1rem; }

    .svct-continue-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 12px; border-radius: 10px; margin-top: 10px;
      background: transparent; color: var(--svct-primary);
      border: 2px solid var(--svct-primary);
      font-family: var(--svct-font-head); font-size: .9rem; font-weight: 700;
      cursor: pointer; transition: all .2s; text-decoration: none;
    }
    .svct-continue-btn:hover { background: var(--svct-primary); color: #fff; }

    /* Trust Badges */
    .svct-trust {
      margin-top: 20px; padding-top: 18px;
      border-top: 1px solid var(--svct-border);
    }
    .svct-trust-title {
      font-size: .72rem; font-family: var(--svct-font-head); font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase; color: var(--svct-muted);
      text-align: center; margin-bottom: 12px;
    }
    .svct-trust-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    }
    .svct-trust-item {
      display: flex; align-items: center; gap: 8px;
      padding: 9px 10px; background: var(--svct-bg);
      border: 1px solid var(--svct-border); border-radius: 8px;
    }
    .svct-trust-item i {
      font-size: 1.1rem; color: var(--svct-primary); flex-shrink: 0;
    }
    .svct-trust-item span {
      font-size: .75rem; color: var(--svct-text); font-weight: 600; line-height: 1.3;
    }

    /* Payment Icons */
    .svct-payment-row {
      margin-top: 16px; text-align: center;
    }
    .svct-payment-label {
      font-size: .72rem; color: var(--svct-muted); margin-bottom: 8px;
    }
    .svct-payment-icons {
      display: flex; justify-content: center; gap: 6px; flex-wrap: wrap;
    }
    .svct-pay-icon {
      padding: 5px 10px; border: 1px solid var(--svct-border);
      border-radius: 5px; background: var(--svct-white);
      font-size: .7rem; font-family: var(--svct-font-head);
      font-weight: 700; color: var(--svct-text); letter-spacing: .03em;
    }

    /* ── Recently Viewed ── */
    .svct-recently { margin-top: 28px; }
    .svct-section-title {
      font-family: var(--svct-font-head); font-size: 1.15rem;
      font-weight: 700; color: var(--svct-text);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .svct-section-title::after {
      content: ''; flex: 1; height: 2px; background: var(--svct-border);
    }

    .svct-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

    .svct-rel-card {
      background: var(--svct-white); border-radius: 12px;
      border: 1px solid var(--svct-border); overflow: hidden;
      transition: box-shadow .2s, transform .2s; cursor: pointer;
    }
    .svct-rel-card:hover { box-shadow: var(--svct-shadow); transform: translateY(-3px); }
    .svct-rel-img {
      width: 100%; height: 140px; object-fit: cover;
      background: var(--svct-bg);
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem; color: var(--svct-border);
    }
    .svct-rel-body { padding: 14px; }
    .svct-rel-name {
      font-family: var(--svct-font-head); font-size: .85rem;
      font-weight: 700; color: var(--svct-text);
      margin-bottom: 6px; line-height: 1.35;
    }
    .svct-rel-brand { font-size: .75rem; color: var(--svct-muted); margin-bottom: 8px; }
    .svct-rel-price {
      font-family: var(--svct-font-head); font-size: .95rem;
      font-weight: 800; color: var(--svct-primary);
    }
    .svct-rel-mrp {
      font-size: .75rem; color: var(--svct-muted); text-decoration: line-through; margin-left: 6px;
    }
    .svct-rel-add {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      width: 100%; margin-top: 10px; padding: 8px;
      background: var(--svct-primary-lt); color: var(--svct-primary);
      border: 1.5px solid var(--svct-primary); border-radius: 7px;
      font-family: var(--svct-font-head); font-size: .78rem; font-weight: 700;
      cursor: pointer; transition: all .2s;
    }
    .svct-rel-add:hover { background: var(--svct-primary); color: #fff; }

    /* ── Empty Cart State ── */
    .svct-empty {
      text-align: center; padding: 80px 40px;
    }
    .svct-empty-icon {
      width: 110px; height: 110px; margin: 0 auto 28px;
      border-radius: 50%; background: var(--svct-primary-lt);
      display: flex; align-items: center; justify-content: center;
      font-size: 3.2rem; color: var(--svct-primary);
    }
    .svct-empty h3 {
      font-family: var(--svct-font-head); font-size: 1.4rem;
      font-weight: 700; color: var(--svct-text); margin-bottom: 10px;
    }
    .svct-empty p { font-size: .96rem; color: var(--svct-muted); margin-bottom: 28px; }
    .svct-empty-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 32px; background: var(--svct-primary);
      color: #fff; border-radius: 50px;
      font-family: var(--svct-font-head); font-size: .95rem; font-weight: 700;
      text-decoration: none; transition: background .2s;
    }
    .svct-empty-btn:hover { background: var(--svct-primary-dk); color: #fff; }

    /* ── Notice Bar ── */
    .svct-notice {
      background: linear-gradient(90deg, var(--svct-primary-lt) 0%, #e0f0f7 100%);
      border: 1px solid var(--svct-border); border-radius: 10px;
      padding: 14px 20px; margin-bottom: 24px;
      display: flex; align-items: center; gap: 12px; font-size: .9rem;
      color: var(--svct-primary-dk);
    }
    .svct-notice i { font-size: 1.15rem; color: var(--svct-primary); flex-shrink: 0; }
    .svct-notice strong { font-family: var(--svct-font-head); }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .svct-layout { grid-template-columns: 1fr 320px; }
      .svct-related-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .svct-layout { grid-template-columns: 1fr; }
      .svct-summary { position: static; }
      .svct-related-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .svct-item { flex-wrap: wrap; }
      .svct-item-price-col { min-width: unset; }
      .svct-item-img-wrap { width: 80px; height: 80px; }
      .svct-card-head, .svct-item, .svct-coupon-strip { padding-left: 18px; padding-right: 18px; }
      .svct-related-grid { grid-template-columns: repeat(2, 1fr); }
      .svct-trust-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 420px) {
      .svct-related-grid { grid-template-columns: 1fr 1fr; }
    }
    
    
    /*checkout*/
    
    /* ── Hero ── */
    .svco-hero {
      background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, #2a90b4 100%);
      padding: 44px 0 36px;
      position: relative; overflow: hidden;
    }
    .svco-hero::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(circle at 80% 20%, rgba(232,160,32,.16) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,.06) 0%, transparent 45%);
    }
    .svco-hero-inner { position: relative; z-index: 2; }
    .svco-breadcrumb {
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
      font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 16px;
    }
    .svco-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
    .svco-breadcrumb a:hover { color: #fff; }
    .svco-breadcrumb i { font-size: .7rem; }
    .svco-breadcrumb span { color: var(--accent-dark); }

    /* Step Tracker */
    .svco-steps {
      display: flex; align-items: center; gap: 0;
    }
    .svco-step {
      display: flex; align-items: center; gap: 10px; cursor: default;
    }
    .svco-step-bubble {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--svco-font-head); font-size: .82rem; font-weight: 800;
      border: 2.5px solid rgba(255,255,255,.3);
      color: rgba(255,255,255,.55); background: rgba(255,255,255,.08);
      transition: all .3s; flex-shrink: 0;
    }
    .svco-step.svco-step-done .svco-step-bubble {
      background: var(--svco-success); border-color: var(--svco-success); color: #fff;
    }
    .svco-step.svco-step-active .svco-step-bubble {
      background: var(--accent-dark); border-color: var(--accent-dark); color: #fff;
      box-shadow: 0 0 0 5px rgba(232,160,32,.25);
    }
    .svco-step-label {
      font-family: var(--svco-font-head); font-size: .82rem;
      color: rgba(255,255,255,.5); font-weight: 600; transition: color .3s;
      white-space: nowrap;
    }
    .svco-step.svco-step-active .svco-step-label { color: #fff; }
    .svco-step.svco-step-done  .svco-step-label { color: rgba(255,255,255,.75); }
    .svco-step-line {
      flex: 1; height: 2px; background: rgba(255,255,255,.18);
      margin: 0 10px; min-width: 28px; max-width: 80px;
      position: relative;
    }
    .svco-step-line::after {
      content: ''; position: absolute; inset: 0;
      background: var(--svco-success); width: 0; transition: width .5s;
    }
    .svco-step-line.svco-line-done::after { width: 100%; }

    /* ── Body ── */
    .svco-body { padding: 40px 0 80px; }
    .svco-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }

    /* ── Card ── */
    .svco-card {
      background: var(--off); border-radius: var(--svco-radius);
      border: 1px solid var(--svco-border); box-shadow: 0 0 0 3px rgba(26,107,138,.12);
      margin-bottom: 24px;
    }
    .svco-card:last-child { margin-bottom: 0; }
    .svco-card-head {
      padding: 18px 28px; border-bottom: 2px solid var(--svco-border);
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
    }
    .svco-card-title {
      font-family: var(--svco-font-head); font-size: .98rem; font-weight: 700;
      color: var(--primary); display: flex; align-items: center; gap: 9px;
    }
    .svco-card-title .svco-step-num {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--primary); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; font-weight: 800; flex-shrink: 0;
    }
    .svco-card-edit {
      font-size: .82rem; color: var(--primary); cursor: pointer;
      background: none; border: none; display: flex; align-items: center; gap: 5px;
      text-decoration: none; font-weight: 600; transition: opacity .2s;
    }
    .svco-card-edit:hover { opacity: .75; }

    .svco-card-body { padding: 28px; }

    /* ── Forms ── */
    .svco-form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px;
    }
    .svco-form-row.svco-col-3 { grid-template-columns: 1fr 1fr 1fr; }
    .svco-form-row.svco-col-1 { grid-template-columns: 1fr; }
    .svco-form-group { display: flex; flex-direction: column; gap: 6px; }
    .svco-label {
      font-family: var(--svco-font-head); font-size: .78rem; font-weight: 700;
      color: var(--svco-text); letter-spacing: .03em;
    }
    .svco-label .svco-req { color: var(--red); margin-left: 2px; }
    .svco-input, .svco-select, .svco-textarea {
      padding: 11px 14px; border: 1.5px solid var(--svco-border);
      border-radius: 9px; font-family: var(--svco-font-body);
      font-size: .93rem; color: var(--svco-text);
      background: var(--white); outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .svco-input:focus, .svco-select:focus, .svco-textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(26,107,138,.12);
    }
    .svco-input.svco-invalid, .svco-select.svco-invalid {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(220,53,69,.10);
    }
    .svco-error-msg {
      font-size: .75rem; color: var(--red);
      display: none; align-items: center; gap: 4px;
    }
    .svco-error-msg.svco-show { display: flex; }
    .svco-select { appearance: none; cursor: pointer; }
    .svco-textarea { resize: vertical; min-height: 80px; }
    .svco-input-icon { position: relative; }
    .svco-input-icon .svco-input { padding-left: 38px; }
    .svco-input-icon i {
      position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
      color: var(--muted); font-size: .95rem;
    }

    /* ── Radio Cards ── */
    .svco-radio-grid { display: flex; flex-direction: column; gap: 12px; }
    .svco-radio-card {
      display: flex; align-items: center; gap: 16px;
      padding: 16px 18px; border: 2px solid var(--svco-border);
      border-radius: 11px; cursor: pointer; transition: all .2s;
      position: relative;
    }
    .svco-radio-card:hover { border-color: var(--primary); background: var(--primary-lt); }
    .svco-radio-card.svco-selected {
      border-color: var(--primary); background: var(--primary-lt);
    }
    .svco-radio-card input[type="radio"] { display: none; }
    .svco-radio-dot {
      width: 20px; height: 20px; border-radius: 50%;
      border: 2px solid var(--svco-border); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: all .2s;
    }
    .svco-selected .svco-radio-dot { border-color: var(--primary); }
    .svco-radio-dot::after {
      content: ''; width: 10px; height: 10px; border-radius: 50%;
      background: var(--primary); opacity: 0; transition: opacity .2s;
    }
    .svco-selected .svco-radio-dot::after { opacity: 1; }
    .svco-radio-icon {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      background: var(--svco-bg); border: 1px solid var(--svco-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--primary); transition: background .2s;
    }
    .svco-selected .svco-radio-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
    .svco-radio-info { flex: 1; }
    .svco-radio-title {
      font-family: var(--svco-font-head); font-size: .92rem;
      font-weight: 700; color: var(--svco-text); margin-bottom: 3px;
    }
    .svco-radio-sub { font-size: .8rem; color: var(--muted); line-height: 1.4; }
    .svco-radio-badge {
      font-size: .72rem; font-weight: 700; font-family: var(--svco-font-head);
      padding: 3px 9px; border-radius: 5px; flex-shrink: 0;
    }
    .svco-badge-free   { background: var(--green); color: var(--off); }
    .svco-badge-express{ background: var(--accent-dark);  color: var(--off); }
    .svco-badge-best   { background: var(--primary); color: var(--off); }
    .svco-badge-cod    { background: #f0f0f5; color: var(--muted); }

    /* ── Payment sub-panel ── */
    .svco-pay-panel {
      margin-top: 16px; padding: 20px;
      background: var(--svco-bg); border-radius: 10px;
      border: 1px solid var(--svco-border); display: none;
    }
    .svco-pay-panel.svco-panel-open { display: block; }
    .svco-pay-panel .svco-form-row { margin-bottom: 14px; }
    .svco-pay-panel .svco-form-row:last-child { margin-bottom: 0; }

    /* UPI input */
    .svco-upi-wrap { display: flex; gap: 10px; }
    .svco-upi-verify {
      padding: 11px 18px; background: var(--primary);
      color: #fff; border: none; border-radius: 9px; cursor: pointer;
      font-family: var(--svco-font-head); font-size: .82rem;
      font-weight: 700; transition: background .2s; white-space: nowrap;
    }
    .svco-upi-verify:hover { background: var(--primary-dk); }

    /* Net banking grid */
    .svco-bank-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    }
    .svco-bank-btn {
      padding: 10px 8px; border: 1.5px solid var(--svco-border);
      border-radius: 8px; background: var(--off);
      font-size: .8rem; color: var(--svco-text); font-weight: 600;
      cursor: pointer; text-align: center; transition: all .2s;
    }
    .svco-bank-btn:hover, .svco-bank-btn.svco-bank-selected {
      border-color: var(--primary); background: var(--primary-lt);
      color: var(--primary);
    }

    /* EMI grid */
    .svco-emi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .svco-emi-btn {
      padding: 12px 8px; border: 1.5px solid var(--svco-border);
      border-radius: 8px; background: var(--off);
      font-size: .8rem; color: var(--svco-text);
      cursor: pointer; text-align: center; transition: all .2s;
    }
    .svco-emi-btn:hover, .svco-emi-btn.svco-emi-selected {
      border-color: var(--primary); background: var(--primary-lt); color: var(--primary);
    }
    .svco-emi-btn .svco-emi-tenure {
      font-family: var(--svco-font-head); font-size: .9rem;
      font-weight: 800; display: block; margin-bottom: 2px;
    }
    .svco-emi-btn .svco-emi-rate { font-size: .72rem; color: var(--muted); }

    /* ── GST Toggle ── */
    .svco-toggle-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; border-top: 1px solid var(--svco-border); margin-top: 16px;
    }
    .svco-toggle-label {
      font-family: var(--svco-font-head); font-size: .88rem; font-weight: 700;
      color: var(--svco-text); display: flex; align-items: center; gap: 8px;
    }
    .svco-toggle-label i { color: var(--primary); }
    .svco-toggle-switch {
      width: 44px; height: 24px; background: var(--svco-border);
      border-radius: 12px; position: relative; cursor: pointer;
      transition: background .25s; border: none; outline: none;
    }
    .svco-toggle-switch::after {
      content: ''; position: absolute; top: 3px; left: 3px;
      width: 18px; height: 18px; border-radius: 50%;
      background: #fff; transition: transform .25s;
      box-shadow: 0 1px 3px rgba(0,0,0,.2);
    }
    .svco-toggle-switch.svco-tog-on { background: var(--primary); }
    .svco-toggle-switch.svco-tog-on::after { transform: translateX(20px); }
    .svco-gst-fields {
      display: none; margin-top: 16px;
    }
    .svco-gst-fields.svco-show { display: block; }

    /* ── Delivery address saved ── */
    .svco-addr-saved {
      display: none; padding: 16px 18px;
      background: var(--primary-lt); border-radius: 10px;
      border: 1.5px solid var(--svco-border);
    }
    .svco-addr-saved.svco-show { display: flex; align-items: flex-start; gap: 14px; }
    .svco-addr-saved-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--primary); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .svco-addr-saved-text {}
    .svco-addr-saved-name {
      font-family: var(--svco-font-head); font-size: .92rem;
      font-weight: 700; color: var(--svco-text); margin-bottom: 3px;
    }
    .svco-addr-saved-line { font-size: .85rem; color: var(--muted); line-height: 1.6; }

    /* ── Proceed Button ── */
    .svco-proceed-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 15px;
      background: linear-gradient(135deg, var(--accent-dark) 0%, #f0b840 100%);
      color: #fff; border: none; border-radius: 10px; cursor: pointer;
      font-family: var(--svco-font-head); font-size: 1rem; font-weight: 800;
      box-shadow: 0 6px 20px rgba(232,160,32,.35); transition: filter .2s;
      margin-top: 4px;
    }
    .svco-proceed-btn:hover { filter: brightness(1.06); }
    .svco-back-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 12px; margin-top: 10px;
      background: transparent; color: var(--primary);
      border: 2px solid var(--primary); border-radius: 10px;
      font-family: var(--svco-font-head); font-size: .9rem; font-weight: 700;
      cursor: pointer; transition: all .2s;
    }
    .svco-back-btn:hover { background: var(--primary); color: #fff; }

    /* ── Order Summary Sidebar ── */
    .svco-summary { position: sticky; top: 24px; }
    .svco-summary-body { padding: 22px 24px; }
    .svco-sum-items { margin-bottom: 18px; }
    .svco-sum-item {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 12px 0; border-bottom: 1px solid #f0f7fb;
    }
    .svco-sum-item:last-child { border-bottom: none; }
    .svco-sum-item-img {
      width: 54px; height: 54px; border-radius: 8px;
      background: var(--svco-bg); border: 1px solid var(--svco-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--svco-border); flex-shrink: 0;
    }
    .svco-sum-item-name {
      font-family: var(--svco-font-head); font-size: .82rem;
      font-weight: 700; color: var(--svco-text);
      margin-bottom: 3px; line-height: 1.3;
    }
    .svco-sum-item-meta { font-size: .75rem; color: var(--muted); }
    .svco-sum-item-price {
      margin-left: auto; font-family: var(--svco-font-head);
      font-size: .88rem; font-weight: 800; color: var(--primary);
      flex-shrink: 0;
    }

    .svco-sum-divider { height: 1px; background: var(--svco-border); margin: 14px 0; }
    .svco-sum-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 7px 0; font-size: .9rem;
    }
    .svco-sum-row .svco-sr-lbl { color: var(--muted); }
    .svco-sum-row .svco-sr-val { font-weight: 600; color: var(--svco-text); }
    .svco-sum-row .svco-sr-green { color: var(--svco-success); font-weight: 700; }
    .svco-sum-row .svco-sr-free  { color: var(--svco-success); font-weight: 700; }

    .svco-sum-total {
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 0 10px;
    }
    .svco-sum-total .svco-st-lbl {
      font-family: var(--svco-font-head); font-size: 1rem; font-weight: 700;
    }
    .svco-sum-total .svco-st-val {
      font-family: var(--svco-font-head); font-size: 1.3rem;
      font-weight: 800; color: var(--primary);
    }
    .svco-sum-savings {
      background: var(--svco-success-lt); border-radius: 8px; padding: 9px 13px;
      font-size: .83rem; color: var(--svco-success); font-weight: 600;
      display: flex; align-items: center; gap: 7px; margin-bottom: 16px;
    }

    .svco-secure-badge {
      display: flex; align-items: center; justify-content: center; gap: 7px;
      font-size: .78rem; color: var(--muted); margin-bottom: 14px;
    }
    .svco-secure-badge i { color: var(--svco-success); font-size: .95rem; }

    .svco-pay-logos {
      display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 4px;
    }
    .svco-pay-logo {
      padding: 5px 10px; border: 1px solid var(--svco-border);
      border-radius: 5px; font-size: .7rem; font-family: var(--svco-font-head);
      font-weight: 700; color: var(--svco-text); background: var(--off);
    }

    /* ── Success Screen ── */
    .svco-success-screen {
      display: none; text-align: center; padding: 60px 40px;
    }
    .svco-success-screen.svco-show { display: block; }
    .svco-success-anim {
      width: 100px; height: 100px; margin: 0 auto 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--svco-success) 0%, #2aad72 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem; color: #fff;
      box-shadow: 0 0 0 0 rgba(26,138,90,.4);
      animation: svco-pulse 1.5s ease-out 2;
    }
    @keyframes svco-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(26,138,90,.4); }
      70%  { box-shadow: 0 0 0 22px rgba(26,138,90,0); }
      100% { box-shadow: 0 0 0 0 rgba(26,138,90,0); }
    }
    .svco-success-screen h2 {
      font-family: var(--svco-font-head); font-size: 1.6rem;
      font-weight: 800; color: var(--svco-text); margin-bottom: 10px;
    }
    .svco-success-screen p { font-size: .97rem; color: var(--muted); margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
    .svco-order-id-chip {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--primary-lt); border: 1.5px solid var(--svco-border);
      border-radius: 50px; padding: 9px 20px; margin-bottom: 28px;
      font-family: var(--svco-font-head); font-size: .9rem;
      font-weight: 700; color: var(--primary);
    }
    .svco-success-details {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
      max-width: 500px; margin: 0 auto 32px; text-align: left;
    }
    .svco-success-detail {
      background: var(--svco-bg); border: 1px solid var(--svco-border);
      border-radius: 10px; padding: 14px 16px;
    }
    .svco-sd-label {
      font-size: .72rem; font-family: var(--svco-font-head);
      font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
      color: var(--muted); margin-bottom: 5px;
    }
    .svco-sd-val {
      font-family: var(--svco-font-head); font-size: .92rem;
      font-weight: 700; color: var(--svco-text); line-height: 1.3;
    }
    .svco-success-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .svco-btn-primary {
      display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
      background: var(--primary); color: #fff; border-radius: 50px;
      font-family: var(--svco-font-head); font-size: .9rem; font-weight: 700;
      text-decoration: none; border: none; cursor: pointer; transition: background .2s;
    }
    .svco-btn-primary:hover { background: var(--primary-dk); color: #fff; }
    .svco-btn-outline {
      display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px;
      background: transparent; color: var(--primary);
      border: 2px solid var(--primary); border-radius: 50px;
      font-family: var(--svco-font-head); font-size: .9rem; font-weight: 700;
      text-decoration: none; cursor: pointer; transition: all .2s;
    }
    .svco-btn-outline:hover { background: var(--primary); color: #fff; }

    /* ── Step panels ── */
    .svco-step-panel { display: none; }
    .svco-step-panel.svco-panel-active { display: block; }

    /* ── Checkbox ── */
    .svco-check-row {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 0; cursor: pointer;
    }
    .svco-checkbox {
      width: 18px; height: 18px; border-radius: 5px;
      border: 2px solid var(--svco-border); background: var(--off);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all .2s;
    }
    .svco-checkbox.svco-checked {
      background: var(--primary); border-color: var(--primary); color: #fff;
    }
    .svco-check-label { font-size: .9rem; color: var(--svco-text); }

    /* ── Responsive ── */
    @media (max-width: 1100px) { .svco-layout { grid-template-columns: 1fr 320px; } }
    @media (max-width: 900px)  {
      .svco-layout { grid-template-columns: 1fr; } 
      .svco-summary { position: static; order: -1; }
      .svco-sum-items { display: none; }
    }
    @media (max-width: 640px) {
      .svco-form-row { grid-template-columns: 1fr; gap: 14px; }
      .svco-form-row.svco-col-3 { grid-template-columns: 1fr 1fr; }
      .svco-card-body { padding: 20px 18px; }
      .svco-card-head { padding: 15px 18px; }
      .svco-bank-grid { grid-template-columns: repeat(2, 1fr); }
      .svco-emi-grid  { grid-template-columns: repeat(2, 1fr); }
      .svco-steps { gap: 0; }
      .svco-step-label { display: none; }
      .svco-success-details { grid-template-columns: 1fr 1fr; }
    }
 