/* ================================================================
   SIVA SURESH AGENCY  —  Style v70
   Design: Clean medical professional (KnyaMed-inspired)
   Font  : Inter
   Accent: Teal #0d9488  |  Navy #0f172a
   ================================================================ */

/* ── 1. CSS Variables ─────────────────────────────────────────── */
:root {
    --primary:       #0d9488;
    --primary-dark:  #0f766e;
    --primary-hover: #14b8a6;
    --primary-bg:    rgba(13,148,136,0.08);
    --navy:          #0f172a;
    --navy-mid:      #1e3a5f;
    --red:           #e63946;
    --yellow:        #f59e0b;
    --green:         #10b981;
    --text:          #0f172a;
    --text-mid:      #374151;
    --text-muted:    #6b7280;
    --text-faint:    #9ca3af;
    --bg:            #ffffff;
    --bg-off:        #f8fafc;
    --bg-teal:       #f0fdfa;
    --bg-dark:       #0f172a;
    --border:        #e2e8f0;
    --border-mid:    #cbd5e1;
    --radius-sm:  8px;
    --radius:     12px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --shadow:    0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
    --font: 'Inter', sans-serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 87.5%; } /* 14px root — makes 1rem=14px, scales all rem values ~12% smaller */
body { font-family: var(--font); font-size: 14px; line-height: 1.7; color: var(--text); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
/* Prevent background scroll when mobile nav is open.
   position:fixed is required for iOS Safari where overflow:hidden alone has no effect. */
body.nav-open { overflow: hidden; position: fixed; width: 100%; left: 0; right: 0; }

/* Semi-transparent backdrop behind the nav drawer — closes on tap (all browsers) */
#navBackdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.45);
    z-index: 9998; /* just below nav-links (9999) */
    -webkit-tap-highlight-color: transparent;
}
#navBackdrop.active { display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { letter-spacing: -0.02em; line-height: 1.2; }
button { cursor: pointer; font-family: var(--font); }
::placeholder { color: var(--text-faint); }
::selection { background: rgba(13,148,136,0.15); color: var(--primary-dark); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 10px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 56px 0; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── 3. Preloader ─────────────────────────────────────────────── */
#preloader { position: fixed; inset: 0; background: var(--bg); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s; }
#preloader.hidden { opacity: 0; pointer-events: none; }
.loader { position: relative; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.loader-ring { position: absolute; inset: 0; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.9s linear infinite; }
.loader-text { font-size: 0.85rem; font-weight: 800; color: var(--primary); letter-spacing: 0.05em; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 4. Buttons ───────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.02em; border: none; cursor: pointer; transition: var(--transition); font-family: var(--font); white-space: nowrap; }
.btn-sm  { padding: 7px 15px; font-size: 0.79rem; border-radius: 7px; }
.btn-lg  { padding: 13px 26px; font-size: 0.94rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }
.btn-primary  { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,0.3); }
.btn-gradient { background: var(--primary); color: #fff; }
.btn-gradient:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,0.3); }
.btn-navy     { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline  { background: transparent; border: 2px solid var(--border-mid); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-dark { background: transparent; border: 1.5px solid var(--border); color: var(--text-mid); }
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.btn-white  { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-glass  { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

/* ── 5. Top Bar ───────────────────────────────────────────────── */
.top-bar { background: var(--navy); color: rgba(255,255,255,0.8); padding: 8px 0; font-size: 0.77rem; font-weight: 500; max-height: 60px; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; opacity: 1; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-info { display: flex; gap: 18px; flex-wrap: wrap; }
.top-info span { display: flex; align-items: center; gap: 6px; }
.top-info i { color: var(--primary-hover); }
.top-social { display: flex; gap: 11px; }
.top-social a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.top-social a:hover { color: var(--primary-hover); }

/* ── 6. Navbar ────────────────────────────────────────────────── */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
/* While mobile nav is open, raise header above all floating elements (backdrops,
   chatbot, WhatsApp z-8000/9000) so nav-links text isn't painted over */
#header.nav-active { z-index: 99999; }
#header.scrolled .top-bar { max-height: 0; opacity: 0; padding: 0; }
#header.scrolled .navbar { background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border), var(--shadow-md); }
.navbar { background: #fff; padding: 13px 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon img { border-radius: 8px; object-fit: contain; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-text { font-weight: 800; font-size: 1.1rem; color: var(--navy); letter-spacing: -0.03em; line-height: 1.1; }
.logo-sub  { font-size: 0.63rem; color: var(--primary); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.logo:hover .logo-text { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li > a { padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 0.88rem; color: var(--text-mid); letter-spacing: 0.01em; display: flex; align-items: center; gap: 5px; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--primary); background: var(--primary-bg); }
a.nav-cliniflex { color: var(--primary) !important; font-weight: 800; position: relative; }
a.nav-cliniflex.active { background: var(--primary-bg) !important; }
a.nav-cliniflex i.fa-award { font-size: 0.82em; color: #f59e0b; animation: cf-badge-flash 2s ease-in-out infinite; }
@keyframes cf-badge-flash { 0%,100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(245,158,11,0)); color: #f59e0b; } 50% { transform: scale(1.2); filter: drop-shadow(0 0 7px rgba(245,158,11,0.75)); color: #fbbf24; } }
/* Signature shimmer on the CliniFlex brand name (nav only) */
.nav-cliniflex .scrub-brand-text { background: linear-gradient(90deg, #0d9488, #14b8a6, #5eead4, #14b8a6, #0d9488); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: cf-shimmer 3s linear infinite; }
@keyframes cf-shimmer { to { background-position: 200% center; } }
.nav-cliniflex-dropdown { position: relative; }
.cliniflex-dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(13,148,136,0.28), 0 3px 10px rgba(15,23,42,0.08); border: 1px solid rgba(13,148,136,0.22); padding: 12px; min-width: 340px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1), visibility 0.25s ease; z-index: 200; pointer-events: none; overflow: hidden; }
.cliniflex-dropdown::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #0d9488, #14b8a6, #5eead4, #14b8a6, #0d9488); background-size: 200% auto; animation: cf-shimmer 3s linear infinite; }
.nav-cliniflex-dropdown:hover .cliniflex-dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
/* Invisible bridge: fills the 4px gap so cursor can travel down without losing :hover */
.cliniflex-dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.cliniflex-dropdown-badge { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 800; color: #fff; letter-spacing: 0.07em; padding: 9px 13px; border-radius: 10px; margin-bottom: 9px; background: linear-gradient(120deg, #0d9488, #14b8a6); text-transform: uppercase; box-shadow: 0 5px 14px rgba(13,148,136,0.32); position: relative; overflow: hidden; }
.cliniflex-dropdown-badge i { color: #fde68a; }
.cliniflex-dropdown-badge::after { content: ''; position: absolute; top: 0; left: -60%; width: 38%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-20deg); animation: cf-sheen 3.2s ease-in-out infinite; }
@keyframes cf-sheen { 0% { left: -60%; } 55%, 100% { left: 130%; } }
.cliniflex-dropdown a { display: flex; align-items: center; gap: 9px; padding: 11px 14px; font-size: 0.9rem; font-weight: 600; color: var(--text-mid); border-radius: 10px; transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease; }
.cliniflex-dropdown a:not(.cliniflex-dd-hero)::before { content: '\f0da'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.72em; color: var(--primary); opacity: 0; transform: translateX(-4px); transition: opacity 0.2s ease, transform 0.2s ease; }
.cliniflex-dropdown a:not(.cliniflex-dd-hero):hover { background: var(--primary-bg); color: var(--primary); padding-left: 18px; }
.cliniflex-dropdown a:not(.cliniflex-dd-hero):hover::before { opacity: 1; transform: translateX(0); }
.nav-arrow { font-size: 0.6rem; transition: var(--transition); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--text-mid); transition: var(--transition); position: relative; }
.nav-icon-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--red); color: #fff; font-size: 0.6rem; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 2px solid #fff; }
.nav-cta { display: none; }
@media (min-width: 1100px) { .nav-cta { display: inline-flex; } }
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

/* Mega Menu — modern redesign */
.nav-dropdown { position: relative; }
/* Hover bridge on the (unclipped) parent li — the .mega-menu has overflow:hidden
   which clips its own ::before bridge, so the cursor lost :hover crossing the gap
   and the dropdown closed. Desktop only. */
@media (min-width: 1025px) {
    .nav-dropdown::before { content: ''; position: absolute; top: 100%; left: -14px; right: -14px; height: 16px; background: transparent; z-index: 99; }
    .nav-cliniflex-dropdown::before { left: -14px; right: -14px; }
}
.mega-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(12px); width: min(94vw, 1100px); max-width: 94vw; background: #fff; border-radius: 18px; box-shadow: 0 26px 74px rgba(15,23,42,0.18), 0 4px 14px rgba(15,23,42,0.06); padding: 30px 30px 24px; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, transform 0.32s cubic-bezier(0.16,1,0.3,1), visibility 0.25s ease; transition-delay: 0.3s; pointer-events: none; z-index: 100; border: 1px solid var(--border); overflow: hidden; }
/* Top accent bar */
.mega-menu::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), #14b8a6, #5eead4); }
/* Invisible bridge fills the gap between the nav item and the menu so the cursor
   can travel down without losing :hover and collapsing the menu */
.mega-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; background: transparent; }
.nav-dropdown:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: all; transition-delay: 0s; transform: translateX(-50%) translateY(0); }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.mega-menu-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 20px; align-items: start; }
.mega-col { position: relative; }
.mega-col h4 { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 12px; padding-bottom: 9px; display: flex; align-items: center; gap: 5px; border-bottom: 1px solid var(--border); letter-spacing: -0.01em; }
.mega-col h4 a { color: inherit; transition: color 0.2s ease; }
.mega-col h4 a:hover { color: var(--primary); }
.mega-col ul { display: flex; flex-direction: column; gap: 1px; }
.mega-col ul li a { display: flex; align-items: center; gap: 7px; padding: 6px 9px; margin: 0 -9px; font-size: 0.8rem; color: var(--text-muted); border-radius: 8px; transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease; }
.mega-col ul li a:hover { color: var(--primary); background: var(--primary-bg); padding-left: 13px; }
/* Bold main sub-heading inside a mega-menu column (e.g. "Male Doctor Uniform") */
.mega-col ul li a.mega-main-item { font-size: 0.79rem; font-weight: 700; color: var(--primary); padding-top: 5px; padding-bottom: 3px; margin-top: 6px; }
.mega-col ul li:first-child a.mega-main-item { margin-top: 0; }
/* Signature (premium) mega column — highlighted like CliniFlex */
.mega-col-signature { padding: 12px 12px 6px; margin: -8px -4px 0; border-radius: 14px; background: linear-gradient(160deg, rgba(251,191,36,0.12), rgba(245,158,11,0.03)); border: 1px solid rgba(245,158,11,0.35); }
.mega-col-signature .mega-col-thumb { background-image: linear-gradient(150deg, #f59e0b, #7c2d12); }
.mega-col-signature .mega-col-thumb i { color: #b45309; }
.mega-sig-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #7c2d12; background: linear-gradient(120deg, #fde68a, #fbbf24); border: 1px solid #f59e0b; border-radius: 20px; padding: 2px 8px; margin-left: 6px; }
.mega-sig-pill i { font-size: 0.58rem; }
/* Visual category icon badge */
.mega-cat-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.15rem; margin-bottom: 12px; flex-shrink: 0; box-shadow: 0 6px 18px rgba(15,23,42,0.18); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.mega-col:hover .mega-cat-icon { transform: translateY(-3px) rotate(-4deg) scale(1.06); }
.mega-cta { display: flex; align-items: stretch; grid-column: 1 / -1; margin-top: 6px; }
.mega-promo { background: linear-gradient(120deg, var(--navy) 0%, #0f3d3a 55%, #134e4a 100%); border-radius: 14px; padding: 16px 26px; color: #fff; display: flex; flex-direction: row; align-items: center; gap: 22px; width: 100%; position: relative; overflow: hidden; }
.mega-promo::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(94,234,212,0.22) 0%, transparent 68%); pointer-events: none; }
.mega-promo-tag { font-size: 0.67rem; font-weight: 800; letter-spacing: 0.08em; background: rgba(94,234,212,0.16); color: #5eead4; padding: 4px 10px; border-radius: 6px; white-space: nowrap; text-transform: uppercase; border: 1px solid rgba(94,234,212,0.28); position: relative; z-index: 1; }
.mega-promo h4 { font-size: 0.95rem; margin-bottom: 0; color: #fff; white-space: nowrap; font-weight: 800; position: relative; z-index: 1; }
.mega-promo p  { font-size: 0.76rem; opacity: 0.82; margin-bottom: 0; flex: 1; position: relative; z-index: 1; }
.mega-promo .btn { position: relative; z-index: 1; }

/* Mega menu — image thumbnails per column (redesign) */
.mega-col-thumb { display: block; height: 92px; border-radius: 13px; background-color: #0f172a; background-image: linear-gradient(150deg, #0d9488, #0f172a); background-size: cover; background-position: center top; margin-bottom: 13px; position: relative; overflow: hidden; box-shadow: 0 7px 20px rgba(15,23,42,0.16); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease; }
.mega-col-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(13,148,136,0.10) 0%, rgba(15,23,42,0.55) 100%); transition: opacity 0.4s ease; }
/* Cross-fade layer for cycling category thumbnails through main product images */
.mega-col-thumb .mct-fade, .cliniflex-dd-hero .mct-fade { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0; transition: opacity 0.7s ease; z-index: 0; }
.mega-col-thumb i { position: absolute; left: 9px; bottom: 9px; z-index: 1; width: 31px; height: 31px; border-radius: 9px; background: rgba(255,255,255,0.95); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.86rem; box-shadow: 0 3px 9px rgba(0,0,0,0.22); }
.mega-col:hover .mega-col-thumb { transform: translateY(-3px) scale(1.02); box-shadow: 0 13px 28px rgba(15,23,42,0.24); }
.mega-col:hover .mega-col-thumb::after { opacity: 0.78; }

/* CliniFlex dropdown hero image (redesign) */
.cliniflex-dropdown a.cliniflex-dd-hero { display: block; height: 118px; padding: 0; border-radius: 13px; background-color: #0f172a; background-image: linear-gradient(120deg, #0d9488, #0f172a); background-size: cover; background-position: center top; position: relative; overflow: hidden; margin-bottom: 9px; box-shadow: 0 8px 20px rgba(13,148,136,0.32); }
.cliniflex-dropdown a.cliniflex-dd-hero:hover { background-color: transparent; padding: 0; transform: translateY(-2px); }
/* "Signature Products" ribbon in the top-right of the hero (plain-text star = font-safe) */
.cliniflex-dropdown a.cliniflex-dd-hero::before { content: '\2605 Signature Products'; display: block; position: absolute; top: 10px; right: 10px; z-index: 2; font-weight: 800; font-size: 0.6rem; letter-spacing: 0.04em; text-transform: uppercase; color: #0f172a; background: linear-gradient(120deg, #fde68a, #fbbf24); padding: 4px 9px; border-radius: 20px; box-shadow: 0 3px 8px rgba(0,0,0,0.25); opacity: 1; transform: none; }
.cliniflex-dd-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,148,136,0.30), rgba(15,23,42,0.78)); }
.cliniflex-dd-hero span { position: absolute; left: 14px; bottom: 12px; z-index: 1; color: #fff; display: flex; flex-direction: column; }
.cliniflex-dd-hero strong { font-size: 1.02rem; font-weight: 800; line-height: 1.1; }
.cliniflex-dd-hero small { font-size: 0.72rem; opacity: 0.92; margin-top: 3px; }
@media (max-width: 1024px) { .mega-col-thumb, .cliniflex-dropdown a.cliniflex-dd-hero { display: none; } }

/* ── 7. Search Overlay — inline dropdown below header ─────────── */
.search-overlay { position: fixed; left: 0; right: 0; top: 65px; z-index: 999; background: #fff; border-bottom: 2px solid var(--border); box-shadow: 0 10px 32px rgba(0,0,0,0.12); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s ease, visibility 0.2s, transform 0.22s ease; }
.search-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-overlay-content { max-width: 720px; margin: 0 auto; padding: 14px 20px 18px; }
.search-overlay-content h3 { display: none; }
.search-close { display: none; }
.search-input-wrap { display: flex; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.search-input-wrap input { flex: 1; padding: 11px 16px; border: none; font-size: 0.93rem; font-family: var(--font); outline: none; background: #fff; color: var(--text); }
.search-input-wrap input:focus { border-color: inherit; box-shadow: none; }
.search-input-wrap button { padding: 11px 18px; background: var(--primary); color: #fff; border: none; cursor: pointer; flex-shrink: 0; font-size: 0.9rem; transition: background 0.2s; }
.search-input-wrap button:hover { background: var(--primary-dark); }
.search-results { margin-top: 8px; max-height: 320px; overflow-y: auto; border-radius: var(--radius-sm); }
.search-result-item { display: flex; align-items: center; gap: 11px; padding: 10px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); text-decoration: none; color: inherit; }
.search-result-item:hover { background: var(--bg-off); }
.search-result-item img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.search-no-results { padding: 14px; text-align: center; color: var(--text-muted); font-size: 0.88rem; }
.search-results { margin-top: 13px; max-height: 270px; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; gap: 11px; padding: 10px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.search-result-item:hover { background: var(--bg-off); }
.search-result-item img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }

/* ── 8. Cart Drawer ───────────────────────────────────────────── */
.cart-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.45); z-index: 9998; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -400px; width: 376px; max-width: 92vw; height: 100vh; background: #fff; z-index: 9999; display: flex; flex-direction: column; transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-xl); }
.cart-drawer.open { right: 0; }
.cart-header { padding: 18px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cart-header h3 i { color: var(--primary); }
.cart-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--text-muted); width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.cart-close:hover { background: var(--bg-off); }
.cart-items { flex: 1; overflow-y: auto; padding: 14px; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.cart-empty i { font-size: 2.4rem; margin-bottom: 11px; opacity: 0.22; display: block; }
.cart-empty p { margin-bottom: 15px; font-size: 0.9rem; }
.cart-item { display: flex; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 56px; height: 56px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--bg-off); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.83rem; font-weight: 600; margin-bottom: 3px; line-height: 1.35; }
.item-meta  { font-size: 0.73rem; color: var(--text-muted); }
.item-price { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-top: 3px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item-qty button { width: 24px; height: 24px; border-radius: 5px; border: 1px solid var(--border); background: none; cursor: pointer; font-size: 0.73rem; display: flex; align-items: center; justify-content: center; }
.cart-item-qty button:hover { border-color: var(--primary); color: var(--primary); }
.cart-item-remove { background: none; border: none; color: var(--text-faint); cursor: pointer; padding: 2px 4px; border-radius: 4px; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 14px 18px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; margin-bottom: 11px; padding-bottom: 11px; border-bottom: 1px solid var(--border); }
.cart-footer .btn { margin-bottom: 7px; }

/* ── 9. Hero ──────────────────────────────────────────────────── */
.hero { position: relative; min-height: 84vh; max-height: 800px; overflow: hidden; display: flex; align-items: center; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; }
.hero-bg { position: absolute; inset: 0; }
.hero-gradient-1 { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0a2540 100%); }
.hero-gradient-2 { background: linear-gradient(135deg, #0f172a 0%, #064e3b 55%, #052e24 100%); }
.hero-gradient-3 { background: linear-gradient(135deg, #1a0f2e 0%, #0f172a 55%, #0c2340 100%); }
.hero-gradient-4 { background: linear-gradient(135deg, #042f2e 0%, #0f3d3a 55%, #134e4a 100%); }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.12); }
.hero-content { position: relative; z-index: 2; color: #fff; padding-top: 20px; padding-bottom: 28px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(13,148,136,0.18); border: 1px solid rgba(13,148,136,0.32); color: #5eead4; padding: 7px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; }
.hero-content h1 { font-size: clamp(1.7rem, 4vw, 2.9rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; max-width: 600px; letter-spacing: -0.04em; }
.hero-content h1 .highlight { color: #5eead4; }
.hero-content > p { font-size: 1.04rem; color: rgba(255,255,255,0.78); max-width: 490px; margin-bottom: 30px; line-height: 1.76; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(255,255,255,0.72); font-weight: 500; }
.trust-item i { color: #5eead4; }
.hero-controls { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 13px; z-index: 10; }
.hero-prev, .hero-next { width: 37px; height: 37px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 0.85rem; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.2); }
.hero-dots { display: flex; gap: 7px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.32); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--primary-hover); width: 22px; border-radius: 4px; }

/* Animated text on slide change */
.hero-slide.active .hero-badge { animation: hero-text-up 0.8s ease 0.2s both; }
.hero-slide.active .hero-content h1 { animation: hero-text-up 0.8s ease 0.35s both; }
.hero-slide.active .hero-content > p { animation: hero-text-up 0.8s ease 0.5s both; }
.hero-slide.active .hero-btns { animation: hero-text-up 0.8s ease 0.65s both; }
.hero-slide.active .hero-trust { animation: hero-text-up 0.8s ease 0.8s both; }
.hero-slide.active .hero-prod-img { animation: hero-img-in 1.05s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
@keyframes hero-text-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-img-in { from { opacity: 0; transform: translateX(46px) scale(0.94); } to { opacity: 1; transform: translateX(0) scale(1); } }

/* ── 10. Section Headers ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 46px; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-bg); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; margin-bottom: 13px; border: 1px solid rgba(13,148,136,0.14); letter-spacing: 0.09em; text-transform: uppercase; }
.section-title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.gradient-text { color: var(--primary); }
.section-desc { color: var(--text-muted); margin-top: 10px; font-size: 0.97rem; max-width: 530px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.section-cta { text-align: center; margin-top: 38px; }

/* ── 11. Category Tiles (NEW) ─────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
/* CliniFlex signature tile */
.category-tile--cliniflex { border: 2px solid var(--primary) !important; box-shadow: 0 4px 20px rgba(13,148,136,0.18) !important; position: relative; }
@media (min-width: 700px) { .category-tile--cliniflex { grid-column: span 2; } .category-tile--cliniflex .cat-tile-img { height: 220px; } }
@media (min-width: 1200px) { .category-tile--cliniflex { grid-column: span 1; } .category-tile--cliniflex .cat-tile-img { height: 185px; } }
.cat-tile-signature-badge { position: absolute; top: 10px; left: 10px; z-index: 3; background: var(--primary); color: #fff; padding: 4px 11px; border-radius: 50px; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 5px; box-shadow: 0 2px 10px rgba(13,148,136,0.4); }
.category-tile--cliniflex .cat-tile-body { background: linear-gradient(135deg, var(--navy) 0%, #1b4068 100%); }
.category-tile--cliniflex .cat-tile-icon { background: rgba(13,148,136,0.2); color: #5eead4; }
.category-tile--cliniflex .cat-tile-body h3 { color: #fff; }
.category-tile--cliniflex .cat-tile-body p { color: rgba(255,255,255,0.72); }
.category-tile--cliniflex .cat-tile-link { color: #5eead4; }

/* New image-backed tiles */
.category-tile { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.3s ease; background: var(--bg); text-decoration: none; }
.category-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-tile-img { height: 185px; background-color: #0f172a; background-image: linear-gradient(150deg, #134e4a, #0f172a); background-size: cover; background-position: center top; position: relative; overflow: hidden; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease; will-change: transform; }
.category-tile:hover .cat-tile-img { transform: scale(1.09); filter: saturate(1.12) brightness(1.04); }
/* Cross-fade layer for rotating category images */
.cat-tile-img .cti-fade { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0; z-index: 1; transition: opacity 0.9s ease; }
.cat-tile-img::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.58) 100%); transition: opacity 0.5s ease; }
.category-tile:hover .cat-tile-img::after { opacity: 0.72; }
.cat-tile-body { padding: 17px 18px 19px; flex: 1; display: flex; flex-direction: column; }
.cat-tile-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--primary-bg); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; margin-bottom: 10px; }
.cat-tile-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.01em; }
.cat-tile-body p { font-size: 0.78rem; color: var(--text-muted); flex: 1; line-height: 1.5; }
.cat-tile-link { display: inline-flex; align-items: center; gap: 5px; color: var(--primary); font-size: 0.8rem; font-weight: 700; margin-top: 11px; }
.cat-tile-link i { transition: transform 0.2s ease; font-size: 0.75rem; }
.category-tile:hover .cat-tile-link i { transform: translateX(4px); }

/* Legacy .category-card (used in other pages) */
.category-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 26px 16px; border-radius: var(--radius-lg); transition: var(--transition); border: 1px solid var(--border); background: var(--bg-off); }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(13,148,136,0.18); background: #fff; }
.cat-gradient-1,.cat-gradient-2,.cat-gradient-3,.cat-gradient-4,.cat-gradient-5,.cat-gradient-6 { background: var(--bg-off); }
.cat-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); margin-bottom: 13px; }
.category-card h3 { font-size: 0.93rem; font-weight: 700; margin-bottom: 5px; }
.category-card p  { font-size: 0.77rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.55; }
.cat-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; opacity: 0; transform: translateY(7px); transition: var(--transition); }
.category-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ── 12. Stats ────────────────────────────────────────────────── */
.stats { background: var(--navy); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-item { text-align: center; color: #fff; }
.stat-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(13,148,136,0.16); border: 1px solid rgba(13,148,136,0.22); display: flex; align-items: center; justify-content: center; margin: 0 auto 13px; font-size: 1.15rem; color: #5eead4; }
.stat-number { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 4px; }
.stat-item p { font-size: 0.81rem; color: rgba(255,255,255,0.62); font-weight: 500; letter-spacing: 0.04em; }

/* ── 13. Shop Grid ────────────────────────────────────────────── */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.shop-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); position: relative; }
.shop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.shop-card-badge { position: absolute; top: 11px; left: 11px; background: var(--primary); color: #fff; font-size: 0.66rem; padding: 3px 10px; border-radius: 50px; font-weight: 700; z-index: 2; letter-spacing: 0.06em; text-transform: uppercase; }
.shop-card-wishlist { position: absolute; top: 11px; right: 11px; width: 33px; height: 33px; border-radius: 50%; background: rgba(255,255,255,0.92); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 2; transition: var(--transition); color: var(--text-muted); }
.shop-card-wishlist:hover { color: var(--red); transform: scale(1.1); }
.shop-card-wishlist.liked i { color: var(--red); }
.shop-card-image { position: relative; padding: 14px 14px 0; background: var(--bg-off); overflow: hidden; }
.shop-card-image img { width: 100%; height: 205px; object-fit: contain; border-radius: var(--radius-sm); transition: transform 0.45s ease, opacity 0.3s ease; }
.shop-card:hover .shop-card-image img { transform: scale(1.05); }
/* Hover image auto-scroll dots */
.card-img-dots { position: absolute; left: 0; right: 0; bottom: 8px; display: flex; gap: 5px; justify-content: center; pointer-events: none; opacity: 0; transition: opacity 0.25s ease; z-index: 3; }
.shop-card-image.has-hover-cycle:hover .card-img-dots { opacity: 1; }
.card-img-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(15,23,42,0.28); transition: background 0.2s ease, transform 0.2s ease; }
.card-img-dots i.on { background: var(--primary); transform: scale(1.35); }
/* Quick-add hover button removed — Add/Buy buttons in the card footer are sufficient */
.shop-card-quick { display: none !important; }
.shop-card-body { padding: 13px 15px 15px; cursor: pointer; }
.shop-card-category { font-size: 0.66rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.shop-card-tag { display: inline-block; font-size: 0.67rem; padding: 2px 8px; border-radius: 5px; margin-top: 5px; font-weight: 600; }
.shop-card-tag.male   { background: #eff6ff; color: #1d4ed8; }
.shop-card-tag.female { background: #fdf2f8; color: #9d174d; }
.shop-card-tag.unisex { background: #f0fdfa; color: #0f766e; }
.shop-card-body h4 { font-size: 0.89rem; margin: 8px 0 5px; font-weight: 600; line-height: 1.38; letter-spacing: -0.01em; }
.shop-card-rating { display: flex; align-items: center; gap: 3px; margin-bottom: 8px; }
.shop-card-rating i { color: var(--yellow); font-size: 0.7rem; }
.shop-card-rating span { font-size: 0.71rem; color: var(--text-muted); margin-left: 2px; }
.shop-card-rating .rating-val { font-size: 0.75rem; font-weight: 700; color: var(--yellow); margin-right: 1px; }
.shop-card-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 11px; }
.shop-card-price .price { font-size: 1.16rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.025em; }
.shop-card-price .old-price { font-size: 0.78rem; color: var(--text-faint); text-decoration: line-through; }
.shop-card-footer { display: flex; gap: 7px; }
.shop-card-footer .btn { flex: 1; justify-content: center; font-size: 0.76rem; padding: 8px 9px; border-radius: var(--radius-sm); }
.out-of-stock-card { opacity: 0.7; }

/* Shop toolbar */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 13px; margin-bottom: 26px; padding-bottom: 17px; border-bottom: 1px solid var(--border); }
.shop-filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 50px; background: #fff; cursor: pointer; font-size: 0.78rem; font-weight: 600; transition: var(--transition); font-family: var(--font); letter-spacing: 0.02em; color: var(--text-mid); white-space: nowrap; }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: 0 3px 10px rgba(13,148,136,0.12); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 14px rgba(13,148,136,0.30); font-weight: 700; }
.filter-btn.active::before { content: '✓ '; font-weight: 700; }
/* Sub-category chip row (appears under the main chips when a category has sub-categories) */
.shop-subfilters { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); animation: subfadein .25s ease; }
@keyframes subfadein { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.subfilter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1.5px solid var(--border); border-radius: 50px; background: var(--surface, #f8fafc); cursor: pointer; font-size: 0.74rem; font-weight: 600; transition: var(--transition); font-family: var(--font); color: var(--text-mid); white-space: nowrap; }
.subfilter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.subfilter-btn.active { background: rgba(13,148,136,0.12); color: var(--primary-dark, #0f766e); border-color: var(--primary); font-weight: 700; }
.shop-sort select { padding: 7px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.83rem; font-family: var(--font); cursor: pointer; outline: none; }
.shop-sort select:focus { border-color: var(--primary); }
.shop-results-info { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 17px; }

/* Color Swatches */
.color-swatches { display: flex; align-items: center; gap: 5px; margin: 6px 0; }
.color-swatch { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; transition: var(--transition); }
.color-swatch:hover, .color-swatch.active { border-color: var(--primary); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary); }
.color-swatch-more { min-width: 22px; height: 20px; padding: 0 5px; border-radius: 11px; border: 1px solid var(--border); background: var(--bg-off); color: var(--text-muted); font-size: 0.62rem; font-weight: 700; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: var(--transition); }
.color-swatch-more:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.color-name { font-size: 0.69rem; color: var(--text-muted); }

/* ── 14. Why Choose Us ────────────────────────────────────────── */
.why-us { background: var(--bg-off); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-us-content .section-title { text-align: left; margin-bottom: 12px; }
.why-us-content > p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.why-features { display: flex; flex-direction: column; gap: 15px; margin-bottom: 26px; }
.why-feature { display: flex; gap: 13px; align-items: flex-start; }
.why-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.why-feature h4 { font-size: 0.91rem; font-weight: 700; margin-bottom: 2px; }
.why-feature p  { font-size: 0.81rem; color: var(--text-muted); line-height: 1.6; }
.why-us-visual { position: relative; height: 340px; }
.why-card { position: absolute; background: #fff; border-radius: var(--radius); padding: 13px 17px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 9px; font-size: 0.83rem; font-weight: 600; border: 1px solid var(--border); }
.why-card i { color: var(--primary); font-size: 1.05rem; }
.why-card-1 { top: 18px; left: 8px; animation: float 3s ease-in-out infinite; }
.why-card-2 { top: 50%; right: 8px; animation: float 3s ease-in-out infinite 0.5s; }
.why-card-3 { bottom: 18px; left: 25px; animation: float 3s ease-in-out infinite 1s; }
.why-center-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 106px; height: 106px; border-radius: 50%; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: var(--shadow-lg); }
.exp-number { font-size: 1.85rem; font-weight: 900; line-height: 1; }
.exp-text { font-size: 0.77rem; opacity: 0.72; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── 15. Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--bg-off); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(295px, 1fr)); gap: 20px; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-stars { color: var(--yellow); margin-bottom: 11px; font-size: 0.86rem; display: flex; gap: 2px; }
.testimonial-card > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.78; margin-bottom: 17px; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.95rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.87rem; font-weight: 700; }
.testimonial-author span  { font-size: 0.75rem; color: var(--text-muted); }

/* ── 16. CTA Banner ───────────────────────────────────────────── */
.cta-banner { background: var(--navy); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -90px; right: -90px; width: 320px; height: 320px; border-radius: 50%; background: rgba(13,148,136,0.07); pointer-events: none; }
.cta-banner::after  { content: ''; position: absolute; bottom: -70px; left: -70px; width: 240px; height: 240px; border-radius: 50%; background: rgba(13,148,136,0.05); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); color: #fff; margin-bottom: 11px; font-weight: 800; letter-spacing: -0.03em; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 26px; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ── 17. Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-about p { font-size: 0.86rem; margin: 13px 0; line-height: 1.74; }
.footer-about .logo-text { color: #fff; }
.footer-about .logo-sub  { color: var(--primary-hover); }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 33px; height: 33px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 15px; padding-bottom: 9px; border-bottom: 1.5px solid var(--primary); display: inline-block; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: rgba(255,255,255,0.58); font-size: 0.85rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--primary-hover); padding-left: 3px; }
.footer-contact p { color: rgba(255,255,255,0.62); font-size: 0.83rem; margin-bottom: 9px; display: flex; align-items: flex-start; gap: 7px; line-height: 1.55; }
.footer-contact p i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.62); }
.footer-contact a:hover { color: var(--primary-hover); }
.footer-payment { margin-top: 15px; }
.footer-payment h4 { font-size: 0.77rem; margin-bottom: 7px; color: rgba(255,255,255,0.45); border: none; padding: 0; text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.payment-icons { display: flex; gap: 9px; font-size: 1.4rem; color: rgba(255,255,255,0.45); }
.footer-bottom { padding: 17px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 9px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 17px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--primary-hover); }

/* ── 18. Inner Page Heroes — Redesign ──────────────────────────── */

/* ─ Background gradients ─ */
.about-hero-bg      { background: linear-gradient(135deg, #0d1b35 0%, #1e3a5f 55%, #0a2540 100%); }
.categories-hero-bg { background: linear-gradient(135deg, #0a1f14 0%, #064e3b 55%, #052e24 100%); }
.services-hero-bg   { background: linear-gradient(135deg, #120b24 0%, #1e1045 55%, #0c1a38 100%); }
.contact-hero-bg    { background: linear-gradient(135deg, #0a1f14 0%, #134e2f 55%, #0a2018 100%); }

/* ─ Base inner hero ─ */
.inner-hero {
  position: relative;
  padding: 32px 0 28px;
  overflow: hidden;
}
.inner-hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Subtle dot-grid texture overlay */
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
  pointer-events: none;
}

/* Glowing orb top-right */
.inner-hero-glow {
  position: absolute;
  right: 6%;
  top: -20%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--ih-glow, rgba(45,212,191,0.14));
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

/* Bottom hairline separator */
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  z-index: 3;
}

/* ─ Layout ─ */
.inner-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.inner-hero-text { flex: 1; min-width: 0; }

/* ─ Breadcrumb ─ */
.inner-hero-crumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.52);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.inner-hero-crumb a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.inner-hero-crumb a:hover { color: #5eead4; }
.inner-hero-crumb i { font-size: 0.44rem; opacity: 0.7; }

/* ─ Accent badge ─ */
.inner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 13px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: var(--ih-badge-bg, rgba(45,212,191,0.12));
  border: 1px solid var(--ih-badge-border, rgba(45,212,191,0.28));
  color: var(--ih-badge-color, #5eead4);
}

/* ─ Title ─ */
.inner-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 13px;
}

/* ─ Subtitle ─ */
.inner-hero-sub {
  font-size: 0.91rem;
  color: rgba(255,255,255,0.66);
  max-width: 480px;
  line-height: 1.72;
  margin: 0;
}

/* ─ Decorative icon panel ─ */
.inner-hero-deco {
  flex-shrink: 0;
  width: 116px;
  height: 116px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.9rem;
  color: var(--ih-deco-color, rgba(255,255,255,0.22));
  transform: rotate(8deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ─ Per-page theme variables ─ */
.inner-hero--about {
  --ih-glow: rgba(59,130,246,0.16);
  --ih-badge-bg: rgba(59,130,246,0.14);
  --ih-badge-border: rgba(59,130,246,0.32);
  --ih-badge-color: #93c5fd;
  --ih-deco-color: rgba(147,197,253,0.28);
}
.inner-hero--categories {
  --ih-glow: rgba(16,185,129,0.18);
  --ih-badge-bg: rgba(16,185,129,0.14);
  --ih-badge-border: rgba(16,185,129,0.32);
  --ih-badge-color: #6ee7b7;
  --ih-deco-color: rgba(110,231,183,0.28);
}
.inner-hero--services {
  --ih-glow: rgba(139,92,246,0.18);
  --ih-badge-bg: rgba(139,92,246,0.14);
  --ih-badge-border: rgba(139,92,246,0.32);
  --ih-badge-color: #c4b5fd;
  --ih-deco-color: rgba(196,181,253,0.28);
}
.inner-hero--contact {
  --ih-glow: rgba(20,184,166,0.18);
  --ih-badge-bg: rgba(20,184,166,0.14);
  --ih-badge-border: rgba(20,184,166,0.32);
  --ih-badge-color: #5eead4;
  --ih-deco-color: rgba(94,234,212,0.28);
}

/* ─ Signature badge (categories page) ─ */
.ph-signature-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; background: linear-gradient(120deg,#fde68a,#fbbf24); color: #0f172a; padding: 6px 14px; border-radius: 50px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; box-shadow: 0 4px 14px rgba(251,191,36,0.3); }

/* ─ Mobile ─ */
@media (max-width: 768px) {
  .inner-hero { padding: 22px 0 20px; }
  .inner-hero-deco { display: none; }
  .inner-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ─ Categories compact tight spacing ─ */
.shop-section--tight { padding-top: 28px; }
@media (max-width: 768px) { .shop-section--tight { padding-top: 16px; } }

/* ── 19. Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 13px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 5px; color: var(--text-mid); letter-spacing: 0.02em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; font-family: var(--font); color: var(--text); outline: none; transition: var(--transition); background: #fafbfc; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); background: #fff; }
.form-group.has-error input, .form-group.has-error textarea { border-color: var(--red); }
.field-error { display: block; font-size: 0.73rem; color: var(--red); margin-top: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }

/* ── 20. Modals ───────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.58); backdrop-filter: blur(4px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); padding: 20px; }
.modal-overlay.active { opacity: 1; visibility: visible; }
/* Lock background scroll while a full-screen modal is open (prevents mobile background scroll) */
body.modal-open { overflow: hidden; touch-action: none; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 590px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-overlay.active .modal { animation: modal-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes modal-in { from { opacity: 0; transform: translateY(22px) scale(0.96); } to { opacity: 1; transform: none; } }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 17px 21px; border-bottom: 1px solid var(--border); }
.modal-header h3 { display: flex; align-items: center; gap: 7px; font-size: 1rem; font-weight: 700; }
.modal-header h3 i { color: var(--primary); }
.modal-close { background: none; border: none; font-size: 1.05rem; cursor: pointer; color: var(--text-muted); width: 30px; height: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--bg-off); }
.modal-body { padding: 21px; }
.checkout-steps { display: flex; justify-content: center; gap: 9px; margin-bottom: 20px; }
.step { display: flex; align-items: center; gap: 5px; font-size: 0.79rem; color: var(--text-muted); }
.step span { width: 22px; height: 22px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.72rem; }
.step.active { color: var(--primary); font-weight: 600; }
.step.active span { background: var(--primary); color: #fff; }
.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-step h4 { margin-bottom: 14px; font-size: 0.97rem; font-weight: 700; }
.payment-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 17px; }
.payment-option { display: flex; align-items: center; gap: 11px; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s; }
.payment-option:hover { border-color: var(--primary); transform: translateX(3px); box-shadow: 0 2px 8px rgba(13,148,136,0.1); }
.payment-option:has(input:checked) { border-color: var(--primary); background: rgba(13,148,136,0.05); box-shadow: 0 0 0 3px rgba(13,148,136,0.12); }
.payment-option--highlight { border-color: var(--primary); background: rgba(13,148,136,0.04); }
.payment-option--highlight:has(input:checked) { box-shadow: 0 0 0 3px rgba(13,148,136,0.18); }
.po-content { display: flex; align-items: center; gap: 9px; }
.po-content i { font-size: 1.1rem; color: var(--primary); }
.po-sub { display: block; font-size: 0.7rem; color: #64748b; line-height: 1.2; margin-top: 2px; font-weight: 400; }
.checkout-btns { display: flex; gap: 9px; margin-top: 17px; }
.checkout-btns .btn { flex: 1; justify-content: center; }

/* ── Payment processing overlay (shown while Razorpay loads) ── */
@keyframes rzp-spin { to { transform: rotate(360deg); } }
@keyframes rzp-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes rzp-pulse-ring { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.12); opacity: 0.4; } }
#rzpPaymentOverlay { display: none; position: fixed; inset: 0; z-index: 99999; background: rgba(15,23,42,0.72); backdrop-filter: blur(6px); align-items: center; justify-content: center; animation: rzp-fade-in 0.2s ease; }
#rzpPaymentOverlay.active { display: flex; }
.rzp-overlay-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.rzp-spinner-wrap { position: relative; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.rzp-spinner-wrap::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 3px solid rgba(13,148,136,0.2); animation: rzp-pulse-ring 1.4s ease-in-out infinite; }
.rzp-spinner { width: 48px; height: 48px; border: 3.5px solid rgba(255,255,255,0.15); border-top-color: #0d9488; border-radius: 50%; animation: rzp-spin 0.7s linear infinite; }
.rzp-overlay-text { color: #fff; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em; opacity: 0.9; }
.rzp-overlay-sub { color: rgba(255,255,255,0.55); font-size: 0.75rem; }

/* ── Success modal icon animation ── */
@keyframes success-pop { 0% { transform: scale(0.5); opacity: 0; } 70% { transform: scale(1.18); } 100% { transform: scale(1); opacity: 1; } }
@keyframes success-glow { 0%,100% { filter: drop-shadow(0 0 0px #16a34a); } 50% { filter: drop-shadow(0 0 14px rgba(22,163,74,0.55)); } }
#successModal.active .success-icon { animation: success-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both, success-glow 2s ease 0.5s infinite; }
.order-summary { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px; margin-bottom: 13px; }
.os-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.86rem; border-bottom: 1px solid var(--border); }
.os-item:last-child { border-bottom: none; }
.os-total { display: flex; justify-content: space-between; padding: 9px 0 0; font-weight: 700; font-size: 0.97rem; border-top: 2px solid var(--primary); margin-top: 4px; }
.modal-success .success-content { text-align: center; padding: 34px; }
.success-icon { font-size: 3rem; color: var(--green); margin-bottom: 13px; display: block; }
.modal-success h3 { font-size: 1.2rem; margin-bottom: 7px; }
.order-id { margin: 9px 0 17px; color: var(--text-muted); font-size: 0.88rem; }

/* ── 21. Product Detail Modal ─────────────────────────────────── */
.product-detail-modal { max-width: 1120px; overflow: hidden; padding: 0; }
.pd-close { position: absolute; top: 14px; right: 14px; z-index: 20; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.92); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.88rem; color: var(--text-mid); transition: var(--transition); cursor: pointer; }
.pd-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.pd-grid { display: grid; grid-template-columns: 52% 1fr; gap: 0; max-height: 88vh; overflow: hidden; }
.pd-image { position: relative; background: var(--bg-off); border-radius: var(--radius); padding: 18px; display: flex; align-items: center; justify-content: center; min-height: 240px; }
.pd-image img { max-height: 270px; object-fit: contain; }

/* ── Product Detail Gallery ─────────────────────────────────── */
.pd-image-gallery { display: flex; flex-direction: row; gap: 10px; align-items: flex-start; padding: 28px 18px; background: var(--bg-off); border-right: 1px solid var(--border); overflow-y: auto; max-height: 88vh; }
.pd-main-img { position: relative; background: #fff; border-radius: var(--radius); padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 400px; overflow: hidden; cursor: zoom-in; flex: 1; }
.pd-main-img img { max-height: 460px; object-fit: contain; transition: transform 0.25s ease; width: 100%; }
.pd-main-img:hover img { transform: scale(1.04); }
.pd-expand-btn { position: absolute; top: 10px; right: 10px; background: rgba(15,23,42,0.55); color: #fff; border: none; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; opacity: 0; transition: opacity 0.2s; backdrop-filter: blur(4px); z-index: 2; }
.pd-main-img:hover .pd-expand-btn { opacity: 1; }
.pd-no-img { width: 100%; min-height: 280px; display: flex; align-items: center; justify-content: center; color: var(--border-mid); font-size: 3rem; }
/* Thumbnails strip */
.pd-thumbnails { display: flex; flex-direction: column; gap: 8px; width: 76px; flex-shrink: 0; }
.pd-thumb { width: 76px; height: 76px; border-radius: 8px; border: 2px solid var(--border); background-size: cover; background-position: center; cursor: pointer; transition: border-color 0.2s, transform 0.15s; flex-shrink: 0; }
.pd-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-light, #ccfbf1); }
.pd-thumb:hover { border-color: var(--primary); }
@media (max-width: 768px) { .pd-image-gallery { flex-direction: column; } .pd-thumbnails { flex-direction: row; width: 100%; flex-wrap: wrap; } .pd-thumb { width: 60px; height: 60px; } }
.pd-badge { position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff; padding: 3px 9px; border-radius: 50px; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
/* Info panel */
.pd-info { padding: 30px 28px; overflow-y: auto; max-height: 88vh; }
.pd-category { text-transform: uppercase; font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.12em; font-weight: 700; }
.pd-title { font-size: 1.4rem; margin: 8px 0 10px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }
.pd-title-color { font-size: 1rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0; }
.pd-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.pd-rating i { color: var(--yellow); font-size: 0.85rem; }
.pd-rating span { font-size: 0.82rem; color: var(--text-muted); margin-left: 5px; }
.pd-rating .rating-val { font-size: 1rem; font-weight: 700; color: var(--yellow); margin-right: 2px; }
.pd-price { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.pd-current-price { font-size: 1.7rem; font-weight: 900; color: var(--primary-dark); letter-spacing: -0.03em; }
.pd-old-price { font-size: 0.93rem; color: var(--text-faint); text-decoration: line-through; }
.pd-discount { background: #fff7ed; color: #c2410c; font-size: 0.73rem; padding: 2px 6px; border-radius: 4px; font-weight: 700; }
.pd-description { font-size: 0.86rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 15px; }
.pd-description p { margin: 0 0 8px; }
.pd-description p:last-child { margin-bottom: 0; }
.pd-description ul { margin: 6px 0 8px; padding-left: 22px; list-style: disc; }
.pd-description li { margin-bottom: 4px; display: list-item; }
.pd-size-section h4, .pd-qty-section h4, .pd-color-section h4 { font-size: 0.86rem; font-weight: 700; margin-bottom: 8px; }
.pd-required { color: var(--red); }
.pd-sizes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.pd-size-btn { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 6px; background: none; cursor: pointer; font-size: 0.79rem; font-weight: 600; transition: var(--transition); font-family: var(--font); }
.pd-size-btn:hover { border-color: var(--primary); color: var(--primary); }
.pd-size-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pd-size-error { color: var(--red); font-size: 0.73rem; }
.pd-color-section { margin-bottom: 13px; }
.pd-color-swatches { display: flex; gap: 7px; flex-wrap: wrap; }
.pd-color-swatch { width: 27px; height: 27px; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; transition: var(--transition); }
.pd-color-swatch:hover, .pd-color-swatch.active { border-color: var(--primary); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary); }
.pd-color-name { font-size: 0.76rem; color: var(--text-muted); margin-top: 5px; }
.pd-qty-section { margin: 12px 0; }
.pd-qty { display: flex; align-items: center; gap: 10px; }
.pd-qty button { width: 30px; height: 30px; border-radius: 6px; border: 1.5px solid var(--border); background: none; cursor: pointer; font-size: 0.83rem; font-weight: 700; }
.pd-qty button:hover { border-color: var(--primary); color: var(--primary); }
.pd-qty span { font-size: 0.97rem; font-weight: 700; min-width: 20px; text-align: center; }
.pd-actions { display: flex; gap: 9px; margin: 15px 0; }
.pd-actions .btn { flex: 1; justify-content: center; }
.pd-features { border-top: 1px solid var(--border); padding-top: 12px; }
.pd-feature { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.pd-feature i { color: var(--primary); }
.pd-accordion { border-top: 1px solid var(--border); margin-top: 20px; }
.pd-accordion-item { border-bottom: 1px solid var(--border); }
.pd-accordion-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; background: none; border: none; cursor: pointer; font-size: 0.92rem; font-weight: 600; color: var(--text); font-family: var(--font); }
.pd-accordion-header:hover { color: var(--primary); }
.pd-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; padding-bottom: 0; }
.pd-accordion-body p { margin: 0 0 8px; }
.pd-accordion-body p:last-child { margin-bottom: 0; }
.pd-accordion-body ul { margin: 6px 0 8px; padding-left: 22px; list-style: disc; }
.pd-accordion-body li { margin-bottom: 4px; display: list-item; }
.pd-accordion-item.open .pd-accordion-body { padding-bottom: 14px; }
/* Responsive: stack on mobile */
@media (max-width: 700px) { .product-detail-modal { overflow-y: auto; max-height: 92vh; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; } .pd-grid { grid-template-columns: 1fr; max-height: none; overflow: visible; } .pd-image-gallery { max-height: none; border-right: none; border-bottom: 1px solid var(--border); overflow: visible; } .pd-info { max-height: none; overflow: visible; } }

/* ── 22. Auth / Account ───────────────────────────────────────── */
.auth-modal { max-width: 420px; padding: 26px; }
.auth-tabs { display: flex; gap: 4px; margin-bottom: 18px; background: var(--bg-off); border-radius: var(--radius-sm); padding: 4px; }
.auth-tab { flex: 1; padding: 9px; border: none; background: none; border-radius: 7px; cursor: pointer; font-weight: 600; font-family: var(--font); font-size: 0.85rem; transition: var(--transition); }
.auth-tab.active { background: #fff; box-shadow: var(--shadow); color: var(--primary); }
.auth-form h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 3px; }
.auth-subtitle { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 17px; }
.auth-switch { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 13px; }
.auth-switch a { color: var(--primary); font-weight: 600; cursor: pointer; }
.fp-glass-wrap { position: relative; isolation: isolate; margin-top: 4px; }
.fp-glow-orb {
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(45,212,191,0.45), rgba(45,212,191,0));
    top: -52px;
    right: -42px;
    z-index: -1;
    animation: fpFloatOrb 6s ease-in-out infinite;
}
@keyframes fpFloatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(10px) scale(1.06); }
}
.fp-glass-card {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.46);
    background: linear-gradient(155deg, rgba(255,255,255,0.78), rgba(255,255,255,0.56));
    box-shadow: 0 24px 54px rgba(2,6,23,0.14), inset 0 1px 0 rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 16px 14px;
}
.fp-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fp-head-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    background: linear-gradient(145deg, rgba(20,184,166,0.18), rgba(15,118,110,0.08));
    border: 1px solid rgba(20,184,166,0.22);
}
.fp-msg {
    margin: 2px 0 6px;
    font-size: 0.8rem;
    border-radius: 8px;
    padding: 8px 10px;
    background: rgba(148,163,184,0.12);
    color: #334155;
}
.fp-msg.ok { color: #065f46; background: rgba(16,185,129,0.14); border: 1px solid rgba(16,185,129,0.22); }
.fp-msg.err { color: #991b1b; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.22); }
.fp-msg.info { color: #0c4a6e; background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.22); }
.fp-info {
    font-size: 0.8rem;
    color: #0f766e;
    margin: 2px 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.fp-otp-input {
    letter-spacing: 8px;
    font-size: 1.16rem;
    text-align: center;
    font-weight: 700;
}
.fp-rules {
    display: grid;
    gap: 6px;
    margin-top: 4px;
    padding: 10px;
    background: rgba(241,245,249,0.72);
    border: 1px solid rgba(148,163,184,0.24);
    border-radius: 12px;
}
.fp-rule {
    font-size: 0.76rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}
.fp-rule i { font-size: 0.58rem; color: #94a3b8; transition: all 0.2s ease; }
.fp-rule.ok { color: #166534; font-weight: 600; }
.fp-rule.ok i { color: #16a34a; transform: scale(1.15); }
.fp-resend-note { font-size: 0.76rem; color: #64748b; margin-top: 9px; text-align: center; }
.fp-resend-note a { color: #0f766e; font-weight: 600; cursor: pointer; }
.fp-fade-up { animation: fpFadeUp 0.55s cubic-bezier(.2,.8,.2,1); }
@keyframes fpFadeUp {
    from { opacity: 0; transform: translateY(10px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.account-modal { max-width: 500px; padding: 26px; max-height: 88vh; overflow-y: auto; }
.account-header { text-align: center; margin-bottom: 17px; }
.account-avatar { width: 66px; height: 66px; border-radius: 50%; background: var(--primary-bg); border: 2px solid rgba(13,148,136,0.18); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.55rem; margin: 0 auto 9px; }
.account-tabs { display: flex; gap: 4px; margin-bottom: 17px; background: var(--bg-off); border-radius: var(--radius-sm); padding: 3px; flex-wrap: wrap; }
.account-tab { flex: 1; min-width: 66px; padding: 7px 5px; border: none; background: none; border-radius: 7px; cursor: pointer; font-weight: 600; font-family: var(--font); transition: var(--transition); font-size: 0.76rem; }
.account-tab.active { background: #fff; box-shadow: var(--shadow); color: var(--primary); }
.empty-orders { text-align: center; padding: 26px; color: var(--text-muted); }
.empty-orders i { font-size: 2.1rem; opacity: 0.22; margin-bottom: 8px; display: block; }
.order-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; margin-bottom: 9px; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.order-id-label { font-weight: 700; font-size: 0.87rem; }
.order-date  { font-size: 0.73rem; color: var(--text-muted); display: block; }
.order-status { font-size: 0.7rem; padding: 3px 7px; border-radius: 4px; font-weight: 700; background: #ecfdf5; color: #065f46; }
.order-item-row { display: flex; justify-content: space-between; font-size: 0.81rem; padding: 3px 0; color: var(--text-muted); }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.order-total   { font-weight: 700; font-size: 0.89rem; }
.order-payment { font-size: 0.73rem; color: var(--text-muted); }
.profile-info { display: flex; flex-direction: column; gap: 10px; }
.profile-row  { display: flex; gap: 10px; font-size: 0.86rem; }
.profile-row label { font-weight: 600; min-width: 66px; }
.profile-edit-form { display: flex; flex-direction: column; gap: 10px; }
.profile-edit-form .form-group { margin: 0; }
.profile-edit-form label { font-size: 0.79rem; font-weight: 600; display: block; margin-bottom: 3px; color: var(--text-muted); }

/* ── 23. Chatbot ──────────────────────────────────────────────── */
.chatbot-container { position: fixed; bottom: 22px; right: 22px; z-index: 9000; }
.chatbot-toggle { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; font-size: 1.18rem; box-shadow: 0 4px 20px rgba(13,148,136,0.38); transition: var(--transition); position: relative; }
.chatbot-toggle:hover { background: var(--primary-dark); transform: scale(1.06); }
.chatbot-badge { position: absolute; top: -2px; right: -2px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); font-size: 0.6rem; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.chatbot-window { position: absolute; bottom: 66px; right: 0; width: 330px; max-width: 90vw; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(14px); transition: var(--transition); border: 1px solid var(--border); }
.chatbot-window.open { opacity: 1; visibility: visible; transform: translateY(0); }
.chatbot-header { background: var(--navy); color: #fff; padding: 12px 15px; display: flex; justify-content: space-between; align-items: center; }
.chatbot-header-info { display: flex; align-items: center; gap: 9px; }
.chatbot-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(13,148,136,0.22); display: flex; align-items: center; justify-content: center; color: #5eead4; }
.chatbot-header h4 { font-size: 0.87rem; margin-bottom: 2px; font-weight: 700; }
.chatbot-status { font-size: 0.68rem; opacity: 0.72; }
.chatbot-status i { font-size: 0.48rem; color: var(--green); margin-right: 3px; }
.chatbot-minimize { background: none; border: none; color: rgba(255,255,255,0.58); cursor: pointer; font-size: 0.93rem; }
.chatbot-messages { height: 270px; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.chat-message { display: flex; gap: 7px; max-width: 85%; }
.chat-message.bot  { align-self: flex-start; }
.chat-message.user { align-self: flex-end; flex-direction: row-reverse; }
.message-avatar { width: 27px; height: 27px; border-radius: 50%; background: var(--bg-off); display: flex; align-items: center; justify-content: center; font-size: 0.76rem; color: var(--primary); flex-shrink: 0; }
.chat-message.user .message-avatar { background: var(--primary); color: #fff; }
.message-content { background: var(--bg-off); border-radius: 11px 11px 11px 3px; padding: 8px 12px; }
.chat-message.user .message-content { background: var(--primary); color: #fff; border-radius: 11px 11px 3px 11px; }
.message-content p { font-size: 0.8rem; line-height: 1.5; }
.message-content a { color: var(--primary); font-weight: 600; }
.chat-message.user .message-content a { color: #a7f3d0; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.quick-reply { padding: 4px 9px; border: 1px solid var(--border); border-radius: 50px; background: #fff; font-size: 0.7rem; cursor: pointer; transition: var(--transition); font-family: var(--font); }
.quick-reply:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.typing-indicator { display: flex; gap: 3px; padding: 4px 0; }
.typing-indicator span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: typing 1.4s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.chatbot-input { display: flex; gap: 6px; padding: 10px; border-top: 1px solid var(--border); align-items: center; }
.chatbot-input input { flex: 1; padding: 8px 12px; border: 1.5px solid var(--border); border-radius: 50px; font-size: 0.82rem; outline: none; font-family: var(--font); }
.chatbot-input input:focus { border-color: var(--primary); }
.chatbot-input button { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.chatbot-input button:hover { background: var(--primary-dark); }
.chat-attach-btn { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; }
.chat-attach-btn:hover { color: var(--primary); background: #f0fdfa; }

/* ── 24. About Page ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }

/* About Visual Card (replaces image column) */
.about-vis-card { background: linear-gradient(145deg, #0f172a 0%, #0d5c57 60%, #0f766e 100%); border-radius: 22px; padding: 28px 24px 24px; color: #fff; display: flex; flex-direction: column; gap: 18px; }
/* Animated dot grid banner */
.avc-grid-banner { position: relative; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(94,234,212,0.18); overflow: hidden; padding: 20px 16px 18px; display: flex; align-items: center; justify-content: center; min-height: 78px; }
.avc-grid-banner::before { content: ''; position: absolute; inset: -1px; background-image: radial-gradient(circle, rgba(94,234,212,0.55) 1.5px, transparent 1.5px); background-size: 18px 18px; animation: avcGridMove 6s linear infinite; opacity: 0.7; }
.avc-grid-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(15,118,110,0.0) 30%, rgba(15,23,42,0.55) 100%); pointer-events: none; }
@keyframes avcGridMove { from { background-position: 0 0; } to { background-position: 36px 36px; } }
.avc-grid-label { position: relative; z-index: 1; text-align: center; }
.avc-grid-label h3 { font-size: 1.05rem; font-weight: 900; margin: 0 0 3px; color: #fff; letter-spacing: -0.02em; }
.avc-grid-label p { font-size: 0.73rem; color: rgba(255,255,255,0.55); margin: 0; }
.avc-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.avc-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.13); border-radius: 14px; padding: 14px 10px; text-align: center; }
.avc-stat span { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.04em; display: block; color: #5eead4; line-height: 1.1; }
.avc-stat small { font-size: 0.68rem; color: rgba(255,255,255,0.55); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.avc-divider { height: 1px; background: rgba(255,255,255,0.1); }
.avc-features { display: flex; flex-direction: column; gap: 10px; }
.avc-feat { display: flex; align-items: center; gap: 9px; font-size: 0.83rem; color: rgba(255,255,255,0.85); }
.avc-feat i { color: #5eead4; font-size: 0.78rem; flex-shrink: 0; }
.avc-cta { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 10px; padding: 10px 18px; font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: background 0.2s; text-align: center; justify-content: center; }
.avc-cta:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Live Agent Status Banner (inside chatbot window) ─────────── */
.la-status-banner { display: flex; align-items: center; gap: 8px; padding: 7px 14px; background: rgba(239,68,68,0.07); border-bottom: 1px solid rgba(239,68,68,0.18); font-family: var(--font); }
.la-sb-dot { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; flex-shrink: 0; animation: la-dot-pulse 1.6s ease-in-out infinite; }
@keyframes la-dot-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); } 60% { box-shadow: 0 0 0 6px rgba(239,68,68,0); } }
.la-sb-text { font-size: 0.72rem; font-weight: 800; color: #dc2626; flex-shrink: 0; }
.la-sb-sub { font-size: 0.68rem; color: #94a3b8; }
.la-sb-sub a { color: var(--primary); font-weight: 600; text-decoration: none; }
.la-sb-sub a:hover { text-decoration: underline; }

/* ── Live Agent Offline Card (inside chatbot messages) ────────── */
.la-offline-card { background: linear-gradient(135deg, #1a2035 0%, #0f172a 100%); border: 1px solid rgba(239,68,68,0.22); border-radius: 14px; padding: 14px 16px; margin: 2px 0; font-family: var(--font); }
.la-offline-header { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.la-offline-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; flex-shrink: 0; animation: la-dot-pulse 1.6s ease-in-out infinite; }
.la-offline-title { font-size: 0.72rem; font-weight: 800; color: #fca5a5; letter-spacing: 0.07em; text-transform: uppercase; }
.la-offline-body { font-size: 0.81rem; color: rgba(255,255,255,0.72); margin: 0 0 12px; line-height: 1.55; }
.la-offline-actions { margin-bottom: 10px; }
.la-btn-contact { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 14px; background: linear-gradient(135deg, #0d9488, #0f766e); color: #fff; border-radius: 9px; font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: opacity 0.18s; font-family: var(--font); }
.la-btn-contact:hover { opacity: 0.85; color: #fff; }
.la-offline-footer { font-size: 0.71rem; color: rgba(255,255,255,0.38); display: flex; align-items: center; gap: 6px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 9px; }
.la-offline-footer i { color: #f59e0b; font-size: 0.7rem; }
.about-img-card { position: relative; background: var(--bg-off); border-radius: var(--radius-lg); height: 370px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border); }
.about-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); }
.about-img-placeholder i { font-size: 2.4rem; opacity: 0.22; }
.about-exp-badge { position: absolute; bottom: -17px; right: -17px; width: 86px; height: 86px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.about-exp-badge .exp-number { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.about-text-col .section-title { text-align: left; }
.about-text-col p { color: var(--text-muted); margin-bottom: 10px; font-size: 0.92rem; line-height: 1.78; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 17px 0; }
.about-hl { display: flex; align-items: center; gap: 7px; font-size: 0.86rem; font-weight: 600; }
.about-hl i { color: var(--green); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mv-card { background: #fff; border-radius: var(--radius-lg); padding: 26px; text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 13px; font-size: 1.2rem; color: var(--primary); }
.mv-card h3 { margin-bottom: 8px; font-size: 1.03rem; font-weight: 700; }
.mv-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.66; }
.mission-vision { background: var(--bg-off); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 20px; max-width: 660px; margin: 0 auto; }
.team-card { background: #fff; border-radius: var(--radius-lg); padding: 26px; text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--primary); font-size: 1.35rem; }
.team-card h4 { font-size: 1.03rem; margin-bottom: 3px; font-weight: 700; }
.team-card > span { font-size: 0.78rem; color: var(--primary); font-weight: 600; }
.team-card p { font-size: 0.83rem; color: var(--text-muted); margin: 8px 0; line-height: 1.64; }
.team-contact { display: inline-flex; align-items: center; gap: 5px; font-size: 0.79rem; color: var(--primary); font-weight: 600; }

/* ── 25. Services Page ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(325px, 1fr)); gap: 20px; }
.service-card { background: #fff; border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--primary-bg); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); margin-bottom: 14px; }
.service-card h3 { font-size: 1.04rem; margin-bottom: 8px; font-weight: 700; }
.service-card > p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.69; margin-bottom: 12px; }
.service-list { display: flex; flex-direction: column; gap: 6px; }
.service-list li { font-size: 0.8rem; display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.service-list li i { color: var(--green); font-size: 0.72rem; }
.process-grid { display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; }
.process-step { background: #fff; border-radius: var(--radius-lg); padding: 21px; text-align: center; border: 1px solid var(--border); min-width: 170px; flex: 1; transition: var(--transition); }
.process-step:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.process-number { font-size: 2rem; font-weight: 900; color: var(--primary); letter-spacing: -0.05em; margin-bottom: 8px; }
.process-step h4 { font-size: 0.89rem; margin-bottom: 5px; font-weight: 700; }
.process-step p { font-size: 0.78rem; color: var(--text-muted); }
.process-connector { color: var(--border-mid); font-size: 0.9rem; }

/* ── 26. Contact Page ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; }
.contact-info h3, .contact-form-wrapper h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.contact-info > p { color: var(--text-muted); font-size: 0.89rem; margin-bottom: 20px; }
.contact-cards { display: flex; flex-direction: column; gap: 13px; }
.contact-card { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--bg-off); border-radius: var(--radius); border: 1px solid var(--border); }
.cc-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; font-size: 0.95rem; }
.contact-card h4 { font-size: 0.87rem; font-weight: 700; margin-bottom: 3px; }
.contact-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.53; }
.contact-card a { color: var(--primary); }
.contact-social { margin-top: 20px; }
.contact-social h4 { font-size: 0.87rem; margin-bottom: 8px; font-weight: 700; }
.contact-form-wrapper { background: #fff; border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-section { margin-top: -4px; }
.map-section iframe { display: block; width: 100%; }

/* ── 27. Wishlist ─────────────────────────────────────────────── */
.wishlist-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 13px; }
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 20px; }
.wishlist-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.wishlist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.wishlist-card-image { position: relative; padding: 13px; background: var(--bg-off); }
.wishlist-card-image img { width: 100%; height: 185px; object-fit: contain; border-radius: var(--radius-sm); }
.wishlist-card-body { padding: 13px 15px 15px; }
.wishlist-card-body h4 { font-size: 0.89rem; margin: 5px 0; font-weight: 600; line-height: 1.36; }
.wishlist-card-actions { display: flex; gap: 7px; margin-top: 10px; }
.wishlist-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 68px 20px; }
.wishlist-empty i { font-size: 3.2rem; color: var(--border-mid); margin-bottom: 17px; }
.wishlist-empty h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.wishlist-empty p { color: var(--text-muted); margin-bottom: 20px; max-width: 360px; }
.wishlist-nav-btn { color: var(--red); }
.wishlist-nav-btn .cart-count { background: var(--red); }

/* ── 28. Floating ─────────────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 86px; right: 22px; width: 41px; height: 41px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; font-size: 0.93rem; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 8000; display: flex; align-items: center; justify-content: center; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.whatsapp-float { position: fixed; bottom: 22px; left: 22px; width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(37,211,102,0.38); z-index: 8000; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--primary); z-index: 10001; transition: width 0.1s linear; }

/* ── 29. Inventory Status ─────────────────────────────────────── */
.inv-status-select { padding: 5px 10px; border-radius: 6px; font-size: 0.78rem; font-family: var(--font); font-weight: 600; border: 1.5px solid var(--border); outline: none; cursor: pointer; }
.inv-status-in_stock     { border-color: #86efac; background: #f0fdf4; color: #15803d; }
.inv-status-low_stock    { border-color: #fcd34d; background: #fffbeb; color: #b45309; }
.inv-status-out_of_stock { border-color: #fca5a5; background: #fef2f2; color: #b91c1c; }

/* ── 30. Reveal Animations ────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left        { opacity: 0; transform: translateX(-30px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-right       { opacity: 0; transform: translateX(30px);  transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale        { opacity: 0; transform: scale(0.93); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.44s ease, transform 0.44s ease; }
.reveal-stagger.active > *:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger.active > *:nth-child(2)  { transition-delay: 0.08s; }
.reveal-stagger.active > *:nth-child(3)  { transition-delay: 0.14s; }
.reveal-stagger.active > *:nth-child(4)  { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(5)  { transition-delay: 0.26s; }
.reveal-stagger.active > *:nth-child(n+6){ transition-delay: 0.3s; }
.reveal-stagger.active > * { opacity: 1; transform: translateY(0); }

/* ── 31. Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Full-screen scrollable mobile menu — top aligned so long category
       accordions never overflow off-screen (fix: options not fitting) */
    .nav-links { display: none; position: fixed; inset: 0; background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 2px; z-index: 9999; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 80px 16px calc(96px + env(safe-area-inset-bottom, 0px)); }
    .nav-links.active { display: flex; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a { font-size: 1.02rem; padding: 13px 18px; justify-content: flex-start; border-radius: 12px; }
    .hamburger { display: flex; z-index: 10000; }
    .mega-menu { position: static; width: 100%; max-width: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: all; box-shadow: none; border: none; padding: 6px 8px 10px; display: none; background: var(--bg-off, #f6f8fb); border-radius: 12px; margin-top: 4px; }
    .mega-menu::after { display: none; }
    .nav-dropdown.open .mega-menu { display: block; }
    /* Neutralise the desktop hover transform on touch devices: a tap leaves a
       sticky :hover state whose translateX(-50%) shifts the now-static mega-menu
       off-screen (the "only shows after opening the chat" bug). The :hover
       selector below matches the desktop rule's specificity and, coming later,
       wins — forcing normal in-flow positioning on mobile/tablet. */
    .nav-dropdown:hover .mega-menu,
    .nav-dropdown.open .mega-menu { position: static; left: auto; right: auto; transform: none; }
    /* CliniFlex dropdown becomes a tap accordion on mobile (matches Categories) */
    .cliniflex-dropdown { position: static; width: 100%; min-width: 0; transform: none; opacity: 1; visibility: visible; pointer-events: all; box-shadow: none; border: none; padding: 6px 8px 10px; margin-top: 4px; display: none; background: var(--bg-off, #f6f8fb); border-radius: 12px; }
    .cliniflex-dropdown::after { display: none; }
    .cliniflex-dropdown a { font-size: 0.98rem; padding: 12px 14px; }
    .nav-cliniflex-dropdown.open .cliniflex-dropdown { display: block; }
    .nav-cliniflex-dropdown:hover .cliniflex-dropdown,
    .nav-cliniflex-dropdown.open .cliniflex-dropdown { position: static; left: auto; right: auto; transform: none; }
    .nav-dropdown.open > a .nav-arrow, .nav-cliniflex-dropdown.open > a .nav-arrow { transform: rotate(180deg); }
    /* Single column so every option fits within the phone/tablet screen width */
    .mega-menu-inner { grid-template-columns: 1fr !important; gap: 6px; }
    .mega-col { padding: 8px 10px; background: #fff; border-radius: 10px; }
    .mega-col h4 { margin-bottom: 6px; padding-bottom: 6px; }
    .mega-col ul li a { font-size: 0.92rem; padding: 9px 10px; }
    .mega-cta { display: none; }
    .nav-cta { display: none !important; }
    .why-us-grid { grid-template-columns: 1fr; gap: 34px; }
    .why-us-visual { height: 220px; }
    .about-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero { min-height: 72vh; max-height: 620px; }
    .hero-content { padding-top: 16px; }
    .section-pad { padding: 44px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 17px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 13px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .pd-grid { grid-template-columns: 1fr; }
    .product-detail-modal { max-width: 95vw; }
    .services-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .process-connector { display: none; }
    .process-grid { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .shop-toolbar { flex-direction: column; align-items: flex-start; }
    .shop-filters { overflow-x: auto; width: 100%; flex-wrap: nowrap; padding-bottom: 6px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .shop-filters::-webkit-scrollbar { display: none; }
    .shop-filters .filter-btn { scroll-snap-align: start; flex: 0 0 auto; }
}
@media (max-width: 480px) {
    body { font-size: 15px; }
    .hero-content h1 { font-size: 1.72rem; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .shop-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 1.88rem; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
@media (max-width: 768px) {
    .shop-card:hover { transform: none; }
}

/* ── 32. Trust Strip ──────────────────────────────────────────── */
.trust-strip { background: #fff; border-bottom: 1px solid var(--border); }
.trust-strip-inner { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.trust-strip-item { display: flex; align-items: center; gap: 11px; padding: 15px 28px; border-right: 1px solid var(--border); flex: 1; min-width: 180px; transition: var(--transition); }
.trust-strip-item:last-child { border-right: none; }
.trust-strip-item:hover { background: var(--bg-off); }
.ts-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.ts-label { font-size: 0.86rem; font-weight: 700; color: var(--text); display: block; line-height: 1.3; }
.ts-sub { font-size: 0.73rem; color: var(--text-muted); display: block; }
@media (max-width: 768px) {
    .trust-strip-item { padding: 11px 16px; min-width: 140px; border-right: none; border-bottom: 1px solid var(--border); }
    .trust-strip-inner { flex-direction: column; }
    .trust-strip-item:last-child { border-bottom: none; }
}

/* ── 33. Hero Split Layout ────────────────────────────────────── */
.hero-content { display: flex; align-items: center; gap: 30px; }
.hero-text { flex: 1; min-width: 0; }
/* Move all direct children of hero-content that belong to text into hero-text */
.hero-prod-img { flex-shrink: 0; width: 380px; display: flex; align-items: flex-end; justify-content: center; position: relative; padding-top: 60px; padding-bottom: 20px; }
.hero-prod-img img { height: 460px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4)); animation: hero-float 4s ease-in-out infinite; border-radius: 6px; }
.hero-prod-label { position: absolute; background: rgba(15,23,42,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1.5px solid rgba(255,255,255,0.5); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.5); padding: 8px 14px; border-radius: 50px; font-size: 0.79rem; font-weight: 800; display: flex; align-items: center; gap: 7px; white-space: nowrap; box-shadow: 0 12px 28px rgba(0,0,0,0.34); }
.hero-prod-label.lbl-top { top: 72px; right: -8px; }
.hero-prod-label.lbl-bottom { bottom: 52px; left: -20px; }
.hero-prod-label i { color: #5eead4; }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Override old animation selectors to target .hero-text */
.hero-slide.active .hero-text .hero-badge { animation: hero-text-up 0.8s ease 0.2s both; }
.hero-slide.active .hero-text h1 { animation: hero-text-up 0.8s ease 0.35s both; }
.hero-slide.active .hero-text > p { animation: hero-text-up 0.8s ease 0.5s both; }
.hero-slide.active .hero-text .hero-btns { animation: hero-text-up 0.8s ease 0.65s both; }
.hero-slide.active .hero-text .hero-trust { animation: hero-text-up 0.8s ease 0.8s both; }
.hero-slide.active .hero-prod-img { animation: hero-text-up 0.8s ease 0.4s both; }

@media (max-width: 1024px) { .hero-prod-img { width: 300px; } .hero-prod-img img { height: 360px; } }
@media (max-width: 768px) { .hero-prod-img { display: none; } .hero-content { padding-top: 14px; } }

/* ── 34. Mobile Header Navigation Icons ──────────────────────── */
/* Home and Shop quick-access icons are shown in the top header nav-actions
   on mobile (where nav-links are hidden behind the hamburger). Hidden on
   desktop (≥769 px) where the nav-links already show these pages. */
.nav-icon-mobile { display: none; }
@media (max-width: 768px) {
    .nav-icon-mobile { display: inline-flex; }
    /* Active state: teal colour for the current-page icon */
    .nav-icon-mobile.active { color: var(--primary); background: var(--primary-light); }
    /* Tighten the icon row so wishlist remains visible on mobile too */
    .nav-actions { gap: 3px; }
    .nav-icon-btn { width: 33px; height: 33px; font-size: 0.9rem; }
    .wishlist-nav-btn { display: inline-flex !important; }
}

@media (max-width: 1024px) {
    .nav-actions { flex-wrap: nowrap; }
    .nav-icon-btn { flex: 0 0 auto; }
    .wishlist-nav-btn { display: inline-flex !important; }
}

/* ── Mobile-wide enhancements ─────────────────────────────────── */
@media (max-width: 768px) {
    /* Remove tap highlight globally */
    * { -webkit-tap-highlight-color: transparent; }

    /* Smooth momentum scrolling */
    .cart-items, .modal-body, .cart-drawer, .acct-body { -webkit-overflow-scrolling: touch; }

    /* Prevent pull-to-refresh conflict */
    body { overscroll-behavior-y: contain; }

    /* Touch-friendly buttons — minimum 44×44 hit area */
    .btn, .nav-icon-btn, .filter-btn, .pd-size-btn { min-height: 44px; }
    .btn-sm { min-height: 36px; }

    /* Larger tap targets for cart qty buttons */
    .cart-item-qty button { width: 32px; height: 32px; font-size: 0.8rem; }

    /* Fluid font scaling */
    body { font-size: 15px; }
    .section-title { font-size: clamp(1.45rem, 5vw, 2rem); }

    /* Product card improvements on mobile */
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .shop-card-image img { height: 165px; }
    .shop-card-body { padding: 10px 11px 12px; }
    .shop-card-footer { gap: 5px; }
    .shop-card-footer .btn { padding: 7px 8px; font-size: 0.72rem; }

    /* Prevent horizontal overflow */
    .top-bar, .footer-grid, .stats-grid { overflow-x: hidden; }

    /* Auth modal full-height on small phones */
    .auth-split { max-height: 95vh; }

    /* Search overlay — no extra offset needed (JS sets top dynamically) */

    /* Stats grid 2 cols on mobile */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* Extra small phones */
@media (max-width: 360px) {
    .shop-grid { grid-template-columns: 1fr; }
}

/* ── 35. Auth Modal Split Layout ─────────────────────────────── */
.auth-split { max-width: 700px; padding: 0 !important; display: flex; overflow: hidden; }
.auth-panel-left { width: 240px; min-width: 240px; background: var(--navy); padding: 36px 24px; display: flex; flex-direction: column; gap: 28px; color: #fff; flex-shrink: 0; }
.auth-panel-right { flex: 1; padding: 28px 26px; overflow-y: auto; max-height: 88vh; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.auth-logo img { width: 44px; border-radius: 9px; }
.auth-logo-text .auth-logo-name { font-size: 0.96rem; font-weight: 800; color: #fff; display: block; }
.auth-logo-text .auth-logo-sub { font-size: 0.67rem; color: #5eead4; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: block; }
.auth-left-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.auth-left-trust { display: flex; flex-direction: column; gap: 10px; }
.auth-trust-row { display: flex; align-items: center; gap: 9px; font-size: 0.79rem; color: rgba(255,255,255,0.72); }
.auth-trust-row i { color: #5eead4; font-size: 0.9rem; flex-shrink: 0; }
.auth-left-img { border-radius: var(--radius); overflow: hidden; height: 130px; }
.auth-left-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
@media (max-width: 600px) { .auth-split { flex-direction: column; } .auth-panel-left { display: none; } .auth-panel-right { max-height: none; padding: 24px 20px; } }
@media (max-width: 600px) {
    .fp-glass-card { padding: 14px 12px 12px; }
    .fp-otp-input { letter-spacing: 6px; font-size: 1.04rem; }
    .fp-rules { gap: 5px; }
}

@media (max-width: 900px) {
    .acct-order-hero,
    .acct-order-grid { grid-template-columns: 1fr; }
    .acct-order-actions-row .btn { min-width: 0; flex: 1 1 180px; }
}

@media (max-width: 640px) {
    .account-modal-v2 { max-width: 96vw; }
    .acct-body { padding: 16px; }
    .acct-order-head-modern,
    .acct-order-summary,
    .acct-order-hero,
    .acct-order-grid,
    .acct-order-actions-row { padding-left: 14px; padding-right: 14px; }
    .acct-order-head-modern { align-items: flex-start; gap: 12px; }
    .acct-order-badges { justify-content: flex-start; }
    .od-item-detail { grid-template-columns: 1fr; }
    .od-item-visual { width: 100%; height: 180px; }
    .od-item-price { flex-direction: column; align-items: flex-start; }
}

/* ── 36. Account Modal v3 ─────────────────────────────────────── */
/* Flex-column so header+tabs stay put and only the body scrolls  */
.account-modal-v2 {
    max-width: 560px; padding: 0; overflow: hidden;
    display: flex; flex-direction: column; max-height: 92vh;
}

/* ── Header ─ compact teal strip ───────────────────────────────── */
.acct-hdr3 {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 55%, #115e59 100%);
    padding: 20px 22px 16px; color: #fff; position: relative;
    display: flex; align-items: center; gap: 14px; flex-shrink: 0; overflow: hidden;
}
.acct-hdr3::before { content:''; position:absolute; width:160px; height:160px; border-radius:50%; background:rgba(255,255,255,0.06); top:-70px; right:-40px; pointer-events:none; }
.acct-close { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.15); border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; font-size: 0.85rem; z-index: 2; flex-shrink: 0; }
.acct-close:hover { background: rgba(255,255,255,0.3); }
.acct-hdr3-avatar-wrap { position: relative; cursor: pointer; flex-shrink: 0; }
.acct-hdr3-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2.5px solid rgba(255,255,255,0.5); display: block; }
.acct-hdr3-placeholder { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 2.5px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; font-weight: 800; }
.acct-hdr3-cam { position: absolute; bottom: 0; right: 0; width: 20px; height: 20px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid #0d9488; }
.acct-hdr3-cam i { font-size: 0.48rem; color: #0d9488; }
.acct-hdr3-info { flex: 1; min-width: 0; position: relative; z-index: 1; padding-right: 28px; }
.acct-hdr3-name { font-size: 0.98rem; font-weight: 800; color: #fff; margin-bottom: 3px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.acct-hdr3-badge { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.07em; background: rgba(255,255,255,0.2); color: #fff; padding: 2px 8px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.3); white-space: nowrap; }
.acct-hdr3-email { font-size: 0.77rem; color: rgba(255,255,255,0.78); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct-hdr3-phone { font-size: 0.73rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── Segment tab control ────────────────────────────────────────── */
.acct-seg-wrap { padding: 10px 16px 0; background: #fff; border-bottom: 1px solid #e2e8f0; flex-shrink: 0; }
.acct-seg { display: flex; background: #f1f5f9; border-radius: 11px; padding: 3px; gap: 2px; }
.acct-seg-btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 6px 7px; border: none; border-radius: 8px; background: none; font-family: var(--font); font-size: 0.72rem; font-weight: 600; color: #64748b; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.acct-seg-btn i { font-size: 0.9rem; }
.acct-seg-btn.active { background: #fff; color: #0d9488; box-shadow: 0 2px 8px rgba(15,23,42,0.12); font-weight: 700; }
.acct-seg-btn:hover:not(.active) { background: rgba(13,148,136,0.08); color: #0d9488; }

/* ── Scrollable body ────────────────────────────────────────────── */
.acct-body { flex: 1; overflow-y: auto; padding: 16px 18px 20px; background: #f8fafc; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.acct-section { display: none; }
.acct-section.active { display: block; }

/* ── Profile cards ──────────────────────────────────────────────── */
.acct-pcard { background: #fff; border: 1px solid #e8edf3; border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(15,23,42,0.05); }
.acct-pcard--sec { border-color: #ede9fe; box-shadow: 0 2px 8px rgba(99,102,241,0.06); }
.acct-pcard-head { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: #0f172a; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1.5px solid #f1f5f9; }
.acct-pcard-head i { font-size: 0.9rem; color: #0d9488; width: 24px; height: 24px; display:flex; align-items:center; justify-content:center; background:#f0fdfa; border-radius:6px; }
.acct-pcard-head--sec i { color: #6366f1; background:#ede9fe; }
.acct-fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.acct-fld { margin-bottom: 12px; }
.acct-fld:last-of-type { margin-bottom: 14px; }
.acct-fld label { font-size: 0.67rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 5px; }
.acct-fld input { width: 100%; padding: 10px 12px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-family: var(--font); font-size: 0.85rem; outline: none; box-sizing: border-box; transition: border-color 0.2s, box-shadow 0.2s; background: #fff; color: #0f172a; }
.acct-fld input:focus { border-color: #0d9488; box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.acct-pcard--sec .acct-fld input:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.acct-fld input[readonly] { background: #f8fafc; color: #94a3b8; cursor: not-allowed; border-style: dashed; }
.acct-save-btn { margin-top: 2px; padding: 11px; font-size: 0.86rem; border-radius: 10px; width: 100%; }
.acct-pwd-btn { width: 100%; background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; border: none; padding: 11px; font-size: 0.86rem; border-radius: 10px; cursor: pointer; font-family: var(--font); font-weight: 700; transition: opacity 0.2s; display: flex; align-items: center; justify-content: center; gap: 7px; }
.acct-pwd-btn:hover { opacity: 0.88; }
.acct-pwd-msg { font-size: 0.79rem; padding: 8px 12px; border-radius: 9px; background: #f0fdf4; color: #166534; margin-bottom: 10px; border: 1px solid #bbf7d0; }

/* ── Quick actions ──────────────────────────────────────────────── */
.acct-quick-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 12px; }
.acct-action-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 10px; border-radius: 9px; font-size: 0.78rem; font-weight: 700; text-decoration: none; border: 1.5px solid; cursor: pointer; font-family: var(--font); transition: all 0.18s; }
.acct-action-wish { background: #fdf2f8; color: #be185d; border-color: #fbcfe8; }
.acct-action-wish:hover { background: #be185d; color: #fff; border-color: #be185d; }
.acct-action-out  { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.acct-action-out:hover  { background: #dc2626; color: #fff; border-color: #dc2626; }

/* ── Address cards ──────────────────────────────────────────────── */
.acct-addr-empty { text-align: center; padding: 20px; color: #94a3b8; }
.acct-addr-empty i { font-size: 2rem; margin-bottom: 8px; display: block; color: #cbd5e1; }
.acct-addr-card { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 13px 15px; margin-bottom: 10px; }
.acct-addr-card--default { border-color: #0d9488; background: #f0fdfa; }
.acct-addr-card-body { margin-bottom: 9px; }
.acct-addr-default-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; font-weight: 800; color: #0d9488; background: #ccfbf1; padding: 2px 8px; border-radius: 20px; margin-bottom: 5px; }
.acct-addr-text { font-size: 0.85rem; color: #334155; line-height: 1.6; margin: 0; }
.acct-addr-card-actions { display: flex; gap: 7px; }
.acct-addr-action-btn { font-size: 0.73rem; font-weight: 700; padding: 4px 11px; border-radius: 7px; border: 1.5px solid; cursor: pointer; font-family: var(--font); background: #fff; transition: all 0.15s; }
.acct-addr-action-default { color: #0d9488; border-color: #99f6e4; }
.acct-addr-action-default:hover { background: #0d9488; color: #fff; border-color: #0d9488; }
.acct-addr-action-del { color: #dc2626; border-color: #fecaca; }
.acct-addr-action-del:hover { background: #dc2626; color: #fff; border-color: #dc2626; }
.acct-add-addr-btn { width: 100%; background: #f8fafc; border: 2px dashed #cbd5e1; color: #64748b; border-radius: 11px; padding: 10px; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: var(--font); transition: all 0.2s; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.acct-add-addr-btn:hover { border-color: #0d9488; color: #0d9488; background: #f0fdf4; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 540px) {
    .account-modal-v2 { max-width: 98vw; max-height: 95vh; }
    .acct-fg2 { grid-template-columns: 1fr; gap: 0; }
    .acct-body { padding: 12px 14px 16px; }
    .acct-hdr3 { padding: 16px 18px 12px; gap: 12px; }
    .acct-hdr3-placeholder, .acct-hdr3-img { width: 50px; height: 50px; }
}

/* ── Order cards in account ──────────────────────────────────────── */
.acct-order-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 11px; transition: var(--transition); }
.acct-order-card:hover { border-color: var(--primary); }
.acct-orders-hub { display: flex; flex-direction: column; gap: 16px; }


.acct-order-card-modern { border-radius: 20px; box-shadow: 0 18px 40px rgba(15,23,42,0.07); background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); animation: od-card-in 0.35s ease both; }
.acct-order-card-modern:nth-child(2n) { animation-delay: 0.04s; }
.acct-order-card-modern:nth-child(3n) { animation-delay: 0.08s; }
@keyframes od-card-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.acct-order-head { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; background: var(--bg-off); border-bottom: 1px solid var(--border); }
.acct-order-head-modern { padding: 18px 20px 14px; background: radial-gradient(circle at top right, rgba(13,148,136,0.18), transparent 35%), linear-gradient(135deg, #f8fffd 0%, #edf7ff 100%); }
.acct-order-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: #0d9488; margin-bottom: 4px; font-weight: 800; }
.acct-order-id { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.acct-order-date { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 1px; }
.acct-order-status { font-size: 0.69rem; padding: 3px 9px; border-radius: 50px; font-weight: 700; background: #ecfdf5; color: #065f46; }
.acct-order-badges { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.acct-order-pill { font-size: 0.72rem; padding: 6px 10px; border-radius: 999px; background: rgba(15,23,42,0.06); color: var(--text-mid); font-weight: 700; }
.acct-order-status.processing { background: #fef3c7; color: #92400e; }
.acct-order-status.approved { background: #dbeafe; color: #1e40af; }
.acct-order-status.packed { background: #ede9fe; color: #5b21b6; }
.acct-order-status.shipped { background: #d1fae5; color: #065f46; }
.acct-order-status.delivered { background: #dcfce7; color: #166534; }
.acct-order-status.cancelled { background: #fee2e2; color: #991b1b; }
/* Order summary row (collapsed) */
.acct-order-summary { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; cursor: pointer; gap: 8px; }
.acct-order-summary:hover { background: #f0fdf4; }
.acct-order-summary-text { font-size: 0.82rem; color: var(--text-mid); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct-view-details-btn { font-size: 0.72rem; font-weight: 700; color: var(--primary); background: #f0fdf4; border: 1px solid #a7f3d0; border-radius: 20px; padding: 4px 12px; cursor: pointer; white-space: nowrap; transition: var(--transition); flex-shrink: 0; }
.acct-view-details-btn:hover { background: var(--primary); color: #fff; }
/* Expanded order details */
.acct-order-details { border-top: 1px solid var(--border); background: linear-gradient(180deg, rgba(248,250,252,0.65), rgba(255,255,255,0.96)); animation: od-slide-in 0.2s ease; }
@keyframes od-slide-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.acct-order-hero { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 18px 18px 0; }
.acct-order-hero-card { background: #fff; border: 1px solid rgba(13,148,136,0.14); border-radius: 16px; padding: 14px; box-shadow: 0 10px 28px rgba(13,148,136,0.06); }
.hero-micro-label { display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #0d9488; margin-bottom: 7px; }
.acct-order-hero-card strong { display: block; font-size: 0.96rem; color: var(--navy); }
.acct-order-hero-card p { margin-top: 5px; font-size: 0.77rem; color: var(--text-muted); line-height: 1.6; }
.acct-order-timeline { display: flex; gap: 6px; flex-wrap: wrap; padding: 14px 18px 8px; }
.timeline-node { position: relative; padding: 8px 12px; border-radius: 10px; background: #e2e8f0; color: #64748b; font-size: 0.72rem; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 68px; text-align: center; }
.timeline-node span { font-size: 0.73rem; font-weight: 700; }
.timeline-node small { font-size: 0.63rem; font-weight: 500; color: #94a3b8; line-height: 1.3; display: block; }
.timeline-node.active { background: linear-gradient(135deg, #0d9488, #14b8a6); color: #fff; box-shadow: 0 6px 16px rgba(13,148,136,0.22); }
.timeline-node.active small { color: rgba(255,255,255,0.8); }
.timeline-node.danger, .timeline-node.active.danger { background: linear-gradient(135deg, #ef4444, #f97316); }
.acct-return-status { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; padding: 8px 14px; background: #f8fafc; border-radius: 10px; border: 1.5px solid #e2e8f0; margin-top: 4px; }
/* Cancellation section */
.acct-cancellation-section { margin: 12px 18px; padding: 14px 16px; background: #fef2f2; border: 2px solid #fca5a5; border-radius: 14px; }
.acct-cancel-head { font-size: 0.9rem; font-weight: 700; color: #dc2626; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.acct-cancel-reason { font-size: 0.84rem; color: #374151; margin-bottom: 10px; }
.acct-cancel-reason span { font-weight: 600; color: #6b7280; }
.acct-cancel-refund { background: #fff; border: 1px solid #fca5a5; border-radius: 10px; padding: 12px 14px; }
.acct-cancel-refund-head { font-size: 0.82rem; font-weight: 700; color: #dc2626; margin-bottom: 8px; }
.acct-cancel-refund-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; border: 1.5px solid; margin-bottom: 8px; background: rgba(255,255,255,0.7); }
.acct-cancel-meta { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #374151; padding: 4px 0; border-bottom: 1px dashed #fee2e2; }
.acct-cancel-meta:last-child { border-bottom: none; }
.acct-cancel-meta span { color: #9ca3af; font-weight: 500; min-width: 90px; }
.acct-order-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr); gap: 14px; padding: 10px 18px 0; }
.acct-order-main { min-width: 0; }
.acct-order-side { display: flex; flex-direction: column; gap: 12px; }
.acct-side-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 14px; box-shadow: 0 12px 28px rgba(15,23,42,0.05); }
.acct-side-card h5 { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.86rem; color: var(--navy); }
.acct-side-card p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 4px; }
.acct-side-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 0.78rem; padding: 7px 0; border-bottom: 1px dashed var(--border); }
.acct-side-meta:last-child { border-bottom: none; padding-bottom: 0; }
.acct-support-card { background: linear-gradient(160deg, #f0fdfa 0%, #ffffff 100%); }
.acct-support-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.od-items-list { display: flex; flex-direction: column; gap: 12px; }
.od-item-detail { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 12px; box-shadow: 0 8px 22px rgba(15,23,42,0.04); }
.od-item-visual { width: 96px; height: 96px; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, #f8fafc, #ecfeff); display: flex; align-items: center; justify-content: center; }
.od-item-visual img { width: 100%; height: 100%; object-fit: cover; }
.od-item-fallback { color: var(--primary); font-size: 1.5rem; }
.od-item-copy { min-width: 0; display: flex; flex-direction: column; flex: 1; }
.od-item-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.od-item-name { font-size: 0.93rem; font-weight: 800; color: var(--text); margin-bottom: 4px; word-wrap: break-word; overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
.od-item-category { font-size: 0.76rem; color: var(--text-muted); }
.od-item-qty { font-size: 0.75rem; padding: 6px 10px; border-radius: 999px; background: rgba(13,148,136,0.08); color: var(--primary-dark); font-weight: 700; }
.od-item-variants { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 4px; }
.od-tag { font-size: 0.68rem; padding: 2px 8px; border-radius: 20px; font-weight: 700; background: #ede9fe; color: #5b21b6; }
.od-tag-gender { background: #dbeafe; color: #1d4ed8; }
.od-tag-sleeve { background: #fef3c7; color: #b45309; }
.od-tag-color { background: #e0f2fe; color: #0369a1; }
.od-emb { font-size: 0.72rem; color: #0d9488; margin: 8px 0 4px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.od-emb-muted { color: var(--text-muted); }
.od-emb .dot { opacity: 0.4; }
.od-item-price { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 0.9rem; font-weight: 800; color: var(--primary-dark); margin-top: 8px; }
.od-item-price small { font-weight: 400; color: var(--text-muted); }
.od-shipping { font-size: 0.75rem; color: var(--text-muted); padding: 6px 14px 10px; display: flex; align-items: flex-start; gap: 6px; }
.od-shipping i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.acct-order-items { padding: 9px 14px; }
.acct-order-row { display: flex; justify-content: space-between; font-size: 0.82rem; padding: 3px 0; color: var(--text-mid); }
.acct-order-foot { display: flex; justify-content: space-between; align-items: center; padding: 9px 14px; border-top: 1px solid var(--border); }
.acct-order-foot-modern { margin: 14px 18px 0; padding: 14px 0 0; }
.acct-order-total { font-weight: 800; font-size: 0.9rem; color: var(--primary-dark); }
.acct-order-pay { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.acct-order-actions-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 12px 18px 18px; }
.acct-order-actions-row .btn { min-width: 150px; justify-content: center; }
.acct-share-btn { border-color: #86efac; color: #15803d; background: #f0fdf4; }
.acct-return-btn { border-color: #fecdd3; color: #be123c; background: #fff1f2; }
.acct-action-note { font-size: 0.76rem; color: var(--text-muted); font-weight: 600; }

.checkout-address-picker { margin-bottom: 16px; padding: 16px 18px; border-radius: 18px; border: 1px solid rgba(13,148,136,0.14); background: linear-gradient(135deg, rgba(13,148,136,0.08), rgba(219,234,254,0.45)); box-shadow: 0 14px 34px rgba(13,148,136,0.08); }
.checkout-address-picker-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.checkout-address-picker-head i { color: var(--primary); font-size: 1.2rem; }
.checkout-address-picker-head h5 { font-size: 0.95rem; color: var(--navy); margin-top: 2px; }
.checkout-address-eyebrow { display: inline-block; margin-bottom: 4px; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; color: #0d9488; }
.checkout-address-select-wrap { position: relative; }
.checkout-address-select { width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid rgba(13,148,136,0.18); background: rgba(255,255,255,0.92); font-size: 0.9rem; font-family: var(--font); color: var(--text); outline: none; transition: var(--transition); }
.checkout-address-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(13,148,136,0.12); }
.checkout-address-hint { margin-top: 10px; font-size: 0.79rem; color: var(--text-muted); line-height: 1.6; }
/* Profile form in account */
.acct-field-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 5px; display: block; }
/* Logout row */
.acct-footer { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; gap: 9px; }

/* ── 37. Product Marquee Strip ────────────────────────────────── */
.product-marquee { background: var(--bg-off); padding: 12px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; gap: 14px; animation: marquee-scroll 40s linear infinite; width: max-content; align-items: center; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 7px 14px 7px 7px; white-space: nowrap; transition: var(--transition); text-decoration: none; color: var(--text); font-size: 0.82rem; font-weight: 600; }
.marquee-item:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow); }
.marquee-item img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--bg-off); }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── 38. Enhanced Hero on smallest screens ────────────────────── */
@media (max-width: 480px) {
    .hero { min-height: 86vh; }
    .hero-content h1 { font-size: 1.58rem; }
    .hero-btns .btn { padding: 11px 18px; font-size: 0.84rem; }
}

/* ── 39. About page – Manufacturing Excellence img ────────────── */
.about-img-card { overflow: hidden; }
.about-manuf-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); transition: transform 0.45s ease; }
.about-img-card:hover .about-manuf-img { transform: scale(1.04); }

/* ── 40. Improved section heading alignment ───────────────────── */
.section-header.left { text-align: left; }
.section-header.left .section-desc { margin-left: 0; margin-right: 0; }

/* ── 41. Testimonials auto-carousel ──────────────────────────── */
.testimonial-carousel-wrap { position: relative; overflow: hidden; }
.testimonial-carousel { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-carousel .testimonial-card { min-width: calc(33.33% - 14px); flex-shrink: 0; }
.carousel-controls { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-mid); cursor: pointer; transition: var(--transition); border: none; }
.carousel-dot.active { background: var(--primary); width: 22px; border-radius: 4px; }
@media (max-width: 900px) { .testimonial-carousel .testimonial-card { min-width: calc(50% - 10px); } }
@media (max-width: 600px) { .testimonial-carousel .testimonial-card { min-width: 90%; } }

/* ── 42. Enhanced footer newsletter (optional) ────────────────── */
.footer-newsletter { margin-top: 13px; }
.footer-newsletter-form { display: flex; gap: 7px; margin-top: 8px; }
.footer-newsletter-form input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 9px 13px; font-size: 0.82rem; color: #fff; font-family: var(--font); outline: none; transition: var(--transition); }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-form input:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
.footer-newsletter-form button { padding: 9px 14px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.83rem; transition: var(--transition); }
.footer-newsletter-form button:hover { background: var(--primary-dark); }

/* ── 43. Mobile Layout Refresh ───────────────────────────────── */
@media (max-width: 768px) {
    body {
        background:
            radial-gradient(120% 60% at 20% -10%, rgba(13,148,136,0.12) 0%, rgba(13,148,136,0) 55%),
            radial-gradient(120% 60% at 100% 0%, rgba(15,23,42,0.08) 0%, rgba(15,23,42,0) 60%),
            var(--bg-off);
    }

    #header {
        top: 10px;
        left: 12px;
        right: 12px;
    }

    .navbar {
        border: 1px solid rgba(255,255,255,0.65);
        /* No backdrop-filter on mobile: it creates a containing block for
           position:fixed children (nav-links drawer), causing the drawer to
           be positioned/rendered inside the blurred compositing layer and
           appear blurry on Android Chrome and iOS Safari. */
        background: rgba(255,255,255,0.97);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 18px;
        box-shadow: 0 10px 28px rgba(15,23,42,0.12);
        padding: 10px 0;
    }

    #header.scrolled .navbar {
        background: #fff;
        box-shadow: 0 12px 34px rgba(15,23,42,0.16);
    }

    .navbar .container {
        gap: 10px;
        padding: 0 12px;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon img {
        width: 38px;
        height: 42px;
        border-radius: 10px;
    }

    .logo-text {
        font-size: 0.96rem;
    }

    .logo-sub {
        font-size: 0.58rem;
    }

    .nav-actions {
        margin-left: auto;
        gap: 5px;
    }

    .nav-icon-btn {
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }

    .hamburger {
        width: 34px;
        height: 34px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        align-items: center;
        justify-content: center;
        gap: 4px;
        background: #fff;
    }

    .hamburger span {
        width: 14px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(5px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-5px);
    }

    .nav-links {
        inset: 12px 0 0 auto;
        width: min(84vw, 340px);
        height: calc(100vh - 12px);
        border-radius: 20px 0 0 0;
        border-left: 1px solid var(--border);
        /* Opaque background (no backdrop-filter): a translucent + blurred panel
           creates a compositing layer that fails to repaint newly-shown accordion
           content on iOS Safari, so expanded categories appeared blank/off-screen
           until an unrelated repaint (e.g. opening the chat) was triggered. */
        background: #fff;
        justify-content: flex-start;
        align-items: stretch;
        /* Extra bottom padding so the last items (Services, Contact) can scroll
           clear of the fixed mobile bottom nav bar instead of being hidden by it. */
        padding: 88px 16px calc(84px + env(safe-area-inset-bottom, 0px));
        gap: 8px;
        transform: translateX(105%);
        transition: transform 0.3s ease;
        box-shadow: -18px 0 40px rgba(15,23,42,0.15);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links > li > a {
        font-size: 0.96rem;
        font-weight: 700;
        width: 100%;
        justify-content: space-between;
        padding: 11px 12px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid var(--border);
    }

    .mega-menu {
        background: var(--bg-off);
        border-radius: 12px;
        margin-top: 6px;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr !important;
        gap: 6px;
    }

    .hero {
        min-height: 78vh;
        max-height: none;
        padding-top: 16px;
    }

    .hero-content {
        padding-top: 16px;
        padding-bottom: 36px;
    }

    .hero-text {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 22px;
        padding: 20px 16px;
        box-shadow: 0 18px 34px rgba(0,0,0,0.18);
    }

    .hero-badge {
        margin-bottom: 14px;
        font-size: 0.66rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .hero-content > p,
    .hero-text > p {
        font-size: 0.9rem;
        margin-bottom: 18px;
        color: rgba(255,255,255,0.86);
    }

    .hero-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 14px;
    }

    .hero-btns .btn {
        justify-content: center;
        padding: 10px 10px;
        font-size: 0.78rem;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .trust-item {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 10px;
        padding: 7px 9px;
    }

    .hero-controls {
        bottom: 16px;
    }

    .trust-strip {
        background: transparent;
        border: none;
        padding: 8px 0 2px;
    }

    .trust-strip-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        justify-content: flex-start;
        padding: 0 14px 6px;
        scroll-snap-type: x mandatory;
    }

    .trust-strip-item {
        min-width: 230px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fff;
        scroll-snap-align: start;
        box-shadow: var(--shadow);
    }

    .product-marquee {
        border: none;
        background: transparent;
        padding: 6px 0 14px;
    }

    .marquee-track {
        animation: marquee-scroll-mobile 38s linear infinite;
        overflow: hidden;
        width: max-content;
        padding: 0 14px;
        gap: 9px;
    }

    .marquee-track:hover { animation-play-state: paused; }

    .marquee-item {
        flex: 0 0 auto;
        border-radius: 14px;
        padding: 8px 10px;
        font-size: 0.76rem;
    }

    .marquee-item img {
        width: 28px;
        height: 28px;
    }

    .shop-toolbar {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 11px;
        margin-bottom: 18px;
    }
}

@keyframes marquee-scroll-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .hero-btns {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.64rem;
    }

    .logo-text-wrap {
        display: none;
    }
}

/* ================================================================
   SSA v4 — Enhancement Block
   ================================================================ */

/* E1. Skip link (accessibility) */
.skip-link{position:absolute;top:-50px;left:12px;background:var(--primary);color:#fff;padding:8px 16px;border-radius:6px;font-size:0.85rem;font-weight:700;z-index:99999;transition:top 0.2s;}
.skip-link:focus{top:12px;}

/* E2. Noscript banner */
.noscript-banner{background:#fef3c7;border-bottom:2px solid #f59e0b;padding:12px 20px;text-align:center;font-size:0.88rem;color:#92400e;font-weight:600;}

/* E3. Category tile shimmer */
.cat-tile-img{overflow:hidden;}
.cat-tile-img::before{content:'';position:absolute;inset:0;background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,0.15) 50%,transparent 70%);transform:translateX(-100%);transition:transform 0.6s ease;z-index:1;pointer-events:none;}
.category-tile:hover .cat-tile-img::before{transform:translateX(100%);}
.category-tile:hover{border-color:rgba(13,148,136,0.3);box-shadow:0 16px 48px rgba(13,148,136,0.14),0 4px 12px rgba(0,0,0,0.06);}

/* E4. Shop card bottom gradient */
.shop-card::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(13,148,136,0.04) 0%,transparent 40%);opacity:0;transition:opacity 0.3s ease;pointer-events:none;z-index:0;border-radius:var(--radius-lg);}
.shop-card:hover::after{opacity:1;}

/* E5. Product price bolder */
.shop-card-price .price{font-size:1.22rem;letter-spacing:-0.03em;}

/* E6. Testimonials — quote mark */
.testimonial-card>p::before{content:'\201C';font-size:3rem;color:var(--primary);opacity:0.15;line-height:0;vertical-align:-0.55em;margin-right:4px;font-family:Georgia,serif;}

/* E7. CTA banner gradient */
.cta-banner{background:linear-gradient(135deg,#0a0f1e 0%,#0f172a 40%,#0c2d23 70%,#0d4a3e 100%);}

/* E8. Footer link heading underline */
.footer-links h4::after{content:'';display:block;width:28px;height:2px;background:var(--primary);margin-top:6px;border-radius:2px;}

/* E9. Form inputs left accent on focus */
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-left-width:3px;}

/* E10. Auth tab active gradient */
.auth-tab.active{background:linear-gradient(135deg,var(--primary),var(--primary-dark));color:#fff;box-shadow:0 4px 12px rgba(13,148,136,0.25);}

/* E11. Chatbot bubbles improved */
.chat-message.bot .message-content{border:1px solid var(--border);border-radius:4px 14px 14px 14px;}
.chat-message.user .message-content{border-radius:14px 4px 14px 14px;}

/* E12. Hero text shadow */
.hero-content h1{text-shadow:0 2px 16px rgba(0,0,0,0.35);}
.page-hero-content h1{text-shadow:0 2px 12px rgba(0,0,0,0.3);}

/* E13. Wishlist heart pulse */
.shop-card-wishlist:hover i,.wishlist-nav-btn:hover i{animation:heartbeat 0.4s ease;}
@keyframes heartbeat{0%{transform:scale(1);}30%{transform:scale(1.3);}60%{transform:scale(0.9);}100%{transform:scale(1);}}

/* E14. Active nav link dot indicator */
.nav-links>li>a.active{font-weight:700;}

/* E15. Back-to-top gradient */
.back-to-top{background:linear-gradient(135deg,var(--primary),var(--primary-dark));box-shadow:0 4px 16px rgba(13,148,136,0.35);}

/* E16. Trust strip horizontal scroll snap */
@media(max-width:768px){
  .trust-strip-inner{scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;}
  .trust-strip-item{scroll-snap-align:start;}
}

/* E17. Marquee pause on reduced motion */
@media(prefers-reduced-motion:reduce){.marquee-track{animation:none;}}

/* E18. Wider tap targets mobile product buttons */
@media(max-width:480px){
  .shop-card-footer .btn{padding:10px 8px;min-height:42px;}
}

/* E19. Stat numbers larger on desktop */
@media(min-width:1024px){.stat-number{font-size:2.8rem;}}

/* E20. Smooth scrollbar globally */
html{scroll-behavior:smooth;}
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-thumb{background:var(--border-mid);border-radius:10px;}
::-webkit-scrollbar-thumb:hover{background:var(--primary);}


/* ================================================================
   SSA v4 — Enhancement Block (appended)
   Improvements: fonts, section rhythm, category tiles, cards,
   testimonials, footer, forms, mobile polish, dark-mode tease,
   accessibility, and scroll snap for horizontal carousels.
   ================================================================ */

/* ── E1. Font: Inter — professional, consistent with admin panel ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..900;1,14..32,300..900&display=swap');

/* ── E2. Smoother root transitions ────────────────────────────── */
:root {
  --transition-fast: all 0.15s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.4s cubic-bezier(0.4,0,0.2,1);
  --radius-2xl: 32px;
  --primary-50:  #f0fdfa;
  --primary-100: #ccfbf1;
}

/* ── E3. Improved focus rings (accessibility) ──────────────────── */
*:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 5px;
}

/* ── E4. Section alternating backgrounds ──────────────────────── */
section.section-alt { background: var(--bg-off); }

/* ── E5. Category tiles — hover shimmer overlay ───────────────── */
.cat-tile-img {
  position: relative;
  overflow: hidden;
}
.cat-tile-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.category-tile:hover .cat-tile-img::before { transform: translateX(100%); }
.category-tile:hover .cat-tile-img { filter: brightness(1.05); }

/* ── E6. Category tiles — animated gradient border on hover ───── */
.category-tile {
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.category-tile:hover {
  border-color: rgba(13,148,136,0.3);
  box-shadow: 0 16px 48px rgba(13,148,136,0.14), 0 4px 12px rgba(0,0,0,0.06);
}

/* ── E7. Shop card — improved image aspect ratio ──────────────── */
.shop-card-image img {
  height: 220px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 480px) {
  .shop-card-image img { height: 180px; }
}

/* ── E8. Shop card — gradient add-to-cart hover overlay ───────── */
.shop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,148,136,0.04) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius-lg);
}
.shop-card:hover::after { opacity: 1; }

/* ── E9. Stat numbers — larger on desktop ─────────────────────── */
@media (min-width: 1024px) {
  .stat-number { font-size: 2.8rem; }
}

/* ── E10. Testimonials — subtle quote mark ────────────────────── */
.testimonial-card > p::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 4px;
  font-family: Georgia, serif;
}

/* ── E11. CTA banner — gradient shimmer line ──────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #0c2d23 70%, #0d4a3e 100%);
}

/* ── E12. Footer — subtle teal divider under headings ─────────── */
.footer-links h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  margin-top: 6px;
  border-radius: 2px;
}

/* ── E13. Form inputs — teal left border on focus ─────────────── */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-left-width: 3px;
  padding-left: 11px;
}

/* ── E14. Auth modal — improved register tab ──────────────────── */
.auth-panel-right .auth-tabs {
  border-radius: var(--radius-sm);
}
.auth-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 12px rgba(13,148,136,0.25);
}

/* ── E15. Cart drawer — item count badge improvement ──────────── */
.cart-count {
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
}

/* ── E16. Chatbot — improved bubble shape ─────────────────────── */
.chat-message.bot .message-content {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 4px 14px 14px 14px;
}
.chat-message.user .message-content {
  border-radius: 14px 4px 14px 14px;
}

/* ── E17. Page hero — text shadow for readability ─────────────── */
.page-hero-content h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content h1 {
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

/* ── E18. Wishlist — heart icon pulse on hover ────────────────── */
.shop-card-wishlist:hover i,
.wishlist-nav-btn:hover i {
  animation: heartbeat 0.4s ease;
}
@keyframes heartbeat {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* ── E19. Mobile — larger product grid tap areas ──────────────── */
@media (max-width: 480px) {
  .shop-card-footer .btn { padding: 10px 8px; min-height: 42px; font-size: 0.74rem; }
}

/* ── E20. Back-to-top — improved visibility ───────────────────── */
.back-to-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 16px rgba(13,148,136,0.35);
}

/* ── E21. Hero trust items — pill style on mobile ─────────────── */
@media (max-width: 768px) {
  .hero-trust { gap: 6px; }
  .trust-item i { font-size: 0.82rem; }
}

/* ── E22. Improved active nav link indicator ──────────────────── */
.nav-links > li > a.active {
  color: var(--primary);
  background: var(--primary-bg);
  font-weight: 700;
  position: relative;
}
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

/* ── E23. Section tag — slight icon gap ───────────────────────── */
.section-tag i { margin-right: 3px; }

/* ── E24. Scroll snap on mobile trust strip ───────────────────── */
@media (max-width: 768px) {
  .trust-strip-inner {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .trust-strip-item { scroll-snap-align: start; }
}

/* ── E25. Horizontal product marquee – pause on reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── E26. Product price — larger and bolder ───────────────────── */
.shop-card-price .price { font-size: 1.22rem; letter-spacing: -0.03em; }

/* ── E27. Mobile menu — category dropdown readable ─────────────── */
@media (max-width: 1024px) {
  .mega-col h4 { font-size: 0.88rem; }
  .mega-col ul li a { font-size: 0.84rem; padding: 5px 0; }
}

/* ── E28. Skip to content link (accessibility) ─────────────────── */
.skip-link {
  position: absolute;
  top: -50px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ── E29. Improved footer bottom border ───────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 0;
}

/* ── OOS color swatch — diagonal strike ───────────────────────── */
.pd-color-swatch.swatch-oos {
  opacity: 0.45;
  cursor: not-allowed;
  position: relative;
}
.pd-color-swatch.swatch-oos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, #e11d48 45%, #e11d48 55%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}

/* card tile swatch OOS — same diagonal strike */
.color-swatch.swatch-oos {
  opacity: 0.45;
  cursor: not-allowed;
  position: relative;
}
.color-swatch.swatch-oos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, #e11d48 45%, #e11d48 55%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}
.color-swatch.swatch-oos:hover { border-color: var(--border) !important; box-shadow: none !important; }

/* ── OOS size button — strikethrough text ─────────────────────── */
.pd-size-btn.is-oos {
  text-decoration: line-through;
  text-decoration-color: #e11d48;
}
.noscript-banner {
  background: #fef3c7;
  border-bottom: 2px solid #f59e0b;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.88rem;
  color: #92400e;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT SEARCH BAR
   ════════════════════════════════════════════════════════════════ */
.product-search-bar { margin-bottom: 20px; position: relative; }
.psb-wrap {
    display: flex; align-items: center;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 0 20px;
    gap: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.psb-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,0.10);
}
.psb-icon { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; }
.psb-wrap input {
    flex: 1; border: none; outline: none;
    font-family: var(--font); font-size: 0.95rem; color: var(--text);
    padding: 15px 0; background: transparent;
}
.psb-wrap input::placeholder { color: var(--text-muted); }
.psb-clear {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); width: 28px; height: 28px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; flex-shrink: 0; transition: background 0.2s, color 0.2s;
}
.psb-clear:hover { background: var(--bg-off); color: var(--text); }
@media (max-width: 768px) {
    .psb-wrap { padding: 0 14px; }
    .psb-wrap input { font-size: 0.88rem; padding: 12px 0; }
}

/* ════════════════════════════════════════════════════════════════
   SCRUBS FILTER BUTTON (SIGNATURE)
   ════════════════════════════════════════════════════════════════ */
/* Unselected: outlined teal so it looks distinct from other filter buttons */
.filter-btn-scrubs {
    display: inline-flex !important;
    align-items: center;
    background: #fff !important;
    color: #0d9488 !important;
    border: 2px solid #0d9488 !important;
    white-space: nowrap;
    gap: 6px;
    font-weight: 700;
}
.filter-btn-scrubs i { font-size: 0.72rem; }
/* Hover: slight teal tint */
.filter-btn-scrubs:hover {
    background: #f0fdfa !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(13,148,136,0.18);
    color: #0f766e !important;
}
/* Active/selected: solid dark teal — clearly different from both states */
.filter-btn-scrubs.active {
    background: linear-gradient(135deg, #0f766e, #134e4a) !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13,148,136,0.38);
}
.filter-btn-scrubs.active .scrubs-pill {
    background: rgba(255,255,255,0.22);
}
.filter-btn-scrubs:not(.active) .scrubs-pill {
    background: #ccfbf1;
    color: #0f766e;
}
.scrubs-pill {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
}

/* Scrubs mega-menu col */
.mega-col-scrubs h4 a { color: var(--primary) !important; }
.mega-scrubs-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ════════════════════════════════════════════════════════════════
   SCRUBS SPOTLIGHT SECTION
   ════════════════════════════════════════════════════════════════ */
.scrubs-spotlight {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0c1a27 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.scrubs-spotlight::before {
    content: '';
    position: absolute; top: -120px; right: -120px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 68%);
    pointer-events: none;
}
.scrubs-spotlight::after {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 68%);
    pointer-events: none;
}
.ss-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 52px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ss-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(13,148,136,0.22);
    border: 1px solid rgba(13,148,136,0.42);
    color: #5eead4;
    border-radius: 20px;
    font-size: 0.76rem; font-weight: 700;
    padding: 5px 14px;
    letter-spacing: 0.07em; text-transform: uppercase;
    margin-bottom: 16px;
}
.ss-content h2 {
    font-size: 2.6rem; font-weight: 900;
    color: #fff; line-height: 1.12;
    margin-bottom: 14px;
}
.ss-content h2 span { color: #2dd4bf; }
.ss-content > p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem; line-height: 1.68;
    margin-bottom: 24px; max-width: 460px;
}
.ss-features {
    list-style: none; padding: 0; margin: 0 0 30px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 11px;
}
.ss-features li {
    color: rgba(255,255,255,0.85);
    font-size: 0.87rem;
    display: flex; align-items: center; gap: 9px;
}
.ss-features li i { color: #2dd4bf; font-size: 0.8rem; flex-shrink: 0; }
.ss-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* CTA buttons inside spotlight (standalone, no conflict) */
.btn-ss-white {
    background: #fff; color: var(--primary);
    font-weight: 700; border: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-ss-white:hover {
    background: #f0fdfa; color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.btn-ss-glass {
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.26);
    color: #fff; font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.2s;
}
.btn-ss-glass:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

/* Visual card on the right */
.ss-visual { display: flex; justify-content: center; }
.ss-card-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 38px 44px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%; max-width: 340px;
}
.ss-icon-card {
    width: 116px; height: 116px;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    border-radius: 30px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 18px 48px rgba(13,148,136,0.45);
    animation: ss-float 4s ease-in-out infinite;
}
.ss-icon-card i { font-size: 2.8rem; color: #fff; }
.ss-icon-card span {
    font-size: 0.6rem; font-weight: 800;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 5px;
}
@keyframes ss-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* CliniFlex spotlight visual — shows admin-uploaded product image */
.ss-visual-img {
    position: relative;
    width: 100%; max-width: 300px;
    aspect-ratio: 4 / 5;
    border-radius: 26px;
    margin: 0 auto 26px;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    background-size: cover; background-position: center;
    box-shadow: 0 20px 50px rgba(13,148,136,0.45);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    animation: ss-float 4.5s ease-in-out infinite;
}
.ss-visual-img i { font-size: 3rem; color: rgba(255,255,255,0.92); }
.ss-visual-img.has-img i { display: none; }
.ss-visual-img.has-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.62) 0%, transparent 55%);
}
.ss-visual-label {
    position: absolute; left: 0; right: 0; bottom: 12px; z-index: 1;
    text-align: center;
    font-size: 0.62rem; font-weight: 800;
    color: #fff; letter-spacing: 0.12em; text-transform: uppercase;
}
.ss-stats {
    display: flex; gap: 22px;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
}
.ss-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ss-stat span { font-size: 1.22rem; font-weight: 800; color: #fff; }
.ss-stat small { font-size: 0.7rem; color: rgba(255,255,255,0.52); }

/* ── Responsive Spotlight ─── */
@media (max-width: 1024px) {
    .ss-inner { grid-template-columns: 1fr 340px; gap: 36px; }
    .ss-content h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
    .scrubs-spotlight { padding: 44px 0; }
    .ss-inner { grid-template-columns: 1fr; gap: 28px; }
    .ss-visual { display: none; }
    .ss-content h2 { font-size: 1.7rem; }
    .ss-features { grid-template-columns: 1fr; gap: 8px; }
    .ss-actions { flex-direction: column; align-items: flex-start; }
    .ss-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
    .ss-content h2 { font-size: 1.45rem; }
    .ss-content > p { font-size: 0.9rem; }
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT GRID EMPTY STATES
   ════════════════════════════════════════════════════════════════ */
.products-empty-state {
    grid-column: 1 / -1;
    padding: 60px 24px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    background: linear-gradient(180deg, var(--bg-off, #f8fafc), #fff);
    border: 1.5px dashed var(--border);
    border-radius: 18px;
}
.products-empty-state i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.35;
    margin-bottom: 4px;
}
.products-empty-state h3 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--text); margin: 0;
}
.products-empty-state p {
    font-size: 0.9rem; color: var(--text-muted);
    max-width: 380px; margin: 0;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   IMAGE LIGHTBOX (full-screen expand)
   ════════════════════════════════════════════════════════════════ */
.pd-lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(10,14,25,0.92);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    cursor: zoom-out;
    backdrop-filter: blur(6px);
}
.pd-lightbox-overlay img {
    max-width: 92vw; max-height: 92vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    cursor: default;
}
.pd-lightbox-close {
    position: fixed; top: 20px; right: 24px;
    background: rgba(255,255,255,0.14); color: #fff;
    border: none; border-radius: 50%;
    width: 40px; height: 40px;
    font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}
.pd-lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ════════════════════════════════════════════════════════════════
   EMBROIDERY SECTION
   ════════════════════════════════════════════════════════════════ */
.emb-section {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    margin: 14px 0 4px;
    overflow: hidden;
}
.emb-toggle {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; cursor: pointer;
    background: var(--bg-off);
    font-size: 0.88rem; font-weight: 700;
    user-select: none;
}
.emb-toggle:hover { background: var(--primary-bg, #f0fdfa); }
.emb-badge {
    background: var(--primary); color: #fff;
    border-radius: 20px; font-size: 0.68rem;
    padding: 2px 9px; font-weight: 700;
}
/* Free-embroidery "Limited Time Offer" highlight (stylish + modern) */
.emb-badge.emb-free {
    background: linear-gradient(120deg, #f59e0b, #ef4444);
    color: #fff; display: inline-flex; align-items: center; gap: 5px;
    box-shadow: 0 3px 10px rgba(239,68,68,0.35);
    animation: emb-free-pulse 1.8s ease-in-out infinite;
}
@keyframes emb-free-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.emb-section-free { border: 1.5px solid #fbbf24; box-shadow: 0 0 0 3px rgba(251,191,36,0.14); }
.emb-section-free .emb-toggle { background: linear-gradient(90deg, rgba(253,230,138,0.4), transparent 72%); }
.emb-type-price { font-size: 0.66rem; font-weight: 800; opacity: 0.85; margin-left: 4px; }
.emb-type-price.emb-type-free { color: #16a34a; background: rgba(22,163,74,0.12); padding: 1px 6px; border-radius: 20px; opacity: 1; }
.emb-type-btn.active .emb-type-price { opacity: 1; }
.pd-emb-note { font-size: 0.74rem; font-weight: 700; color: var(--primary); background: var(--primary-bg,#f0fdfa); padding: 3px 9px; border-radius: 6px; align-self: center; }
.pd-emb-note.pd-emb-note-free {
    color: #fff; background: linear-gradient(120deg, #f59e0b, #ef4444);
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 3px 10px rgba(239,68,68,0.3);
}
.emb-chevron { font-size: 0.75rem; transition: transform 0.25s; }
.emb-body {
    padding: 16px;
    display: flex; flex-direction: column; gap: 14px;
    border-top: 1.5px solid var(--border);
}
.emb-field { display: flex; flex-direction: column; gap: 5px; }
.emb-field label {
    font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.emb-type-row { display: flex; gap: 8px; flex-wrap: wrap; }
.emb-type-btn {
    padding: 7px 15px;
    border: 1.5px solid var(--border);
    border-radius: 6px; background: #fff;
    font-size: 0.8rem; font-weight: 700; cursor: pointer;
    transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.emb-type-btn.active {
    border-color: var(--primary);
    background: var(--primary-bg, #f0fdfa);
    color: var(--primary);
}
.emb-text-fields { display: flex; flex-direction: column; gap: 12px; }
.emb-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.emb-inp-wrap { position: relative; display: flex; align-items: center; }
.emb-inp-wrap input, .emb-field select {
    width: 100%; padding: 9px 50px 9px 12px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-family: var(--font); font-size: 0.85rem; outline: none;
    box-sizing: border-box;
}
.emb-inp-wrap input:focus, .emb-field select:focus { border-color: var(--primary); }
.emb-char-count {
    position: absolute; right: 10px;
    font-size: 0.68rem; color: var(--text-muted); pointer-events: none;
}
.emb-colors { display: flex; gap: 8px; flex-wrap: wrap; }
.emb-col {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid transparent; cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.emb-col.active {
    transform: scale(1.18);
    box-shadow: 0 0 0 2.5px var(--primary);
}
.emb-fonts { display: flex; gap: 8px; flex-wrap: wrap; }
.emb-font {
    padding: 8px 14px;
    border: 1.5px solid var(--border); border-radius: 6px;
    background: #fff; cursor: pointer; min-width: 105px; text-align: center;
    transition: border-color 0.18s, background 0.18s;
    font-size: 0.83rem;
}
.emb-font.active {
    border-color: var(--primary);
    background: var(--primary-bg, #f0fdfa);
    color: var(--primary);
}
@media (max-width: 480px) {
    .emb-row2 { grid-template-columns: 1fr; }
    .emb-type-row { gap: 6px; }
}
/* Embroidery logo upload */
.emb-logo-fields { display: flex; flex-direction: column; gap: 12px; }
.emb-field input[type="file"] { border: 1.5px dashed var(--border); border-radius: 8px; padding: 8px; font-family: var(--font); font-size: 0.82rem; cursor: pointer; background: var(--bg-off); }
.emb-field input[type="file"]:hover { border-color: var(--primary); }
.emb-logo-preview { display: flex; align-items: center; gap: 10px; margin-top: 6px; padding: 8px; background: var(--bg-off); border-radius: 8px; }
.emb-logo-filename { font-size: 0.75rem; color: var(--text-muted); word-break: break-all; }
.emb-logo-note { font-size: 0.73rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.emb-logo-note i { color: var(--primary); }

/* ════════════════════════════════════════════════════════════════
   ADMIN – COLOR VARIANT ROWS
   ════════════════════════════════════════════════════════════════ */
#cvContainer { display: flex; flex-direction: column; gap: 12px; }
.cv-row {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px; padding: 14px;
    background: #f8fafc;
    display: flex; flex-direction: column; gap: 10px;
}
.cv-row-head { display: flex; align-items: center; gap: 10px; }
.cv-fields { display: flex; gap: 8px; flex: 1; align-items: center; }
.cv-fields input[type="text"] {
    flex: 1; padding: 7px 10px;
    border: 1.5px solid #e2e8f0; border-radius: 7px;
    font-size: 0.84rem; outline: none;
}
.cv-fields input[type="text"]:focus { border-color: #0d9488; }
.cv-imgs { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-start; }
.cv-thumb-wrap { position: relative; }
.cv-thumb {
    width: 64px; height: 64px; object-fit: cover;
    border-radius: 7px; border: 1.5px solid #e2e8f0; display: block;
}
.cv-thumb-del {
    position: absolute; top: -6px; right: -6px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #ef4444; color: #fff; border: none;
    cursor: pointer; font-size: 0.62rem;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.cv-add-img-btn {
    border: 1.5px dashed #0d9488; background: transparent;
    color: #0d9488; border-radius: 7px;
    padding: 6px 14px; font-size: 0.8rem; cursor: pointer; font-weight: 600;
}
.cv-add-img-btn:hover { background: #f0fdfa; }
.cv-hex-wrap { cursor: pointer; position: relative; }
.products-empty-state .btn { margin-top: 6px; }

/* ── 43. Track Order Button ─────────────────────────────────────── */
.track-order-btn { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.7); font-size: 0.72rem; font-weight: 600; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 20px; padding: 4px 11px; cursor: pointer; transition: var(--transition); font-family: var(--font); white-space: nowrap; text-decoration: none; }
.track-order-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.track-order-btn i { font-size: 0.75rem; }

/* ── 44. Track Order Modal ────────────────────────────────────────── */
.track-modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.65); z-index: 99998; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.track-modal-overlay.active { opacity: 1; pointer-events: all; }
.track-modal { max-width: 440px; width: 100%; border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 24px 64px rgba(15,23,42,0.2); transform: translateY(16px) scale(0.98); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.track-modal-overlay.active .track-modal { transform: none; }
.track-modal-head { background: linear-gradient(135deg, var(--navy), #1e3a5f); padding: 24px 24px 20px; position: relative; }
.track-modal-head h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; display: flex; align-items: center; gap: 9px; }
.track-modal-head p { font-size: 0.79rem; color: rgba(255,255,255,0.65); margin: 0; }
.track-modal-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.12); border: none; color: rgba(255,255,255,0.7); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.85rem; transition: var(--transition); }
.track-modal-close:hover { background: rgba(255,255,255,0.25); color: #fff; }
.track-modal-body { padding: 24px; }
.track-input-wrap { position: relative; margin-bottom: 14px; }
.track-input { width: 100%; padding: 13px 14px 13px 42px; border: 2px solid var(--border); border-radius: 12px; font-size: 0.92rem; font-family: var(--font); outline: none; transition: var(--transition); background: var(--bg-off); color: var(--text); }
.track-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(13,148,136,0.1); background: #fff; }
.track-input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.85rem; pointer-events: none; }
.track-result { margin-top: 14px; display: none; }
.track-result.visible { display: block; }
.track-result-card { background: var(--bg-off); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.track-result-id { font-size: 0.9rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.track-result-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 4px; }
.track-not-found { text-align: center; padding: 16px; color: var(--text-muted); font-size: 0.84rem; }
.track-not-found i { font-size: 1.5rem; color: var(--text-faint); display: block; margin-bottom: 8px; }

/* ── 45. Order Detail Page (odp-) ────────────────────────────────── */
.odp-page { padding-top: 0; min-height: 100vh; background: #f4f6f9; }
.odp-back-bar { padding: 18px 0 0; }
.odp-back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--primary); background: rgba(13,148,136,0.08); border-radius: 10px; padding: 8px 16px; transition: var(--transition); cursor: pointer; border: none; font-family: var(--font); text-decoration: none; }
.odp-back-btn:hover { background: var(--primary); color: #fff; }
.odp-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a2f4e 100%); color: #fff; padding: 20px 0 32px; margin-bottom: 0; }
.odp-hero-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; padding: 16px 0 0; }
.odp-order-eyebrow { font-size: 0.68rem; font-weight: 800; color: #5eead4; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.odp-order-number { font-size: 1.9rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; margin-bottom: 10px; }
.odp-order-metas { display: flex; gap: 16px; flex-wrap: wrap; }
.odp-meta-chip { font-size: 0.78rem; color: rgba(255,255,255,0.72); display: flex; align-items: center; gap: 5px; }
.odp-meta-chip i { color: #5eead4; font-size: 0.75rem; }
.odp-hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.odp-status-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 800; padding: 7px 18px; border-radius: 50px; letter-spacing: 0.04em; text-transform: capitalize; }
.odp-status-pill.processing { background: rgba(245,158,11,0.25); color: #fbbf24; border: 1px solid rgba(245,158,11,0.4); }
.odp-status-pill.approved  { background: rgba(99,102,241,0.25); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.4); }
.odp-status-pill.packed    { background: rgba(168,85,247,0.25); color: #c4b5fd; border: 1px solid rgba(168,85,247,0.4); }
.odp-status-pill.shipped   { background: rgba(59,130,246,0.25); color: #93c5fd; border: 1px solid rgba(59,130,246,0.4); }
.odp-status-pill.delivered { background: rgba(16,185,129,0.25); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.4); }
.odp-status-pill.cancelled { background: rgba(239,68,68,0.25); color: #fca5a5; border: 1px solid rgba(239,68,68,0.4); }
.odp-total-display { font-size: 1.5rem; font-weight: 900; color: #fff; }
.odp-total-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
/* Content area */
.odp-body { padding: 28px 0 60px; }
.odp-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 22px; }
.odp-main { display: flex; flex-direction: column; gap: 20px; }
.odp-aside { display: flex; flex-direction: column; gap: 16px; }
.odp-card { background: #fff; border-radius: 18px; box-shadow: 0 2px 16px rgba(15,23,42,0.06); overflow: hidden; }
.odp-card-head { display: flex; align-items: center; gap: 10px; padding: 15px 20px; border-bottom: 1px solid var(--border); }
.odp-card-head h3 { font-size: 0.9rem; font-weight: 800; color: var(--navy); margin: 0; }
.odp-card-head i { color: var(--primary); font-size: 0.95rem; }
.odp-card-body { padding: 18px 20px; }
/* Timeline */
.odp-timeline { display: flex; justify-content: space-between; padding: 24px 20px; overflow-x: auto; gap: 0; }
.odp-tl-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; min-width: 80px; }
.odp-tl-step:not(:last-child)::after { content: ''; position: absolute; top: 17px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.odp-tl-step.done:not(:last-child)::after { background: linear-gradient(90deg, #0d9488, #14b8a6); }
.odp-tl-step.active:not(:last-child)::after { background: linear-gradient(90deg, #0d9488, var(--border)); }
.odp-tl-dot { width: 34px; height: 34px; border-radius: 50%; background: #e9ecef; border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--border); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; color: #adb5bd; font-size: 0.8rem; transition: var(--transition); }
.odp-tl-step.done .odp-tl-dot { background: linear-gradient(135deg, #0d9488, #14b8a6); color: #fff; box-shadow: 0 4px 12px rgba(13,148,136,0.35); border-color: #fff; }
.odp-tl-step.active .odp-tl-dot { background: linear-gradient(135deg, #0d9488, #14b8a6); color: #fff; box-shadow: 0 4px 12px rgba(13,148,136,0.35); border-color: #fff; animation: odp-pulse 2s ease-in-out infinite; }
@keyframes odp-pulse { 0%,100% { box-shadow: 0 4px 12px rgba(13,148,136,0.35); } 50% { box-shadow: 0 4px 22px rgba(13,148,136,0.6); } }
.odp-tl-step.cancelled .odp-tl-dot { background: linear-gradient(135deg, #ef4444, #f97316); color: #fff; box-shadow: 0 4px 12px rgba(239,68,68,0.3); }
.odp-tl-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-align: center; margin-top: 8px; line-height: 1.3; }
.odp-tl-step.done .odp-tl-label, .odp-tl-step.active .odp-tl-label { color: var(--primary-dark); }
.odp-tl-date { font-size: 0.6rem; color: var(--text-faint); text-align: center; margin-top: 3px; line-height: 1.4; }
/* Order items in detail page */
.odp-item-list { display: flex; flex-direction: column; }
.odp-item { display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.odp-item:last-child { border-bottom: none; }

/* ================================================================
   v91 PREMIUM REDESIGN — New color system, modern components
   Primary: #0F766E  Accent: #14B8A6  Highlight: #F59E0B
   ================================================================ */

/* ── R1. Overridden Design Tokens ─────────────────────────────── */
:root {
    --primary:        #0f766e;
    --primary-dark:   #0c5e58;
    --primary-hover:  #14b8a6;
    --primary-bg:     rgba(15,118,110,0.08);
    --highlight:      #f59e0b;
    --gradient-main:  linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    --gradient-deep:  linear-gradient(135deg, #0c5e58 0%, #0f766e 60%, #14b8a6 100%);
    --glass-bg:       rgba(255,255,255,0.07);
    --glass-border:   rgba(255,255,255,0.15);
}

/* ── R2. Premium Buttons ──────────────────────────────────────── */
.btn-gradient {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 15px rgba(15,118,110,0.25);
}
.btn-gradient:hover {
    background: var(--gradient-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15,118,110,0.35);
}
.nav-cta {
    background: var(--gradient-main) !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(15,118,110,0.28) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-cta:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 24px rgba(15,118,110,0.38) !important;
}

/* ── R3. Glass Top Bar ────────────────────────────────────────── */
.top-bar {
    background: rgba(10, 18, 32, 0.97) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(20,184,166,0.12) !important;
}
.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 16px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.75) !important;
}
.top-info span i { color: #5eead4; }
.top-social { display: flex; align-items: center; gap: 6px; }
.track-order-btn {
    background: rgba(15,118,110,0.18) !important;
    border: 1px solid rgba(20,184,166,0.3) !important;
    color: #5eead4 !important;
    font-size: 0.72rem !important;
    padding: 4px 11px !important;
    border-radius: 20px !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease !important;
}
.track-order-btn:hover {
    background: rgba(15,118,110,0.35) !important;
    border-color: #5eead4 !important;
    transform: none !important;
}
.top-social > a:not(.track-order-btn) {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    transition: all 0.2s ease;
}
.top-social > a:not(.track-order-btn):hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ── R4. Sticky Header with Scroll Transition ─────────────────── */
#header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
#header.scrolled .navbar {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid rgba(15,118,110,0.1) !important;
}
.navbar {
    transition: all 0.3s ease !important;
}

/* ── R5. Nav Link Animated Underline ─────────────────────────── */
.nav-links > li > a:not(.btn) {
    position: relative;
    padding-bottom: 4px;
}
.nav-links > li > a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 0.3s ease;
    transform: none;
}
.nav-links > li > a:not(.btn):hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}
@media (max-width: 1024px) {
    .nav-links > li > a:not(.btn)::after { display: none; }
}

/* ── R6. Why Choose Us — Bento Grid ──────────────────────────── */
.bento-why {
    background: var(--bg-off);
}
.bento-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.bento-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(15,118,110,0.12); border-color: rgba(20,184,166,0.3); }
.bento-card:hover::before { transform: scaleX(1); }
.bento-card--hero {
    grid-column: 1 / 3;
    background: var(--navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 32px;
    min-height: 200px;
}
.bento-card--hero::before { background: var(--gradient-main); }
.bento-card--hero h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; color: #fff; }
.bento-card--hero p { color: rgba(255,255,255,0.68); font-size: 0.9rem; max-width: 480px; margin-bottom: 22px; line-height: 1.7; }
.bento-card--stat {
    background: var(--gradient-main);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 150px;
}
.bento-card--stat::before { background: rgba(255,255,255,0.3); }
.bento-stat-num { font-size: 2.6rem; font-weight: 900; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.bento-stat-label { font-size: 0.8rem; font-weight: 600; opacity: 0.85; }
.bento-card--icon { text-align: left; }
.bento-card--icon .bento-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(15,118,110,0.28);
}
.bento-card--icon h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; }
.bento-card--icon p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.bento-card--wide {
    grid-column: 1 / 4;
    background: #f0fdfa;
    border-color: rgba(20,184,166,0.2);
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.bento-trust-items {
    display: flex;
    flex: 1;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: space-around;
}
.bento-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.bento-trust-item i { font-size: 1rem; color: var(--primary); }
@media (max-width: 900px) {
    .bento-why-grid { grid-template-columns: 1fr 1fr; }
    .bento-card--hero { grid-column: 1 / 3; }
    .bento-card--wide { grid-column: 1 / 3; }
}
@media (max-width: 600px) {
    .bento-why-grid { grid-template-columns: 1fr; }
    .bento-card--hero { grid-column: 1; }
    .bento-card--wide { grid-column: 1; flex-direction: column; gap: 16px; }
}

/* ── R7. Testimonials Carousel (Swiper) ───────────────────────── */
.testimonials-v2 { background: var(--navy); padding: 70px 0; overflow: hidden; position: relative; }
.testimonials-v2::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(15,118,110,0.08);
    pointer-events: none;
}
.testimonials-v2 .section-header { margin-bottom: 40px; }
.testimonials-v2 .section-tag { color: #5eead4; }
.testimonials-v2 .section-title { color: #fff; }
.swiper-testimonial { padding-bottom: 48px !important; }
.swiper-testimonial .swiper-slide { height: auto; }
.tcard {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    backdrop-filter: blur(6px);
}
.tcard:hover { border-color: rgba(20,184,166,0.35); }
.tcard-quote { font-size: 2rem; color: #14b8a6; line-height: 1; margin-bottom: 12px; opacity: 0.6; }
.tcard-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 0.8rem; margin-bottom: 12px; }
.tcard-text { font-size: 0.88rem; line-height: 1.78; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.tcard-author { display: flex; align-items: center; gap: 11px; }
.tcard-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    flex-shrink: 0;
    font-weight: 700;
}
.tcard-name { font-size: 0.87rem; font-weight: 700; color: #fff; display: block; }
.tcard-role { font-size: 0.74rem; color: rgba(255,255,255,0.5); display: block; }
.swiper-testimonial .swiper-pagination-bullet { background: rgba(255,255,255,0.3); width: 8px; height: 8px; opacity: 1; }
.swiper-testimonial .swiper-pagination-bullet-active { background: #14b8a6; width: 24px; border-radius: 4px; }
.swiper-nav { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.swiper-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}
.swiper-btn:hover { background: var(--primary); border-color: var(--primary); }

/* ── R8. Experience & Stats Section ───────────────────────────── */
.exp-section {
    background: linear-gradient(135deg, #0c5e58 0%, #0f766e 50%, #14b8a6 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.exp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.exp-main-badge {
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
}
.exp-big-num {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 1;
    display: block;
}
.exp-big-label { font-size: 1.1rem; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 6px; display: block; }
.exp-big-sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.exp-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.exp-stat-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 22px 20px;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease;
}
.exp-stat-card:hover { background: rgba(255,255,255,0.16); }
.exp-stat-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    margin-bottom: 12px;
}
.exp-stat-num { font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; display: block; }
.exp-stat-label { font-size: 0.79rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 3px; }
@media (max-width: 768px) {
    .exp-grid { grid-template-columns: 1fr; gap: 28px; }
    .exp-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── R9. About Page — Timeline ────────────────────────────────── */
.journey-section { background: #fff; }
.journey-timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 0;
}
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), #14b8a6, transparent);
}
.journey-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-left: 0;
    position: relative;
}
.journey-dot {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.85rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(15,118,110,0.28);
}
.journey-content {
    flex: 1;
    background: var(--bg-off);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    margin-top: 8px;
}
.journey-year {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.journey-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.journey-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ── R10. About Mission/Vision/Values — Improved Cards ─────────── */
.mv-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.mv-card-v2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.mv-card-v2:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,118,110,0.12); }
.mv-card-v2:hover::after { transform: scaleX(1); }
.mv-icon-v2 {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(15,118,110,0.25);
}
.mv-card-v2 h3 { font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.mv-card-v2 p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* ── R11. Services — Gradient Border Cards ─────────────────────── */
.service-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.service-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: var(--gradient-main);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card-v2:hover::before { opacity: 1; }
.service-card-v2:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,118,110,0.12); }
.svc-icon-v2 {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--primary-bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.25rem;
    margin-bottom: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}
.service-card-v2:hover .svc-icon-v2 {
    background: var(--gradient-main);
    color: #fff;
}
.service-card-v2 h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.service-card-v2 p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-card-v2 .service-list { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.service-card-v2 .service-list li { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-mid); }
.service-card-v2 .service-list li i { color: var(--primary); font-size: 0.7rem; }
.services-grid-v2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }

/* ── R12. Contact — Glassmorphism Form ────────────────────────── */
.contact-glass-wrap {
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
    border: 1.5px solid rgba(20,184,166,0.2);
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(15,118,110,0.08);
}
.contact-glass-wrap .form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.contact-glass-wrap input,
.contact-glass-wrap select,
.contact-glass-wrap textarea {
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(20,184,166,0.25) !important;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-glass-wrap input:focus,
.contact-glass-wrap select:focus,
.contact-glass-wrap textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(15,118,110,0.1) !important;
    outline: none;
    background: #fff !important;
}
.contact-info-v2 { display: flex; flex-direction: column; gap: 14px; }
.contact-card-v2 {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card-v2:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-card-v2 .cc-icon-v2 {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.9rem;
    flex-shrink: 0;
}
.contact-card-v2 h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.contact-card-v2 p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.contact-card-v2 p a { color: var(--primary-dark); }
.contact-card-v2 p a:hover { color: var(--primary-hover); }
.contact-map-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.contact-section-v2 .contact-grid { gap: 32px; }

/* ── R13. Process Steps — Improved ───────────────────────────── */
.process-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-grid-v2::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: var(--gradient-main);
    z-index: 0;
}
.process-step-v2 {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}
.process-num-v2 {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(15,118,110,0.28);
    border: 3px solid #fff;
    outline: 3px solid rgba(15,118,110,0.12);
}
.process-step-v2 h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.process-step-v2 p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) {
    .process-grid-v2 { grid-template-columns: 1fr 1fr; gap: 24px; }
    .process-grid-v2::before { display: none; }
}
@media (max-width: 480px) {
    .process-grid-v2 { grid-template-columns: 1fr; }
}

/* ── R14. Footer Social — X icon ─────────────────────────────── */
.fa-x-twitter::before { content: '\e61b'; }

/* ── R15. Gradient text & misc ────────────────────────────────── */
.gradient-text {
    background: var(--gradient-main) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.section-tag {
    background: var(--primary-bg);
    color: var(--primary);
    border: 1px solid rgba(15,118,110,0.15);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 12px;
}
/* About page bento grid content */
.about-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.about-bento-card {
    background: var(--bg-off);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-bento-card i {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--gradient-main);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.about-bento-card h5 { font-size: 0.87rem; font-weight: 700; margin-bottom: 3px; }
.about-bento-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 480px) {
    .about-bento { grid-template-columns: 1fr; }
}

/* ── R16. Map section ────────────────────────────────────────── */
.map-section-v2 { padding: 0; }
.map-section-v2 iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}
.map-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 24px;
    background: #fff;
    border-top: 1px solid var(--border);
}
.map-info-addr {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 1rem;
    flex: 1;
    min-width: 0;
}
.map-info-addr > div strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--navy); }
.map-info-addr > div span { font-size: 0.74rem; color: var(--text-muted); }
@media (max-width: 560px) {
    .map-section-v2 iframe { height: 240px; }
    .map-info-bar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 16px; }
}

/* ── R17. Account dashboard sidebar ─────────────────────────── */
.account-dashboard-overlay {
    position: fixed; inset: 0;
    background: rgba(15,23,42,0.55);
    z-index: 9990;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.account-dashboard-overlay.open { display: block; opacity: 1; }
.account-dashboard {
    position: fixed;
    top: 0; right: 0;
    width: min(520px, 100vw);
    height: 100%;
    background: #fff;
    z-index: 9991;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
.account-dashboard.open { transform: translateX(0); }
.account-dash-header {
    background: var(--navy);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.account-dash-close {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: none; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}
.account-dash-close:hover { background: rgba(255,255,255,0.2); }
.account-user-card {
    display: flex; align-items: center; gap: 12px;
}
.account-user-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.account-user-info .user-name { font-size: 0.95rem; font-weight: 700; color: #fff; display: block; }
.account-user-info .user-email { font-size: 0.74rem; color: rgba(255,255,255,0.55); display: block; }
.account-dash-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    flex-shrink: 0;
    background: var(--bg-off);
}
.account-dash-nav-btn {
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.account-dash-nav-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: #fff;
}
.account-dash-nav-btn:hover { color: var(--primary); }
.account-dash-body { flex: 1; overflow-y: auto; padding: 20px; }
.account-dash-tab { display: none; }
.account-dash-tab.active { display: block; }
/* Address cards */
.address-card {
    background: var(--bg-off);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    margin-bottom: 12px;
    position: relative;
}
.address-card.default-addr { border-color: var(--primary); background: #f0fdfa; }
.addr-badge { font-size: 0.66rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; background: var(--primary); color: #fff; display: inline-block; margin-bottom: 8px; }
.address-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; margin: 0; }
.addr-actions { display: flex; gap: 8px; margin-top: 10px; }
.addr-action-btn {
    font-size: 0.74rem; font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    color: var(--text-mid);
    transition: all 0.2s ease;
}
.addr-action-btn:hover { border-color: var(--primary); color: var(--primary); }
.addr-action-btn.delete { color: #ef4444; }
.addr-action-btn.delete:hover { border-color: #ef4444; background: #fef2f2; }
/* Order cards */
.order-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 14px;
}
.order-card-header {
    padding: 12px 16px;
    background: var(--bg-off);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.order-id-badge { font-size: 0.78rem; font-weight: 700; color: var(--primary-dark); }
.order-status-badge {
    font-size: 0.68rem; font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.order-status-badge.delivered { background: #dcfce7; color: #15803d; }
.order-status-badge.processing { background: #fef9c3; color: #854d0e; }
.order-status-badge.pending { background: #fef9c3; color: #854d0e; }
.order-status-badge.shipped { background: #dbeafe; color: #1d4ed8; }
.order-status-badge.cancelled { background: #fee2e2; color: #b91c1c; }
.order-card-body { padding: 14px 16px; }
.order-card-date { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 10px; }
.order-card-items { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.order-item-thumb { width: 52px; height: 52px; border-radius: 8px; background: var(--bg-off); border: 1px solid var(--border); object-fit: contain; display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-size: 0.7rem; overflow: hidden; }
.order-item-thumb img { width: 100%; height: 100%; object-fit: contain; }
.order-card-total { font-size: 0.85rem; font-weight: 700; color: var(--primary-dark); }
.order-card-footer { padding: 10px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; }
.order-action-btn { font-size: 0.74rem; font-weight: 600; padding: 5px 12px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer; color: var(--text-mid); transition: all 0.2s ease; }
.order-action-btn:hover { border-color: var(--primary); color: var(--primary); }
.order-action-btn.primary-btn { background: var(--primary); color: #fff; border-color: var(--primary); }
.order-action-btn.primary-btn:hover { background: var(--primary-dark); }
/* Security / Password */
.password-form-card {
    background: var(--bg-off);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
}
.password-form-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 16px; }
.password-field-wrap { position: relative; }
.password-field-wrap input { padding-right: 40px !important; }
.pwd-toggle {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--text-muted); cursor: pointer;
    font-size: 0.85rem; padding: 4px;
}
.pwd-strength {
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    margin-top: 6px;
    overflow: hidden;
}
.pwd-strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
    width: 0;
}

/* ── R18. Search Overlay — dark-mode overrides removed; using light dropdown */

.odp-item-img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.odp-item-placeholder { width: 76px; height: 76px; border-radius: 12px; background: linear-gradient(135deg, #f0fdf4, #ecfeff); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; flex-shrink: 0; }
.odp-item-info { flex: 1; min-width: 0; }
.odp-item-name { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 3px; line-height: 1.35; }
.odp-item-cat { font-size: 0.73rem; color: var(--text-muted); margin-bottom: 5px; }
.odp-item-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 7px; }
.odp-item-tag { font-size: 0.66rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; background: #ede9fe; color: #5b21b6; }
.odp-item-tag.gender { background: #dbeafe; color: #1d4ed8; }
.odp-item-tag.color  { background: #e0f2fe; color: #0369a1; }
.odp-item-footer { display: flex; justify-content: space-between; align-items: center; }
.odp-item-price { font-size: 0.9rem; font-weight: 800; color: var(--primary-dark); }
.odp-item-qty-badge { font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; background: rgba(13,148,136,0.08); color: var(--primary-dark); }
.odp-emb-info { font-size: 0.72rem; color: var(--primary); background: rgba(13,148,136,0.06); border-radius: 8px; padding: 5px 8px; margin: 5px 0; display: flex; align-items: flex-start; gap: 5px; }
/* Summary/info rows on aside */
.odp-info-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; font-size: 0.82rem; padding: 7px 0; border-bottom: 1px dashed var(--border); }
.odp-info-row:last-child { border-bottom: none; }
.odp-info-label { color: var(--text-muted); font-weight: 500; }
.odp-info-value { font-weight: 700; color: var(--text); text-align: right; }
.odp-address-block { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }
.odp-address-name { font-weight: 800; color: var(--text); font-size: 0.9rem; margin-bottom: 4px; }
/* Action buttons */
.odp-actions-row { display: flex; flex-wrap: wrap; gap: 10px; }
/* Cancel info */
.odp-cancel-box { background: #fef2f2; border: 2px solid #fca5a5; border-radius: 14px; padding: 16px 18px; }
.odp-cancel-title { font-size: 0.88rem; font-weight: 700; color: #dc2626; margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
.odp-cancel-reason { font-size: 0.83rem; color: #374151; }
/* Empty / Loading */
.odp-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; gap: 18px; background: var(--bg-off); }
.odp-error-wrap { text-align: center; padding: 80px 20px; }
.odp-error-wrap i { font-size: 3rem; color: var(--text-faint); margin-bottom: 14px; display: block; }
.odp-error-wrap h3 { font-size: 1.2rem; color: var(--text-mid); margin-bottom: 8px; }
.odp-error-wrap p { color: var(--text-muted); font-size: 0.86rem; }
@media (max-width: 860px) {
  .odp-grid { grid-template-columns: 1fr; }
  .odp-hero-inner { flex-direction: column; }
  .odp-hero-right { align-items: flex-start; }
  .odp-timeline { justify-content: flex-start; overflow-x: auto; padding: 16px; }
  .odp-tl-step { min-width: 72px; }
}

/* ── Ticket Tracking Page (tickets.html) ──────────────────────────── */
.tkt-page { padding-top: 90px; min-height: 100vh; background: var(--bg-off); }
.tkt-hero { position: relative; overflow: hidden; padding: 64px 0 84px; background: linear-gradient(135deg, #0d9488 0%, #0f766e 45%, #134e4a 100%); color: #fff; text-align: center; }
.tkt-hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; pointer-events: none; animation: tkt-blob-float 9s ease-in-out infinite; }
.tkt-blob-1 { width: 320px; height: 320px; background: #5eead4; top: -120px; left: -80px; }
.tkt-blob-2 { width: 260px; height: 260px; background: #a7f3d0; bottom: -100px; right: -60px; animation-delay: 2.4s; }
@keyframes tkt-blob-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(24px) scale(1.08); } }
.tkt-hero-inner { position: relative; z-index: 1; }
.tkt-hero-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; padding: 6px 16px; margin-bottom: 16px; backdrop-filter: blur(6px); }
.tkt-hero-inner h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin: 0 0 10px; letter-spacing: -0.02em; }
.tkt-hero-inner > p { font-size: 0.95rem; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 30px; }
.tkt-search-wrap { display: flex; justify-content: center; }
.tkt-search-box { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 50px; padding: 6px 6px 6px 20px; box-shadow: 0 14px 40px rgba(0,0,0,0.22); max-width: 520px; width: 100%; }
.tkt-search-box i.fa-hashtag { color: var(--text-faint); }
.tkt-search-box input { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 0.9rem; color: var(--text); padding: 10px 0; }
.tkt-search-box button { display: inline-flex; align-items: center; gap: 6px; border: none; background: linear-gradient(135deg, #0d9488, #14b8a6); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 11px 22px; border-radius: 50px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.tkt-search-box button:hover { filter: brightness(1.08); transform: translateY(-1px); }

.tkt-section-head { display: flex; justify-content: space-between; align-items: center; margin: 32px 0 16px; flex-wrap: wrap; gap: 10px; }
.tkt-section-head h2 { font-size: 1.15rem; font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 9px; margin: 0; }
.tkt-section-head h2 i { color: var(--primary); }

.tkt-loading { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 50px 20px; color: var(--text-muted); font-size: 0.85rem; }
.tkt-empty { text-align: center; padding: 50px 20px; background: #fff; border-radius: 18px; border: 1px dashed var(--border); }
.tkt-empty i { font-size: 2.4rem; color: var(--text-faint); display: block; margin-bottom: 12px; }
.tkt-empty p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 14px; }
.tkt-signin-prompt { text-align: center; padding: 50px 20px; background: #fff; border-radius: 18px; border: 1px solid var(--border); margin-bottom: 24px; }
.tkt-signin-prompt i { font-size: 2.4rem; color: var(--primary); display: block; margin-bottom: 12px; }

.tkt-list { display: flex; flex-direction: column; gap: 14px; padding-bottom: 50px; }
.tkt-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 2px 14px rgba(15,23,42,0.05); transition: var(--transition); animation: od-card-in 0.32s ease both; }
.tkt-card:hover { box-shadow: 0 10px 28px rgba(13,148,136,0.1); }
.tkt-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; cursor: pointer; flex-wrap: wrap; }
.tkt-card-id { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.03em; padding: 4px 11px; border-radius: 7px; }
.tkt-card-subject { font-size: 0.95rem; font-weight: 800; color: var(--text); margin: 6px 20px 0; }
.tkt-card-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.74rem; color: var(--text-muted); padding: 8px 20px 16px; }
.tkt-card-status { font-size: 0.72rem; font-weight: 800; padding: 4px 13px; border-radius: 50px; white-space: nowrap; }
.tkt-card-body { display: none; padding: 0 20px 20px; border-top: 1px solid var(--border); }
.tkt-card-body.open { display: block; animation: fade-up-in 0.25s ease both; }
.tkt-card-message { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; white-space: pre-wrap; padding-top: 14px; }
.tkt-attach-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tkt-attach-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--primary-dark); background: rgba(13,148,136,0.08); border-radius: 8px; padding: 5px 10px; text-decoration: none; }
.tkt-thread { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.tkt-thread-item { border-left: 3px solid #94a3b8; background: var(--bg-off); border-radius: 10px; padding: 10px 14px; }
.tkt-thread-item.is-admin { border-left-color: var(--primary); background: rgba(13,148,136,0.05); }
.tkt-thread-meta { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px; }
.tkt-thread-text { font-size: 0.83rem; color: var(--text); line-height: 1.6; }
.tkt-chevron { transition: transform 0.25s ease; color: var(--text-faint); }
.tkt-card-head.expanded .tkt-chevron { transform: rotate(180deg); }
@media (max-width: 640px) {
  .tkt-hero { padding: 48px 0 64px; }
  .tkt-card-meta { flex-direction: column; gap: 4px; }
}

/* ── 46. Redesigned Order List Cards (v2) ────────────────────────── */
.acct-orders-v2 { display: flex; flex-direction: column; gap: 12px; }
.acct-order-v2 { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: var(--transition); animation: od-card-in 0.32s ease both; }
.acct-order-v2:hover { border-color: rgba(13,148,136,0.35); box-shadow: 0 8px 30px rgba(13,148,136,0.1); transform: translateY(-1px); }
.acct-order-v2-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 18px 10px; background: linear-gradient(135deg, rgba(13,148,136,0.04), rgba(219,234,254,0.2)); border-bottom: 1px solid var(--border); }
.acct-ov2-left { flex: 1; }
.acct-ov2-num { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.acct-ov2-date { font-size: 0.71rem; color: var(--text-muted); }
.acct-ov2-badge { font-size: 0.68rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.02em; }
.acct-ov2-badge.processing { background: #fef3c7; color: #92400e; }
.acct-ov2-badge.approved   { background: #dbeafe; color: #1e40af; }
.acct-ov2-badge.packed     { background: #ede9fe; color: #5b21b6; }
.acct-ov2-badge.shipped    { background: #d1fae5; color: #065f46; }
.acct-ov2-badge.delivered  { background: #dcfce7; color: #166534; }
.acct-ov2-badge.cancelled  { background: #fee2e2; color: #991b1b; }
.acct-order-v2-body { padding: 13px 18px 14px; }
.acct-ov2-summary { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 11px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.acct-ov2-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.acct-ov2-total { font-size: 1rem; font-weight: 900; color: var(--primary-dark); }
.acct-ov2-pay { font-size: 0.71rem; color: var(--text-muted); margin-top: 1px; }
.acct-ov2-detail-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 700; color: var(--primary); background: rgba(13,148,136,0.07); border: 1px solid rgba(13,148,136,0.2); border-radius: 8px; padding: 5px 13px; transition: var(--transition); text-decoration: none; white-space: nowrap; }
.acct-ov2-detail-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.acct-orders-empty { text-align: center; padding: 40px 20px; }
.acct-orders-empty i { font-size: 2.5rem; color: var(--text-faint); display: block; margin-bottom: 12px; }
.acct-orders-empty p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }

/* ── 47. Profile Tabs Restructure (3 tabs) ────────────────────────── */
.acct-tabs-bar-v2 { display: flex; background: #fff; border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.acct-tabs-bar-v2::-webkit-scrollbar { display: none; }
.acct-tab-v2 { flex: 1; min-width: 80px; padding: 14px 10px; border: none; background: none; font-family: var(--font); font-size: 0.78rem; font-weight: 600; color: var(--text-muted); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 4px; transition: var(--transition); border-bottom: 2px solid transparent; white-space: nowrap; }
.acct-tab-v2 i { font-size: 0.95rem; }
.acct-tab-v2.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(13,148,136,0.02); }
/* Password section inside Profile tab */
.acct-pwd-divider { margin: 22px 0 18px; border: none; border-top: 1.5px dashed var(--border); }
.acct-pwd-section-title { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.acct-pwd-section-title i { color: var(--primary); }

/* ===== Section 48: Account Loading State ===== */
.acct-loading-state {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 56px 30px; gap: 12px;
}
.acct-loading-ring {
    width: 60px; height: 60px; position: relative;
}
.acct-loading-ring svg { width: 100%; height: 100%; }
.acct-loading-logo {
    font-size: 1rem; font-weight: 900; color: var(--primary); letter-spacing: 0.1em;
    margin-top: -4px;
}
.acct-loading-text {
    font-size: 0.9rem; color: var(--text-muted); font-weight: 500;
    display: flex; align-items: center; gap: 2px; margin: 0;
}
.acct-loading-dots span {
    display: inline-block; animation: dotBounce 1.2s infinite ease-in-out;
    font-size: 1.1rem; line-height: 1;
}
.acct-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.acct-loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-5px); opacity: 1; }
}

/* ===== Section 49: Profile Quicklinks (Wishlist + Signout in Profile tab) ===== */
.acct-profile-quicklinks {
    display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.acct-quicklink-btn {
    flex: 1; min-width: 130px; display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 11px 16px; border-radius: 12px; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; text-decoration: none; border: 2px solid var(--border);
    background: #fff; color: var(--text-mid); font-family: inherit;
}
.acct-quicklink-btn.wishlist-link { border-color: #fecdd3; color: #be123c; background: #fff1f2; }
.acct-quicklink-btn.wishlist-link:hover { background: #fecdd3; color: #9f1239; }
.acct-quicklink-btn.signout-link { border-color: #fecaca; color: #dc2626; background: #fff5f5; }
.acct-quicklink-btn.signout-link:hover { background: #fecaca; color: #b91c1c; }

/* ===== Section 50: Share Radial Menu ===== */
.ssa-share-radial { position: fixed; inset: 0; z-index: 10000; pointer-events: auto; }
.ssa-share-backdrop {
    position: absolute; inset: 0; background: rgba(15,23,42,0.55);
    backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s;
}
.ssa-share-radial.active .ssa-share-backdrop { opacity: 1; }
.ssa-share-menu {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 260px; height: 260px;
    display: flex; align-items: center; justify-content: center;
}
.ssa-share-hub {
    position: relative; width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #0d9488, #0f766e); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    cursor: pointer; z-index: 2; box-shadow: 0 6px 24px rgba(13,148,136,0.45);
    transition: transform 0.4s, box-shadow 0.4s;
}
.ssa-share-radial.active .ssa-share-hub {
    transform: rotate(360deg);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.35), 0 6px 24px rgba(13,148,136,0.5);
}
.ssa-share-item {
    position: absolute; left: 50%; top: 50%; margin: -30px 0 0 -30px;
    width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
    background: #fff; color: var(--clr); font-size: 1.4rem;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; box-shadow: 0 4px 14px rgba(0,0,0,0.18); transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.3s, box-shadow 0.2s;
    transform: scale(0); opacity: 0; transform-origin: center;
    transition-delay: calc(0.06s * var(--i));
}
.ssa-share-radial.active .ssa-share-item {
    opacity: 1;
    transform: rotate(calc(360deg / 4 * var(--i))) translateY(-110px) rotate(calc(-360deg / 4 * var(--i))) scale(1);
}
.ssa-share-item:hover {
    box-shadow: 0 0 0 2px var(--clr), 0 4px 16px rgba(0,0,0,0.22);
    transform: rotate(calc(360deg / 4 * var(--i))) translateY(-110px) rotate(calc(-360deg / 4 * var(--i))) scale(1.12) !important;
}
.ssa-share-item span {
    font-size: 0.52rem; font-weight: 800; color: var(--clr); letter-spacing: 0.03em; text-transform: uppercase;
}

/* ===== §62 COMPREHENSIVE FEATURE STYLES v179 ===== */

/* ─── Notify Me Button ──────────────────────────────────── */
.btn-notify-me {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff; border: none; border-radius: 8px;
    padding: 8px 14px; font-size: 0.82rem; font-weight: 700;
    cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-notify-me:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.4); }

/* ─── Stock Bar ─────────────────────────────────────────── */
.stock-bar-wrap {
    display: flex; align-items: center; gap: 8px;
    margin: 4px 0 2px;
}
.stock-bar-track {
    flex: 1; background: #f1f5f9; border-radius: 99px; overflow: hidden;
    height: 5px;
}
.stock-bar-fill {
    height: 100%; background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 99px; transition: width 0.5s;
}
.stock-bar-label {
    font-size: 0.7rem; color: #f59e0b; font-weight: 700;
    white-space: nowrap; margin-left: 2px;
}

/* ─── Delivery Estimate ─────────────────────────────────── */
.card-delivery-est {
    font-size: 0.72rem; color: #64748b; margin: 3px 0 4px;
    display: flex; align-items: center; gap: 5px;
}
.card-delivery-est i { color: #0d9488; }

/* ─── Free Delivery Progress (Cart) ─────────────────────── */
.fdp-wrap {
    margin: 0 0 10px; padding: 10px 14px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 10px; border: 1px solid #bbf7d0;
    font-size: 0.82rem; color: #166534;
}
.fdp-wrap.fdp-success {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; color: #166534;
}
.fdp-wrap.fdp-success i { color: #22c55e; font-size: 1rem; }
.fdp-label { margin-bottom: 6px; }
.fdp-bar {
    background: #bbf7d0; border-radius: 99px; height: 6px; overflow: hidden;
}
.fdp-fill {
    height: 100%; background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 99px; transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

/* ─── Cart Trust Badges ─────────────────────────────────── */
.cart-trust-badges {
    display: flex; gap: 6px; flex-wrap: wrap;
    padding: 8px 0 12px; border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}
.cart-trust-badges span {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.72rem; font-weight: 600; color: #475569;
    background: #f8fafc; border: 1px solid var(--border);
    border-radius: 99px; padding: 3px 10px;
}
.cart-trust-badges i { color: #0d9488; }

/* ─── Grid Toggle ─────────────────────────────────────── */
.grid-toggle-group {
    display: flex; align-items: center; gap: 4px;
    background: var(--bg-off); border-radius: 8px; padding: 3px;
}
.grid-toggle-btn {
    width: 32px; height: 32px; border: none; border-radius: 6px;
    background: transparent; color: #64748b; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: background 0.15s, color 0.15s;
}
.grid-toggle-btn.active { background: #fff; color: var(--primary); box-shadow: 0 1px 4px rgba(0,0,0,0.12); }
.shop-grid.grid-2col { grid-template-columns: repeat(2, 1fr) !important; }
@media (min-width: 768px) {
    .shop-grid.grid-4col { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ─── Scroll Sentinel ────────────────────────────────────── */
#scrollSentinel { height: 1px; visibility: hidden; }

/* ─── Abandoned Cart Toast ───────────────────────────────── */
.abandoned-toast {
    position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(40px);
    z-index: 9999; opacity: 0; transition: opacity 0.35s, transform 0.35s;
    pointer-events: none;
}
.abandoned-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all; }
.abandoned-toast-inner {
    display: flex; align-items: center; gap: 12px;
    background: #1e293b; color: #fff; border-radius: 14px;
    padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    max-width: 380px;
}
.abandoned-icon { font-size: 1.4rem; color: #f59e0b; flex-shrink: 0; }
.abandoned-text { flex: 1; }

/* ===== §63 PROCESS STEPS V3 — Horizontal Accordion ===== */

/* §64 — How It Works — compact 4-step card grid */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.hiw-step:hover {
    box-shadow: 0 8px 28px rgba(13,148,136,0.13);
    transform: translateY(-3px);
    border-color: rgba(13,148,136,0.28);
}
.hiw-num {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.12em;
    background: rgba(13,148,136,0.08);
    border: 1px solid rgba(13,148,136,0.18);
    border-radius: 20px;
    padding: 2px 9px;
    margin-bottom: 12px;
    display: inline-block;
}
.hiw-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #0d9488, #0f766e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(13,148,136,0.2);
    transition: transform 0.25s;
}
.hiw-step:hover .hiw-icon { transform: scale(1.07); }
.hiw-step h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.hiw-step p { font-size: 0.77rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 768px) {
    .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
}
@media (max-width: 420px) {
    .hiw-steps { grid-template-columns: 1fr; }
    .hiw-step { flex-direction: row; text-align: left; padding: 16px; gap: 14px; align-items: center; }
    .hiw-num, .hiw-icon { flex-shrink: 0; margin-bottom: 0; }
    .hiw-icon { width: 46px; height: 46px; font-size: 1rem; border-radius: 12px; }
}

.pv3-step:hover:not(.pv3-active) {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(13,148,136,0.15);
}

.pv3-step.pv3-active {
    flex: 1 1 0;
    background: linear-gradient(135deg, #0f172a 0%, #0d4f4a 60%, #0d9488 100%);
    border-color: transparent;
    box-shadow: 0 20px 56px rgba(13,148,136,0.35), 0 4px 16px rgba(0,0,0,0.15);
    cursor: default;
}

/* ── Header row ── */
.pv3-hd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 12px 16px;
    flex-shrink: 0;
}

.pv3-step.pv3-active .pv3-hd {
    flex-direction: row;
    padding: 28px 24px 0;
    align-items: center;
    gap: 16px;
}

.pv3-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    transition: color 0.3s;
    flex-shrink: 0;
}

.pv3-step.pv3-active .pv3-num {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
}

.pv3-step.pv3-done .pv3-num { color: #10b981; }

.pv3-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-off);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.4s;
    flex-shrink: 0;
}

.pv3-icon i {
    font-size: 1.1rem;
    color: var(--primary);
    transition: color 0.3s;
}

.pv3-step.pv3-active .pv3-icon {
    background: rgba(255,255,255,0.18);
    transform: scale(1.08);
}

.pv3-step.pv3-active .pv3-icon i { color: #fff; }

.pv3-step.pv3-done .pv3-icon { background: #ecfdf5; }
.pv3-step.pv3-done .pv3-icon i { color: #10b981; }

.pv3-title-sm {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-mid);
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s;
}

.pv3-step.pv3-active .pv3-title-sm { display: none; }
.pv3-step.pv3-done .pv3-title-sm { color: #10b981; }

/* ── Expanded body ── */
.pv3-body {
    flex: 1;
    padding: 0 24px 20px;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.38s 0.18s, transform 0.38s 0.18s;
    pointer-events: none;
}

.pv3-step.pv3-active .pv3-body {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.pv3-body h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pv3-body p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 18px;
}

.pv3-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    border: 1.5px solid rgba(255,255,255,0.28);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.pv3-cta:hover {
    background: rgba(255,255,255,0.24);
    border-color: rgba(255,255,255,0.5);
}

/* ── Progress bar ── */
.pv3-prog-bar {
    height: 4px;
    background: rgba(0,0,0,0.08);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.pv3-step.pv3-active .pv3-prog-bar {
    background: rgba(255,255,255,0.15);
}

.pv3-prog-fill {
    height: 100%;
    width: 0;
    background: var(--primary);
    animation: none;
}

.pv3-step.pv3-active .pv3-prog-fill {
    animation: pv3FillAnim 4s linear forwards;
}

.pv3-step.pv3-done .pv3-prog-fill {
    width: 100%;
    background: #10b981;
    animation: none;
}

@keyframes pv3FillAnim {
    from { width: 0; }
    to   { width: 100%; }
}

/* ── Mobile: vertical accordion ── */
@media (max-width: 768px) {
    .pv3-wrap {
        flex-direction: column;
        gap: 8px;
        min-height: auto;
        margin-top: 24px;
    }
    .pv3-step {
        flex: none !important;
        height: auto;
    }
    .pv3-hd {
        flex-direction: row;
        padding: 16px 18px;
        gap: 14px;
    }
    .pv3-step.pv3-active .pv3-hd {
        padding: 18px 20px 4px;
    }
    .pv3-title-sm {
        display: block !important;
        text-align: left;
        font-size: 0.84rem;
    }
    .pv3-step.pv3-active .pv3-title-sm {
        display: none !important;
    }
    .pv3-body {
        padding: 0 20px 18px;
        transform: translateY(-8px);
        transition: opacity 0.32s 0.12s, transform 0.32s 0.12s;
    }
}
.abandoned-text strong { display: block; font-size: 0.88rem; }
.abandoned-text span { font-size: 0.76rem; color: #94a3b8; }
.abandoned-dismiss {
    background: none; border: none; color: #64748b; cursor: pointer;
    padding: 4px; font-size: 0.8rem; flex-shrink: 0;
}
@media (max-width: 480px) { .abandoned-toast { bottom: 72px; left: 10px; right: 10px; transform: translateY(40px); }
    .abandoned-toast.show { transform: translateY(0); left: 10px; } }

/* ─── Exit Intent Popup ──────────────────────────────────── */
.exit-intent-overlay {
    position: fixed; inset: 0; z-index: 10100;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.exit-intent-overlay.show { opacity: 1; pointer-events: all; }
.exit-intent-modal {
    background: #fff; border-radius: 20px; padding: 36px 32px;
    max-width: 420px; width: 90%; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    position: relative; transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.exit-intent-overlay.show .exit-intent-modal { transform: scale(1); }
.exit-intent-close {
    position: absolute; top: 12px; right: 14px;
    background: #f1f5f9; border: none; border-radius: 50%;
    width: 30px; height: 30px; cursor: pointer; color: #64748b;
    display: flex; align-items: center; justify-content: center;
}
.exit-intent-badge {
    display: inline-block; background: linear-gradient(135deg, #0d9488, #0891b2);
    color: #fff; font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 4px 14px; border-radius: 99px; margin-bottom: 12px;
}
.exit-intent-modal h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.exit-intent-modal p { color: #64748b; font-size: 0.92rem; margin-bottom: 16px; }
.exit-coupon-row {
    display: flex; align-items: center; gap: 10px; justify-content: center;
    background: #f0fdf4; border: 2px dashed #22c55e; border-radius: 10px;
    padding: 10px 18px; margin-bottom: 18px;
}
.exit-coupon-code { font-size: 1.3rem; font-weight: 800; color: #166534; letter-spacing: 0.1em; }
.exit-intent-actions { display: flex; gap: 10px; justify-content: center; margin-bottom: 12px; }
.exit-intent-note { font-size: 0.72rem; color: #94a3b8; }

/* ─── Product Detail: Share ──────────────────────────────── */
.btn-pd-share {
    min-width: 44px; height: 44px; border-radius: 10px;
    background: #f1f5f9; border: 1px solid var(--border);
    color: #475569; font-size: 1rem; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s; flex-shrink: 0;
}
.btn-pd-share:hover { background: #0d9488; color: #fff; border-color: #0d9488; }
.pd-share-menu {
    position: absolute; bottom: 52px; right: 0; z-index: 200;
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14); overflow: hidden; min-width: 160px;
    animation: fadeInUp 0.18s ease;
}
.pd-share-opt {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; cursor: pointer;
    font-size: 0.88rem; font-weight: 600; color: #1e293b;
    background: none; border: none; width: 100%; text-decoration: none;
    transition: background 0.12s;
}
.pd-share-opt:hover { background: #f8fafc; }
.pd-share-opt i { width: 18px; text-align: center; }
.pd-share-opt .fa-whatsapp { color: #25d366; }

/* ─── Related Products ─────────────────────────────────── */
.pd-related-section { border-top: 1px solid var(--border); padding: 24px 28px 28px; }
.pd-related-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: #1e293b; display: flex; align-items: center; gap: 8px; }
.pd-related-title i { color: #0d9488; }
.pd-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-related-card {
    border-radius: 10px; overflow: hidden; cursor: pointer;
    border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s;
}
.pd-related-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.pd-related-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pd-related-info { padding: 8px 10px; }
.pd-related-info span { font-size: 0.76rem; color: #475569; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-related-info strong { font-size: 0.82rem; color: #0d9488; }
@media (max-width: 600px) {
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-related-section { padding: 16px; }
}

/* ─── Recently Viewed ──────────────────────────────────── */
.recently-viewed-section {
    padding: 32px 0; border-top: 1px solid var(--border);
}
.recently-viewed-section .section-header { margin-bottom: 20px; }
.recently-viewed-section .section-tag { font-size: 0.72rem; }
.rv-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px;
}
.rv-card {
    border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
    cursor: pointer; transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
}
.rv-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.rv-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.rv-info { padding: 8px 10px; }
.rv-name { font-size: 0.74rem; color: #475569; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-price { font-size: 0.84rem; font-weight: 700; color: #0d9488; }

/* ─── Notify Me Modal ──────────────────────────────────── */
.notify-modal-overlay {
    position: fixed; inset: 0; z-index: 10200;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.notify-modal-overlay.show { opacity: 1; pointer-events: all; }
.notify-modal {
    background: #fff; border-radius: 20px; padding: 32px 28px;
    max-width: 400px; width: 90%; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative; transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.notify-modal-overlay.show .notify-modal { transform: translateY(0); }
.notify-modal-close {
    position: absolute; top: 12px; right: 14px;
    background: #f1f5f9; border: none; border-radius: 50%;
    width: 28px; height: 28px; cursor: pointer; color: #64748b;
    display: flex; align-items: center; justify-content: center;
}
.notify-modal-icon { font-size: 2.5rem; color: #f59e0b; margin-bottom: 12px; }
.notify-modal h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.notify-modal p { color: #64748b; font-size: 0.88rem; margin-bottom: 16px; }
.notify-modal-form { display: flex; flex-direction: column; gap: 10px; }
.notify-modal-note { font-size: 0.7rem; color: #94a3b8; margin-top: 10px; }

/* ─── Newsletter Strip ─────────────────────────────────── */
.newsletter-section {
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    padding: 48px 0;
}
.newsletter-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.newsletter-copy { color: #fff; }
.newsletter-copy h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.newsletter-copy p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 420px; }
.newsletter-form input {
    flex: 1; padding: 12px 18px; border-radius: 10px;
    border: none; font-size: 0.9rem; outline: none;
    box-shadow: 0 0 0 2px transparent; transition: box-shadow 0.2s;
}
.newsletter-form input:focus { box-shadow: 0 0 0 2px rgba(255,255,255,0.5); }
.newsletter-form .btn { white-space: nowrap; background: #fff; color: #0d9488; font-weight: 700; border: none; }
.newsletter-form .btn:hover { background: #f0fdfa; }
@media (max-width: 600px) {
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; }
}

/* ─── Client Logo Strip ─────────────────────────────────── */
.client-logos-section { padding: 40px 0; background: #fff; overflow: hidden; }
.client-logos-section h3 { text-align: center; font-size: 0.9rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.client-logos-track {
    display: flex; gap: 40px; align-items: center;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}
.client-logos-track:hover { animation-play-state: paused; }
.client-logo-pill {
    display: flex; align-items: center; gap: 10px;
    background: #f8fafc; border: 1px solid var(--border); border-radius: 99px;
    padding: 10px 22px; white-space: nowrap;
    font-size: 0.88rem; font-weight: 700; color: #475569;
    flex-shrink: 0;
}
.client-logo-pill i { color: #0d9488; font-size: 1rem; }
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Bulk Quote Form ──────────────────────────────────── */
.bulk-quote-section {
    padding: 64px 0; background: var(--bg-off);
}
.bulk-quote-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.bulk-quote-copy h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.bulk-quote-copy p { color: #64748b; margin-bottom: 20px; line-height: 1.7; }
.bulk-quote-perks { list-style: none; padding: 0; }
.bulk-quote-perks li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #475569; font-size: 0.9rem; }
.bulk-quote-perks i { color: #0d9488; width: 18px; }
.bulk-quote-form { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.bulk-quote-form h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 18px; }
.bqf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bqf-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.bqf-field label { font-size: 0.8rem; font-weight: 600; color: #475569; }
.bqf-field input, .bqf-field textarea, .bqf-field select {
    padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border);
    font-size: 0.88rem; outline: none; transition: border-color 0.15s;
    font-family: inherit;
}
.bqf-field input:focus, .bqf-field textarea:focus { border-color: #0d9488; }
.bqf-field textarea { resize: vertical; min-height: 80px; }
@media (max-width: 768px) {
    .bulk-quote-grid { grid-template-columns: 1fr; }
    .bqf-row { grid-template-columns: 1fr; }
}

/* ─── Bottom Nav Active Pill ───────────────────────────── */
.bottom-nav-item.active {
    color: var(--primary) !important;
    position: relative;
}
.bottom-nav-item.active::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 32px; height: 3px; background: var(--primary);
    border-radius: 0 0 4px 4px;
}

/* ─── Process Steps Interactive ───────────────────────── */
.process-step-v2 { cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.process-step-v2.step-active {
    box-shadow: 0 8px 30px rgba(13,148,136,0.2);
    transform: translateY(-4px) scale(1.02);
    border: 2px solid var(--primary);
}
.process-step-v2.step-done .process-num-v2 {
    background: #22c55e !important;
}

/* ─── Skeleton Loaders ─────────────────────────────────── */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: 8px;
}
.shop-card-skeleton {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); background: #fff; padding: 0;
}
.skeleton-img { height: 220px; }
.skeleton-body { padding: 14px; }
.skeleton-line { height: 12px; margin-bottom: 10px; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-80 { width: 80%; }
.skeleton-line.w-40 { width: 40%; }
.skeleton-price { height: 18px; width: 50%; margin-bottom: 12px; }
.skeleton-btn { height: 36px; border-radius: 8px; }