/* ============================================================
   Dorojay.com — Main Stylesheet v4.0
   Design: Light Theme — Clean & Modern
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:      #ffffff;
  --bg-dark:      #f1f5f9;
  --bg-card:      rgba(0,0,0,0.03);
  --bg-card-hover:rgba(0,0,0,0.05);
  --border-glass: rgba(0,0,0,0.08);
  --border-glow:  rgba(6,182,212,0.3);
  --gold:         #d97706;
  --gold-light:   #f59e0b;
  --gold-glow:    rgba(217,119,6,0.35);
  --cyan:         #0891b2;
  --cyan-light:   #06b6d4;
  --cyan-glow:    rgba(8,145,178,0.3);
  --text-primary: #0f172a;
  --text-muted:   #475569;
  --text-dim:     #94a3b8;
  --radius-xs:    0px;
  --radius-sm:    0px;
  --radius:       0px;
  --radius-lg:    0px;
  --radius-xl:    0px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.07), 0 1px 0 rgba(0,0,0,0.04);
  --shadow-gold:  0 8px 40px rgba(217,119,6,0.18);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:    'Hind Siliguri', 'Roboto', sans-serif;
  --font-body:    'Hind Siliguri', 'Lato', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* overflow-x on html instead of body — prevents iOS fixed-position scroll bug */
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Invert cursor glow for light theme */

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; outline: none; -webkit-tap-highlight-color: transparent; }
button:focus, a:focus, button:focus-visible, a:focus-visible { outline: none; }
* { -webkit-tap-highlight-color: transparent; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: rgba(8,145,178,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(8,145,178,0.65); }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── Utility ─────────────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.text-gold  { color: var(--gold); }
.text-cyan  { color: var(--cyan); }
.text-muted { color: var(--text-muted); }
.text-dim   { color: var(--text-dim); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ── Glass Panel ──────────────────────────────────────── */
.glass {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-glass);
}
.glass-light {
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-glass);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: #16a34a;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(22,163,74,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-glow:hover {
  background: #15803d;
  box-shadow: 0 6px 24px rgba(22,163,74,0.45);
  transform: translateY(-2px);
}
.btn-glow:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(245,158,11,0.5);
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 15px;
  transition: var(--transition);
  background: transparent;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(245,158,11,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  background: rgba(0,0,0,0.02);
}
.btn-ghost:hover {
  border-color: rgba(8,145,178,0.4);
  color: var(--cyan);
  background: rgba(8,145,178,0.06);
}

.btn-sm  { padding: 9px 20px; font-size: 13px; }
.btn-xs  { padding: 6px 14px; font-size: 12px; }
.btn-full { width: 100%; }
.btn-icon-only { padding: 11px; border-radius: var(--radius-sm); }

/* ── Badge ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  top: -7px;
  right: -7px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.badge-gold  { background: var(--gold); color: #ffffff; }
.badge-cyan  { background: var(--cyan); color: #ffffff; }
.badge-green { background: #10b981; color: #fff; }
.badge-red   { background: #ef4444; color: #fff; }
.badge-inline {
  position: static;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Cursor Glow (removed) ──────────────────────────────── */
.cursor-glow {
  display: none;
}

/* ══════════════════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════════════════ */

/* Announce Bar */
.announce-bar {
  background: linear-gradient(90deg, rgba(245,158,11,0.12), rgba(6,182,212,0.1), rgba(245,158,11,0.12));
  border-bottom: 1px solid rgba(245,158,11,0.15);
  padding: 9px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.announce-bar strong { color: var(--gold); font-weight: 700; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

/* ════════════════════════════════════════════════════════
   NAVBAR — Logo left · Links center · Icons right
════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* ── Logo (left) ──────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.logo-dot {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

/* ── Center nav links ─────────────────────────────────── */
.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-link:hover,
.nav-link.active { color: var(--text-primary); }
.nav-link-drop svg { transition: transform 0.25s; }
.nav-link-drop[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ── Shared dropdown ──────────────────────────────────── */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 6px;
  display: none;
  z-index: 500;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  animation: dropIn 0.18s ease;
}
.nav-dropdown.nav-dropdown-right {
  left: auto;
  right: 0;
  transform: none;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown.nav-dropdown-right { animation-name: dropInRight; }
@keyframes dropInRight {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown-wrap.open .nav-dropdown { display: block; }

.nav-dropdown-header {
  padding: 8px 14px 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-dropdown-item:hover { background: #f8fafc; color: var(--text-primary); }
.nav-dropdown-logout:hover { background: #fef2f2 !important; color: #ef4444 !important; }
.nav-dropdown-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 5px 0; }

/* ── Category Mega Dropdown ───────────────────────────── */
.cat-mega-dropdown {
  left: 50%;
  transform: translateX(-50%);
  min-width: 480px;
  max-width: 560px;
  padding: 0;
  border-radius: var(--radius);
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cat-dd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.cat-dd-header span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cat-dd-view-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.15s;
}
.cat-dd-view-all:hover { opacity: 0.75; }
.cat-dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 8px;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
}
.cat-dd-grid::-webkit-scrollbar { width: 4px; }
.cat-dd-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 4px; }
.cat-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  color: var(--text-muted);
}
.cat-dd-item:hover {
  background: #f1f5f9;
  color: var(--text-primary);
}

/* ── Right icons ──────────────────────────────────────── */
.nav-icons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  justify-self: end;
}
.nav-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.nav-icon-btn:hover { color: var(--text-primary); background: #f1f5f9; }

/* Nav user avatar / initials */
.nav-user-btn {
  padding: 0 !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.nav-user-btn:hover { background: none !important; }
.nav-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  object-fit: cover;
  display: block;
  border: 2px solid #e2e8f0;
  transition: border-color 0.2s;
}
.nav-user-btn:hover .nav-user-avatar { border-color: var(--cyan); }
.nav-user-initials {
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon-divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.1);
  margin: 0 8px;
}

.nav-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: #16a34a;
  color: #fff;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Search suggestions ───────────────────────────────── */
.search-input {
  width: 100%;
  padding: 9px 14px 9px 40px;
  background: #f8fafc;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13.5px;
  transition: var(--transition);
  font-family: inherit;
}
.search-input::placeholder { color: var(--text-dim); }
.search-input:focus {
  background: #fff;
  border-color: rgba(8,145,178,0.5);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
  outline: none;
}
.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  max-height: 360px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.search-suggestions.open { display: block; }
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 13.5px;
}
.suggestion-item:hover { background: #f8fafc; }
.suggestion-item img { width: 38px; height: 38px; border-radius: var(--radius-xs); object-fit: cover; }
.suggestion-item .s-name { font-weight: 600; font-size: 13.5px; }
.suggestion-item .s-price { color: var(--gold); font-size: 12px; margin-top: 1px; }

/* ── Desktop Search Overlay ──────────────────────────── */
.desktop-search-overlay {
  position: fixed;
  top: 62px; /* navbar height */
  left: 0; right: 0;
  z-index: 1001; /* above navbar (z-index:1000) */
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.desktop-search-overlay.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.desktop-search-inner {
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 14px 32px;
  max-width: 100%;
  z-index: 2;
}
.desktop-search-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.desktop-search-field {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.desktop-search-icon-field {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  pointer-events: none;
  flex-shrink: 0;
}
.desktop-search-input {
  width: 100%;
  height: 46px;
  padding: 0 44px 0 44px;
  background: #f8fafc;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.desktop-search-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
}
.desktop-search-input::placeholder { color: var(--text-dim); font-size: 14px; }
.desktop-search-clear {
  position: absolute;
  right: 12px;
  color: var(--text-dim);
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
}
.desktop-search-clear:hover { background: #d1d5db; color: var(--text-primary); }
.desktop-search-clear.visible { display: flex; }
.desktop-search-submit {
  height: 46px;
  padding: 0 22px;
  background: var(--cyan);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.desktop-search-submit:hover {
  background: #0284a8;
  box-shadow: 0 4px 16px rgba(8,145,178,0.25);
}
.desktop-search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  max-height: 380px;
  overflow-y: auto;
  display: none;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.desktop-search-suggestions.open { display: block; }
.desktop-search-backdrop {
  position: fixed;
  top: 62px; left: 0; right: 0; bottom: 0;
  z-index: -1;
  cursor: default;
}

/* Active state on the search button */
.desktop-search-btn.active {
  color: var(--cyan);
  background: rgba(8,145,178,0.08);
}

/* Mobile search bar */
.mobile-search-bar {
  display: none;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border-glass);
}
.mobile-search-bar.open { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  z-index: 2000;
  padding: 24px;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { left: 0; }
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 20px;
}
.drawer-close-btn {
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  transition: color 0.2s;
}
.drawer-close-btn:hover { color: var(--text-primary); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 3px; }
.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-nav-list a:hover { background: rgba(0,0,0,0.05); color: var(--text-primary); }
.mobile-cat-group { margin: 10px 0; }
.mobile-cat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 6px 14px;
}
.mobile-cat-link {
  font-size: 14px !important;
  color: var(--text-dim) !important;
  padding-left: 28px !important;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(6px);
}
.mobile-overlay.open { display: block; }

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.45);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }
.cart-drawer-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border-glass);
}
.cart-drawer-hd h3 { font-size: 18px; font-weight: 800; }
.cart-count-label { color: var(--text-muted); font-size: 15px; font-weight: 400; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-loading-txt { text-align: center; padding: 40px 0; color: var(--text-dim); }
.cart-drawer-ft {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border-glass);
  background: #fff;
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.cart-drawer-total strong {
  color: var(--text-primary);
  font-size: 20px;
  font-family: var(--font-head);
  font-weight: 800;
}
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 8px;
  text-decoration: none;
}
.cart-checkout-btn:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-1px);
}
.cart-viewcart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.cart-viewcart-btn:hover {
  border-color: rgba(0,0,0,0.25);
  color: var(--text-primary);
}

/* Cart drawer items */
.cart-drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-drawer-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-glass);
}
.cart-item-name { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.cart-item-price { font-size: 14px; color: var(--gold); font-weight: 700; }
.cart-item-qty { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.cart-item-remove {
  color: var(--text-dim);
  padding: 5px;
  border-radius: 5px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #ef4444; }
.cart-empty-msg { text-align: center; padding: 60px 20px; color: var(--text-dim); }
.cart-empty-msg svg { margin: 0 auto 18px; opacity: 0.25; }
.cart-empty-msg p { font-size: 16px; margin-bottom: 20px; }

/* Flash Message */
.flash-msg {
  position: fixed;
  top: 120px;
  right: 22px;
  z-index: 3000;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  max-width: 360px;
  animation: slideInRight 0.35s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.flash-success { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); color: #065f46; }
.flash-error   { background: rgba(239,68,68,0.1);   border-color: rgba(239,68,68,0.3);  color: #991b1b; }
.flash-info    { background: rgba(8,145,178,0.1);   border-color: rgba(8,145,178,0.3);  color: #164e63; }
.flash-close { margin-left: auto; opacity: 0.6; font-size: 20px; line-height: 1; }
.flash-close:hover { opacity: 1; }

/* ── Section Heading ───────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
}
.section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse-dot 2s infinite; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 20px;
}
.section-subtitle {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Page Wrapper ──────────────────────────────────────── */
.page-content { padding-top: 68px; } /* Fixed navbar height */

/* ══════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════ */
.product-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  cursor: pointer;
  transform-style: flat;
  will-change: auto;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(8,145,178,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.product-card .card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255,255,255,0.5) 0%, transparent 65%);
  transition: opacity 0.3s;
  z-index: 10;
}
.product-card:hover .card-shine { opacity: 1; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: none; }

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Wishlist & action buttons always above card link */
.product-wishlist-btn,
.product-card-actions,
.btn-add-cart {
  position: relative;
  z-index: 3;
}
.product-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.discount-badge {
  background: linear-gradient(135deg, var(--gold), #ea580c);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.out-of-stock-badge {
  background: rgba(239,68,68,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: var(--radius-xs);
}

.product-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: var(--transition);
  opacity: 1;
  transform: scale(1);
}
.product-wishlist-btn svg { width: 14px; height: 14px; }
.product-wishlist-btn:hover { border-color: #fecdd3; background: #fff1f2; color: #ef4444; }
.product-wishlist-btn.active { background: #fff1f2; border-color: #fecdd3; }
.product-wishlist-btn.active svg { fill: #ef4444; stroke: #ef4444; }

.product-card-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat-label {
  font-size: 9px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-name a { transition: color 0.2s; }
.product-name a:hover { color: var(--cyan); }

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
}
.product-old-price {
  font-size: 10px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.product-card-actions { display: flex; gap: 6px; position: relative; z-index: 2; }
.btn-add-cart {
  flex: 1;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  background: #16a34a;
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22,163,74,0.25);
}
.btn-add-cart:hover {
  background: #15803d;
  box-shadow: 0 4px 16px rgba(22,163,74,0.4);
  transform: translateY(-1px);
}
.btn-add-cart:active { transform: translateY(0); }
.btn-add-cart:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── Products Grid ─────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

/* ── Section Spacer ────────────────────────────────────── */
.section    { padding: 90px 0; }
.section-sm { padding: 56px 0; }

/* ── Star Rating ───────────────────────────────────────── */
.stars { display: flex; gap: 3px; }
.star { color: rgba(245,158,11,0.22); font-style: normal; font-size: 16px; }
.star.filled { color: var(--gold); text-shadow: 0 0 6px var(--gold-glow); }

/* ── Tab Buttons ───────────────────────────────────────── */
.tab-btn { transition: color 0.2s, border-color 0.2s, background 0.2s; }
.tab-btn:hover  { color: var(--text-primary) !important; }
.tab-btn.active { color: var(--cyan) !important; border-bottom-color: var(--cyan) !important; background: rgba(6,182,212,0.04) !important; }

/* ── Form Elements ─────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 13px 18px;
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition);
  line-height: 1.5;
}
.form-control::placeholder { color: var(--text-dim); }
.form-control:focus {
  border-color: rgba(8,145,178,0.5);
  background: rgba(8,145,178,0.03);
  box-shadow: 0 0 0 4px rgba(8,145,178,0.08);
}
.form-control.error { border-color: rgba(239,68,68,0.5); }
.form-error { font-size: 12px; color: #dc2626; margin-top: 5px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Alert ─────────────────────────────────────────────── */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  line-height: 1.55;
}
.alert-success { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.25); color: #065f46; }
.alert-error   { background: rgba(239,68,68,0.08);  border-color: rgba(239,68,68,0.25);  color: #991b1b; }
.alert-info    { background: rgba(8,145,178,0.07);  border-color: rgba(8,145,178,0.2);   color: #164e63; }

/* ── Divider ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--border-glass); margin: 36px 0; }

/* ── Pagination ────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.page-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border-glass);
  color: var(--text-muted);
  transition: var(--transition);
  background: #ffffff;
}
.page-btn:hover { border-color: rgba(8,145,178,0.45); color: var(--cyan); background: rgba(8,145,178,0.06); }
.page-btn.active { background: #16a34a; border-color: transparent; color: #ffffff; font-weight: 800; box-shadow: 0 4px 16px rgba(22,163,74,0.35); }
.page-btn.disabled { opacity: 0.3; pointer-events: none; }

/* ── Back to Top ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(22,163,74,0.35);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 8px 36px var(--gold-glow); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar {
  background: #f8fafc;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 22px 0;
}
.trust-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 170px;
}
.trust-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.trust-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 3px;
}
.trust-sep { width: 1px; height: 44px; background: var(--border-glass); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer { border-top: 1px solid var(--border-glass); background: #f8fafc; }
.footer-top { padding: 70px 0; }
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo .logo-text { font-size: 28px; }
.footer-tagline {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--cyan);
  margin: 8px 0 14px;
  letter-spacing: 0.04em;
}
.footer-desc { font-size: 14px; color: var(--text-dim); line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(8,145,178,0.1); border-color: rgba(8,145,178,0.35); color: var(--cyan); transform: translateY(-2px); }
.footer-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--cyan); opacity: 0.6; font-size: 16px; line-height: 1; }
.footer-links a:hover { color: var(--cyan); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.footer-newsletter { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(0,0,0,0.04);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: rgba(8,145,178,0.45); outline: none; }
.newsletter-msg { font-size: 13px; margin-top: 8px; }
.footer-bottom { border-top: 1px solid var(--border-glass); padding: 22px 0; }
.footer-copy { font-size: 14px; color: var(--text-dim); }
.footer-payments { display: flex; align-items: center; gap: 10px; }
.footer-payments img { border-radius: 5px; opacity: 0.7; filter: brightness(1.2); }
.footer-bottom-inner {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: unset !important;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-app-badges { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.app-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.app-badge-pill:hover { background: rgba(8,145,178,0.08); border-color: rgba(8,145,178,0.3); color: var(--cyan); }

/* ══════════════════════════════════════════════════════
   TOASTS
══════════════════════════════════════════════════════ */
.toast-wrap {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}
.toast {
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  animation: toastIn 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.toast-success { background: rgba(16,185,129,0.12); color: #065f46; border-color: rgba(16,185,129,0.3); }
.toast-error   { background: rgba(239,68,68,0.1);   color: #991b1b; border-color: rgba(239,68,68,0.3); }
.toast-info    { background: rgba(8,145,178,0.1);   color: #164e63; border-color: rgba(8,145,178,0.3); }

/* ══════════════════════════════════════════════════════
   TABLES & STATUS
══════════════════════════════════════════════════════ */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--border-glass);
}
.data-table th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.data-table tr:hover td { background: rgba(0,0,0,0.025); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.status-pending    { background: rgba(217,119,6,0.1);   color: #92400e; }
.status-confirmed  { background: rgba(59,130,246,0.1);  color: #1e40af; }
.status-processing { background: rgba(8,145,178,0.1);   color: #164e63; }
.status-shipped    { background: rgba(139,92,246,0.1);  color: #5b21b6; }
.status-delivered  { background: rgba(16,185,129,0.1);  color: #065f46; }
.status-cancelled  { background: rgba(239,68,68,0.08);  color: #991b1b; }
.status-returned   { background: rgba(249,115,22,0.1);  color: #9a3412; }

/* ══════════════════════════════════════════════════════
   QUANTITY CONTROL
══════════════════════════════════════════════════════ */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: var(--transition);
  background: rgba(0,0,0,0.03);
}
.qty-btn:hover { background: rgba(8,145,178,0.1); color: var(--cyan); }
.qty-input {
  width: 52px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ══════════════════════════════════════════════════════
   CART PAGE TABLE
══════════════════════════════════════════════════════ */
.cart-table-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-glass);
}

/* ══════════════════════════════════════════════════════
   CHECKOUT STEPS
══════════════════════════════════════════════════════ */
.checkout-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  margin-bottom: 48px;
}
.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 120px;
  flex: 0 0 auto;
}
.checkout-step::after {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  width: auto;
  height: 2px;
  background: var(--border-glass);
}
.checkout-step.done::after  { background: #16a34a; }
.checkout-step.active::after { background: #e2e8f0; }
.checkout-step:last-child::after { display: none; }

/* Pending step — default */
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: #94a3b8;
  background: #f8fafc;
  transition: all 0.2s;
  position: relative; z-index: 1;
}
/* Done step — green */
.checkout-step.done .step-circle {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
/* Active step — blue */
.checkout-step.active .step-circle {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.step-label {
  font-size: 11px; font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.06em; white-space: nowrap;
  text-transform: uppercase;
}
.checkout-step.done   .step-label { color: #16a34a; }
.checkout-step.active .step-label { color: #2563eb; font-weight: 700; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — tablet only (769px–1024px)
   Mobile overrides are in assets/css/mobile.css
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-sep { display: none; }
  .trust-bar-inner { justify-content: flex-start; gap: 28px; }
  .trust-item { min-width: 150px; flex: 0 0 auto; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; }
}
