@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,700;0,900;1,700;1,900&family=Barlow:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --theme:        #E2A812; /* Premium Mustard Yellow */
  --theme-dark:   #C28F0A;
  --theme-light:  rgba(226, 168, 18, 0.1);
  --bg:           #FFFFFF; /* Pure White background */
  --surface:      #FAFAFA; /* Off-white surface */
  --border:       #111111; /* Stark black borders */
  --border-light: #E5E5EA; /* Subtle grey dividers */
  --text:         #111111; /* Pitch black text */
  --text-muted:   #555555;
  --text-light:   #8E8E93;
  --danger:       #E8391D;
  --success:      #22C55E;
  --warn:         #FBBF24;
  --radius:       0px;
  --radius-lg:    0px;
  --shadow:       none;
  --shadow-md:    none;
  --shadow-lg:    none;
  --sidebar-w:    240px;
  --topbar-h:     60px;
  --font-serif:   'Barlow Condensed', sans-serif;
  --font-sans:    'Barlow', sans-serif;
  --font-cursive: 'DM Mono', monospace;

  /* Accent Highlight System */
  --accent-gold:   #FFC72C;
  --accent-orange: #E2A812;
}

:root.light-mode, body.light-mode {
  --bg:           #FFFFFF;
  --surface:      #FAFAFA;
  --border:       #111111;
  --border-light: #E5E5EA;
  --text:         #111111;
  --text-muted:   #555555;
  --text-light:   #8E8E93;
  --theme-light:  rgba(226, 168, 18, 0.1);
  --shadow:       none;
  --shadow-md:    none;
  --shadow-lg:    none;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; font-family: var(--font-serif); text-transform: uppercase; letter-spacing: 0.03em; }

.brand-cursive {
  font-family: var(--font-cursive);
  font-size: 1.6rem;
  color: var(--theme);
  display: inline-block;
  margin-left: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  vertical-align: middle;
  letter-spacing: -0.05em;
}

/* Promo Marquee */
.promo-marquee {
  background: #111111;
  color: var(--accent-orange);
  font-family: var(--font-cursive);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--border);
}
.promo-marquee-content {
  display: inline-block;
  animation: marquee-anim 25s linear infinite;
}
@keyframes marquee-anim {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); } /* Uses duplicate text for seamless loop */
}

/* ── UTILITY ──────────────────────────────────────────────── */
.req { color: var(--danger); }

/* ── ALERTS ───────────────────────────────────────────────── */
.alert {
  padding: .8rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-size: .9rem;
  font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-warn    { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.2rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 700;
  border: 2px solid var(--border);
  transition: all .15s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-primary {
  background: var(--theme);
  color: #FFFFFF;
  box-shadow: 3px 3px 0px var(--border);
}
.btn-primary:hover {
  background: var(--accent-gold);
  color: #000000;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--border);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  box-shadow: 3px 3px 0px var(--border);
}
.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--border);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: .35rem .8rem; font-size: .8rem; }
.btn-sale   { background: var(--accent-gold); color: #000000; border: 2px solid var(--border); box-shadow: 3px 3px 0px var(--border); }
.btn-edit   { background: var(--theme); color: #FFFFFF; border: 2px solid var(--border); box-shadow: 3px 3px 0px var(--border); }
.btn-delete { background: #FF0000; color: #FFFFFF; border: 2px solid var(--border); box-shadow: 3px 3px 0px var(--border); }
.btn-sale:hover   { background: #FFFFFF; color: #000000; transform: translate(-2px, -2px); box-shadow: 5px 5px 0px var(--border); }
.btn-edit:hover   { background: #FFFFFF; color: #000000; transform: translate(-2px, -2px); box-shadow: 5px 5px 0px var(--border); }
.btn-delete:hover { background: #FFFFFF; color: #000000; transform: translate(-2px, -2px); box-shadow: 5px 5px 0px var(--border); }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #ffffff;
  color: #111111;
  padding: .6rem 1.1rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  border: 2px solid var(--border);
  transition: all .15s ease;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 3px 3px 0px var(--border);
}
.btn-whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: var(--border);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--border);
}
.btn-whatsapp-lg {
  padding: .9rem 2rem;
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* ── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color .15s;
  outline: none;
}
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 2.8rem !important;
}
.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--theme);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme) 15%, transparent);
}
.form-group input[type="file"] {
  padding: .5rem;
  background: var(--bg);
  border: 1.5px dashed var(--border);
}
.form-group small { font-size: .78rem; color: var(--text-muted); margin-top: .3rem; display: block; }
.form-group small a { color: var(--theme); text-decoration: underline; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .93rem; font-weight: 500; }
.checkbox-label input { width: auto; accent-color: var(--theme); }
.color-row { display: flex; gap: .6rem; align-items: center; }
.color-row input[type="color"] { width: 48px; height: 42px; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2px; cursor: pointer; }
.color-row input[type="text"] { flex: 1; }

/* ── CARD ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card-header { margin-bottom: 1.4rem; }
.card-header h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.card-header p  { font-size: .82rem; color: var(--text-muted); margin-top: .2rem; }

/* ── AUTH PAGE ────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1714 0%, #2d2218 50%, #1a1714 100%);
  padding: 1rem;
}
.sa-auth { background: linear-gradient(135deg, #0f0d0b 0%, #1e1815 50%, #0f0d0b 100%); }

.auth-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}
.auth-brand { text-align: center; margin-bottom: 2rem; }
.auth-logo-icon {
  font-size: 2.5rem;
  color: var(--theme);
  display: block;
  margin-bottom: .5rem;
}
.auth-logo-img {
  height: 64px;
  width: auto;
  margin: 0 auto .8rem;
  object-fit: contain;
}
.auth-brand h1 { font-size: 1.5rem; font-weight: 800; color: var(--text); font-family: var(--font-serif); }
.auth-brand h1 span { color: var(--theme); }
.auth-brand p { font-size: .82rem; color: var(--text-muted); margin-top: .3rem; }

/* ── ADMIN LAYOUT ─────────────────────────────────────────── */
.admin-body { display: flex; min-height: 100vh; background: var(--bg); }

/* Sidebar */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform .25s ease;
  border-right: 2px solid var(--border);
}
.sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.4rem 1rem 1.2rem;
  border-bottom: 2px solid var(--border);
}
.sidebar-logo { height: 56px; width: auto; max-width: 180px; object-fit: contain; border-radius: 8px; }
.brand-icon { font-size: 1.6rem; color: var(--theme); }
.brand-name { font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.brand-sub  { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

.sidebar-nav { flex: 1; padding: 1rem 0; }
.nav-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1.4rem;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
  transition: all .15s;
  border-left: 3px solid transparent;
}
.nav-item:hover { background: var(--bg); color: var(--theme); }
.nav-item.active {
  background: var(--theme-light);
  color: var(--theme);
  border-left-color: var(--theme);
}
.nav-item-danger { color: #d9a0a0 !important; }
.nav-item-danger:hover { color: #d94f4f !important; }
.nav-icon { font-size: 1rem; width: 20px; text-align: center; }

.sa-sidebar .nav-item.active { background: var(--theme-light); }

.sidebar-footer {
  padding: 1rem 1.4rem;
  font-size: .72rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

/* Sidebar overlay (mobile) */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
}

/* Main area */
.admin-main {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Topbar */
.admin-topbar {
  height: var(--topbar-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text);
  padding: .2rem;
}
.topbar-title { font-size: 1rem; font-weight: 700; flex: 1; }
.topbar-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  background: var(--theme-light);
  color: var(--theme-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sa-badge { background: #ffffff; color: var(--theme); }
.topbar-user { font-size: .83rem; color: var(--text-muted); }

/* Content */
.admin-content { padding: 1.8rem 1.5rem; flex: 1; max-width: 1200px; }

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .15s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card-highlight { border-color: var(--theme); background: linear-gradient(135deg, var(--theme-light), #fff); }
.stat-icon { font-size: 1.5rem; margin-bottom: .3rem; }
.stat-num  { font-size: 1.7rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-card-highlight .stat-num { color: var(--theme-dark); }
.stat-label { font-size: .75rem; color: var(--text-muted); margin-top: .3rem; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.section-header h3 { font-size: .95rem; font-weight: 700; }

/* ── PRODUCT MINI GRID (dashboard) ───────────────────────── */
.product-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.product-mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .15s;
}
.product-mini-card:hover { transform: translateY(-2px); }
.product-mini-card.soldout { opacity: .6; }
.product-mini-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg); }
.product-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.soldout-badge {
  position: absolute; top: 6px; right: 6px;
  background: var(--danger); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: 50px;
  text-transform: uppercase;
}
.product-mini-info { padding: .7rem; }
.product-mini-title { font-size: .83rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: .2rem; }
.product-mini-price { font-size: .88rem; font-weight: 700; color: var(--theme-dark); }
.product-mini-qty   { font-size: .72rem; color: var(--text-muted); margin-top: .2rem; }

/* ── SUPER ADMIN GRID ─────────────────────────────────────── */
.sa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.current-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.current-logo img { height: 48px; width: auto; border-radius: 6px; border: 1px solid var(--border); }
.current-logo span { font-size: .8rem; color: var(--text-muted); }

.owner-status {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--bg);
  padding: .8rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.owner-name { font-size: .87rem; font-weight: 600; }
.badge { font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 50px; text-transform: uppercase; }
.badge-success { background: #d1fae5; color: #065f46; }

.info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  font-size: .83rem;
}
.info-box code { font-family: monospace; font-size: .82rem; color: var(--theme-dark); word-break: break-all; }

.checklist h4 { font-size: .85rem; font-weight: 700; margin-bottom: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.checklist ul { list-style: none; }
.checklist li { font-size: .88rem; padding: .3rem 0; color: var(--text-muted); }
.checklist li.done { color: var(--text); }

/* ── PRODUCT TABLE ────────────────────────────────────────── */
.list-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.search-bar-form { display: flex; gap: .5rem; flex: 1; min-width: 200px; }
.search-input { flex: 1; padding: .55rem .9rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .88rem; outline: none; }
.search-input:focus { border-color: var(--theme); }

.filter-tabs { display: flex; gap: .4rem; }
.filter-tab {
  padding: .4rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all .15s;
}
.filter-tab:hover { border-color: var(--theme); color: var(--theme); }
.filter-tab.active { background: var(--theme); color: #fff; border-color: var(--theme); }

.table-card { padding: 0; overflow: hidden; }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--bg);
  padding: .8rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--border); font-size: .88rem; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafaf8; }

.table-thumb {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.table-product-title { font-weight: 600; font-size: .9rem; }
.table-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .3rem; }
.tag-pill {
  background: var(--theme-light);
  color: var(--theme-dark);
  font-size: .72rem;
  padding: .25rem .6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.status-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.status-active  { background: #d1fae5; color: #065f46; }
.status-soldout { background: #fee2e2; color: #991b1b; }

.action-btns { display: flex; gap: .4rem; }
.empty-cell { text-align: center; color: var(--text-muted); padding: 2rem !important; }

.pagination { display: flex; gap: .4rem; padding: 1rem; justify-content: center; }
.page-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all .15s;
}
.page-btn:hover { border-color: var(--theme); color: var(--theme); }
.page-btn.active { background: var(--theme); color: #fff; border-color: var(--theme); }

/* ── ADD PRODUCT ──────────────────────────────────────────── */
.add-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  position: relative;
  transition: border-color .2s;
}
.upload-zone:has(#uploadPlaceholder:hover) { border-color: var(--theme); }
.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  cursor: pointer;
  padding: 2rem;
  transition: background .15s;
}
.upload-placeholder:hover { background: var(--bg); }
.upload-icon { font-size: 3rem; margin-bottom: .8rem; }
.upload-text { font-weight: 600; color: var(--text); margin-bottom: .3rem; }
.upload-sub  { font-size: .8rem; color: var(--text-muted); }

.upload-preview { width: 100%; height: 280px; object-fit: cover; }
.ai-loader {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.ai-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--theme);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ai-status {
  padding: .7rem 1rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  margin-top: .8rem;
}
.ai-success { background: #d1fae5; color: #065f46; }
.ai-error   { background: #fee2e2; color: #991b1b; }

/* Edit product */
.edit-current-image { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--bg); }
.edit-current-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── STOREFRONT ───────────────────────────────────────────── */
.storefront { background: var(--bg); }

.store-header {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  padding: 1rem 1.2rem .8rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.store-header-inner { display: flex; align-items: center; gap: 1rem; margin-bottom: .8rem; }
.store-logo { height: 48px; width: auto; object-fit: contain; }
.store-logo-text { font-size: 2rem; color: var(--theme); font-family: var(--font-serif); }
.store-name {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.2;
}
.store-tagline { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }

.store-search { position: relative; }
.search-wrap { position: relative; }
.search-wrap .search-icon {
  position: absolute; left: .9rem; top: 50%;
  transform: translateY(-50%);
  font-size: .9rem; pointer-events: none;
}
.search-wrap input {
  width: 100%;
  padding: .6rem .9rem .6rem 2.4rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .9rem;
  background: var(--bg);
  outline: none;
  transition: border-color .15s;
}
.search-wrap input:focus { border-color: var(--theme); }

.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 200;
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg); }
.search-result-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; }
.sr-title { font-size: .88rem; font-weight: 600; }
.sr-price { font-size: .8rem; color: var(--theme-dark); font-weight: 600; }

/* Tag filter bar */
.tag-filter-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .6rem 1rem;
}
.tag-filter-scroll { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.tag-filter-scroll::-webkit-scrollbar { display: none; }
.tag-chip {
  display: inline-block;
  padding: .35rem .9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  transition: all .15s;
  background: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tag-chip:hover {
  border-color: var(--theme);
  color: var(--theme);
  transform: translateY(-2px);
  box-shadow: 2px 2px 0px var(--theme);
}
.tag-chip.active { background: var(--theme); border-color: var(--theme); color: #fff; }

/* Main & Sections */
.store-main { max-width: 1100px; margin: 0 auto; padding: 1.5rem 1rem 4rem; }

.section-label {
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
  width: max-content;
}
.product-count {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .15rem .5rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Featured strip */
.featured-section { margin-bottom: 2.5rem; }
.featured-strip {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.featured-strip::-webkit-scrollbar { display: none; }
.featured-card {
  flex: 0 0 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .18s;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.featured-card img { width: 160px; height: 160px; object-fit: cover; }
.featured-card-info { padding: .6rem .7rem; }
.featured-card-title { font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: .2rem; }
.featured-card-price { font-size: .82rem; font-weight: 700; color: var(--theme-dark); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
}
.product-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 transparent;
  transition: all .2s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0px var(--border);
}
.product-card-link { flex: 1; display: flex; flex-direction: column; }
.product-card-img  { aspect-ratio: 1; overflow: hidden; background: var(--bg); position: relative; border-bottom: 2px solid var(--border); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.featured-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--theme);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card-body { padding: 1rem .9rem .5rem; flex: 1; }
.product-card-title { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: .4rem; text-transform: uppercase; letter-spacing: 0.03em; }
.product-card-price { font-size: 1.1rem; font-weight: 900; color: var(--theme); font-family: var(--font-sans); }
.product-card-footer { padding: .7rem .9rem .9rem; }

.empty-store {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Product detail */
.product-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky; top: 0; z-index: 50;
}
.back-btn { font-size: .9rem; font-weight: 600; color: var(--theme); }
.back-btn:hover { color: var(--theme-dark); }
.product-header-brand { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 600; color: var(--text-muted); }
.store-logo-sm { height: 28px; width: auto; border-radius: 4px; }

.product-detail { max-width: 1000px; margin: 0 auto; padding: 1.5rem 1rem 4rem; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.product-detail-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); aspect-ratio: 1; }
.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.soldout-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; font-weight: 800;
  letter-spacing: .08em;
}

.product-detail-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.product-detail-title { font-size: 1.6rem; font-weight: 800; font-family: var(--font-serif); line-height: 1.2; margin-bottom: .8rem; }
.product-detail-price { font-size: 2rem; font-weight: 900; color: var(--theme-dark); font-family: var(--font-serif); }
.product-detail-desc { margin-top: 1.2rem; color: var(--text-muted); line-height: 1.75; font-size: .95rem; }
.product-detail-meta { margin-top: 1.5rem; font-size: .82rem; color: var(--text-light); }
.soldout-msg { margin-top: 1.5rem; padding: .9rem 1.2rem; background: #fee2e2; color: #991b1b; border-radius: var(--radius); font-weight: 600; }

.related-section { margin-top: 3rem; }

/* Search page header */
.product-header .search-header-form {
  display: flex; flex: 1; gap: .5rem;
}
.search-input-header {
  flex: 1; padding: .5rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 50px; font-size: .9rem; outline: none;
}
.btn-search {
  padding: .5rem .9rem; border: none;
  background: var(--theme); color: #fff;
  border-radius: 50px; font-size: .9rem;
}

/* ── STORE FOOTER ─────────────────────────────────────────── */
.store-footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-light);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .sa-grid                { grid-template-columns: 1fr; }
  .add-product-layout     { grid-template-columns: 1fr; }
  .product-detail-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay.open {
    display: block;
  }
  .admin-main    { margin-left: 0; }
  .menu-toggle   { display: block; }
  .admin-content { padding: 1.2rem 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }

  .product-grid  { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .product-grid-mini { grid-template-columns: repeat(2, 1fr); }

  .list-toolbar { flex-direction: column; align-items: stretch; }
  .search-bar-form { width: 100%; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .product-card-title { font-size: .8rem; }
  .btn-whatsapp { font-size: .78rem; padding: .55rem .7rem; }
  .featured-card { flex: 0 0 140px; }
  .featured-card img { width: 140px; height: 140px; }
}

/* ============================================================
   ASTRA v2 UPGRADE — Additional Styles
   Cart, Checkout, Orders, Bill
   ============================================================ */

/* ── CART ─────────────────────────────────────────────────── */
.cart-layout { display:grid; grid-template-columns:1fr 360px; gap:1.5rem; align-items:start; }
.cart-item { display:flex; gap:1rem; padding:1rem 0; border-bottom:1px solid var(--border); align-items:flex-start; }
.cart-item:last-child { border-bottom:none; }
.cart-item-img { width:80px; height:80px; object-fit:cover; border-radius:var(--radius); flex-shrink:0; border:1px solid var(--border); }
.cart-item-info { flex:1; }
.cart-item-title { font-weight:600; font-size:.92rem; margin-bottom:.3rem; }
.cart-item-price { font-size:.82rem; color:var(--text-muted); }
.cart-item-subtotal { font-weight:700; font-size:.95rem; color:var(--theme-dark); white-space:nowrap; }
.cart-qty-row { display:flex; align-items:center; gap:.5rem; margin-top:.6rem; }
.qty-btn { width:28px; height:28px; border:1.5px solid var(--border); background:var(--surface); border-radius:6px; font-size:1rem; font-weight:700; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .15s; }
.qty-btn:hover { border-color:var(--theme); color:var(--theme); }
.qty-num { font-weight:700; min-width:24px; text-align:center; }
.remove-btn { background:none; border:none; color:var(--danger); font-size:.78rem; cursor:pointer; margin-left:.5rem; }
.remove-btn:hover { text-decoration:underline; }

.summary-row { display:flex; justify-content:space-between; padding:.5rem 0; border-bottom:1px solid var(--border); font-size:.9rem; }
.summary-row:last-child { border-bottom:none; }
.summary-total { font-weight:800; font-size:1.05rem; color:var(--theme-dark); padding-top:.8rem; }

/* Cart icon float */
.cart-float { position:fixed; bottom:1.5rem; right:1.5rem; z-index:80; }
.cart-float-btn {
  background:var(--theme);
  color:#fff;
  border:none;
  width:56px; height:56px;
  border-radius:50%;
  font-size:1.4rem;
  box-shadow:var(--shadow-lg);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  text-decoration:none;
  transition:transform .18s;
}
.cart-float-btn:hover { transform:scale(1.08); }
.cart-count-badge {
  position:absolute;
  top:-4px; right:-4px;
  background:var(--danger);
  color:#fff;
  font-size:.65rem;
  font-weight:800;
  width:20px; height:20px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:2px solid #fff;
}

/* Add to cart button */
.btn-addcart {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:var(--theme);
  color:#fff;
  padding:.6rem 1.1rem;
  border-radius:50px;
  font-size:.85rem;
  font-weight:600;
  border:none;
  cursor:pointer;
  transition:background .18s;
  width:100%;
  justify-content:center;
}
.btn-addcart:hover { background:var(--theme-dark); }
.btn-addcart-lg { padding:.9rem 2rem; font-size:1rem; }

/* Product card footer 2-button layout */
.product-card-footer-2 { display:grid; grid-template-columns:1fr 1fr; gap:.5rem; padding:.7rem .9rem .9rem; }

/* ── CHECKOUT ─────────────────────────────────────────────── */
.checkout-layout { display:grid; grid-template-columns:1fr 360px; gap:1.5rem; align-items:start; }
.checkout-item { display:flex; gap:.8rem; padding:.7rem 0; border-bottom:1px solid var(--border); align-items:center; }
.checkout-item:last-child { border-bottom:none; }
.checkout-item-img { width:52px; height:52px; object-fit:cover; border-radius:6px; border:1px solid var(--border); flex-shrink:0; }
.checkout-item-info { flex:1; }
.checkout-item-title { font-size:.88rem; font-weight:600; }
.checkout-item-meta  { font-size:.78rem; color:var(--text-muted); }
.checkout-item-sub   { font-weight:700; font-size:.9rem; color:var(--theme-dark); }

/* Payment options */
.payment-options { display:flex; flex-direction:column; gap:.7rem; }
.payment-option {
  display:flex;
  align-items:center;
  gap:.9rem;
  padding:.9rem 1rem;
  border:1.5px solid var(--border);
  border-radius:var(--radius);
  cursor:pointer;
  transition:all .15s;
}
.payment-option:hover { border-color:var(--theme); }
.payment-option.selected { border-color:var(--theme); background:var(--theme-light); }
.payment-option input[type="radio"] { display:none; }
.payment-icon { font-size:1.5rem; }
.payment-label { font-weight:600; font-size:.9rem; }
.payment-sub   { font-size:.78rem; color:var(--text-muted); margin-top:.1rem; }

/* ── ORDERS ───────────────────────────────────────────────── */
.status-new       { background:#dbeafe; color:#1d4ed8; }
.status-confirmed { background:#d1fae5; color:#065f46; }
.status-shipped   { background:#fef3c7; color:#92400e; }
.status-delivered { background:#f0fdf4; color:#166534; }
.status-cancelled { background:#fee2e2; color:#991b1b; }

/* ── PRODUCT GALLERY ──────────────────────────────────────── */
.product-gallery { position:relative; }
.product-gallery-main { aspect-ratio:1; overflow:hidden; border-radius:var(--radius-lg); background:var(--bg); }
.product-gallery-main img { width:100%; height:100%; object-fit:cover; transition:opacity .2s; }
.product-gallery-thumbs { display:flex; gap:.5rem; margin-top:.6rem; overflow-x:auto; scrollbar-width:none; }
.product-gallery-thumbs::-webkit-scrollbar { display:none; }
.gallery-thumb { width:60px; height:60px; border-radius:8px; overflow:hidden; flex-shrink:0; border:2px solid transparent; cursor:pointer; transition:border-color .15s; }
.gallery-thumb.active { border-color:var(--theme); }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }

/* ── STORE SETTINGS (dxpanel) ─────────────────────────────── */
.settings-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }

/* ── QUICK ORDER FORM (product page) ──────────────────────── */
.quick-order-card { background:var(--surface); border:2px solid var(--border); border-radius:var(--radius-lg); padding:1.2rem; margin-top:1.2rem; box-shadow: var(--shadow); }
.quick-order-title { font-size:.88rem; font-weight:700; margin-bottom:1rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.04em; }

/* ── RESPONSIVE UPGRADES ──────────────────────────────────── */
@media(max-width:900px) {
  .cart-layout     { grid-template-columns:1fr; }
  .checkout-layout { grid-template-columns:1fr; }
  .settings-grid   { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .product-card-footer-2 { grid-template-columns:1fr; }
}

/* ── HEADER CART BUTTON ───────────────────────────────────── */
.header-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--theme-light);
  border-radius: 50%;
  font-size: 1.2rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: background .15s;
}
.header-cart-btn:hover { background: var(--border); }
.store-header-inner { position: relative; }

/* ── HYDERABAD VISIT CARD ──────────────────────────────────── */
.hyderabad-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.hyderabad-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.hyderabad-card-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.hyderabad-card-info .address {
  font-weight: 700;
  margin-top: 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
}
.hyderabad-card-btn {
  background: var(--border);
  color: #fff;
  border: 2px solid var(--border);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all .15s ease;
}
.hyderabad-card-btn:hover {
  background: var(--theme);
  border-color: var(--border);
  color: #111111;
}
@media (max-width: 600px) {
  .hyderabad-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hyderabad-card-btn {
    justify-content: center;
  }
}

/* ── STORE HERO SECTION ───────────────────────────────────── */
.store-hero {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.store-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.store-hero-text {
  padding: 3rem 2.5rem;
}

.store-hero-tag {
  display: inline-block;
  background: var(--theme);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.store-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.store-hero-title .cursive-highlight {
  font-family: var(--font-cursive);
  color: var(--theme);
  font-size: 3.5rem;
  font-weight: 400;
  text-transform: none;
  display: inline-block;
  transform: rotate(-3deg);
  margin-left: 0.2rem;
}

.store-hero-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.store-hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all 0.18s ease;
  cursor: pointer;
}

.btn-primary-hot {
  background: var(--theme);
  color: #fff;
  border: 2px solid var(--border);
  box-shadow: 2px 2px 0px var(--border);
}

.btn-primary-hot:hover {
  background: var(--text);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px var(--border);
}

.btn-secondary-outline {
  background: #ffffff;
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: 2px 2px 0px var(--border);
}

.btn-secondary-outline:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #25D366;
}

.store-hero-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border-left: 2px solid var(--border);
  display: flex;
  align-items: stretch;
}

.store-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.store-hero:hover .store-hero-image {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .store-hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .store-hero-text {
    padding: 2rem 1.5rem;
  }
  .store-hero-image-wrap {
    height: 240px;
    min-height: auto;
    border-left: none;
    border-top: 2px solid var(--border);
  }
  .store-hero-title {
    font-size: 2.2rem;
  }
  .store-hero-title .cursive-highlight {
    font-size: 2.8rem;
  }
}

/* ── PWA INSTALL BANNER ───────────────────────────────────── */
.pwa-install-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 440px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0px var(--border);
  z-index: 1000;
  padding: 1.1rem;
  animation: slideUp .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.pwa-banner-logo {
  font-size: 1.8rem;
  background: var(--theme-light);
  border: 1.5px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pwa-banner-info {
  flex: 1;
}

.pwa-banner-info h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.15rem;
  font-family: var(--font-sans);
}

.pwa-banner-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.pwa-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  padding: 0 0.2rem;
  transition: color 0.15s;
  align-self: flex-start;
}

.pwa-close-btn:hover {
  color: var(--danger);
}

@media (max-width: 480px) {
  .pwa-install-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: calc(100% - 2rem);
  }
}

/* ── MOBILE APP RESPONSIVENESS OVERRIDES ─────────────────── */
@media (max-width: 480px) {
  /* Store Header mobile adjustments */
  .store-header {
    padding: 0.8rem 0.8rem 0.6rem;
  }
  .store-header-inner {
    gap: 0.6rem;
  }
  .store-logo {
    height: 38px;
  }
  .store-name {
    font-size: 1.05rem;
  }
  .brand-cursive {
    font-size: 1.3rem;
    margin-left: 0.4rem;
  }
  .store-tagline {
    font-size: 0.7rem;
  }
  .header-cart-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .store-search {
    margin-top: 0.4rem;
  }
  .search-wrap input {
    padding: 0.5rem 0.8rem 0.5rem 2.2rem;
    font-size: 0.82rem;
  }
  
  /* Tag chips */
  .tag-filter-bar {
    padding: 0.5rem 0.6rem;
  }
  .tag-chip {
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem;
  }

  /* Store Hero mobile overrides */
  .store-hero {
    margin-bottom: 1.8rem;
  }
  .store-hero-text {
    padding: 1.5rem 1rem;
  }
  .store-hero-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.6rem;
  }
  .store-hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  .store-hero-title .cursive-highlight {
    font-size: 2.2rem;
  }
  .store-hero-desc {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
  .store-hero-cta-group {
    gap: 0.6rem;
  }
  .store-hero-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  .store-hero-image-wrap {
    height: 200px;
  }

  /* Cart Mobile Layout */
  .cart-item {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1rem 0;
  }
  .cart-item-img {
    width: 64px;
    height: 64px;
  }
  .cart-item-info {
    min-width: 150px;
  }
  .cart-item-title {
    font-size: 0.85rem;
  }
  .cart-item-price {
    font-size: 0.78rem;
  }
  .cart-item-subtotal {
    width: 100%;
    text-align: right;
    margin-top: 0.2rem;
    border-top: 1px dashed var(--border-light);
    padding-top: 0.4rem;
    font-size: 0.9rem;
  }
  .cart-qty-row {
    margin-top: 0.4rem;
  }
  .qty-btn {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
  .qty-num {
    font-size: 0.85rem;
    min-width: 18px;
  }

  /* Checkout mobile overrides */
  .checkout-item-img {
    width: 44px;
    height: 44px;
  }
  .checkout-item-title {
    font-size: 0.8rem;
  }
  .checkout-item-sub {
    font-size: 0.85rem;
  }
  .payment-option {
    padding: 0.75rem 0.85rem;
    gap: 0.6rem;
  }
  .payment-icon {
    font-size: 1.25rem;
  }
  .payment-label {
    font-size: 0.82rem;
  }
  .payment-sub {
    font-size: 0.72rem;
  }

  /* Product Details mobile overrides */
  .product-header {
    padding: 0.8rem;
    gap: 0.6rem;
  }
  .product-header-brand span {
    font-size: 0.82rem;
  }
  .store-logo-sm {
    height: 24px;
  }
  .product-detail-title {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
  }
  .product-detail-price {
    font-size: 1.6rem;
  }
  .product-detail-desc {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .quick-order-card {
    padding: 1rem;
  }
  .btn-addcart-lg, .btn-whatsapp-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.88rem;
  }
}

/* ── LEVIS & PEPE JEANS PREMIUM LIGHT OVERRIDES ────────────────── */
.store-header {
  background: #FFFFFF !important;
  border-bottom: 1px solid #E5E5EA !important;
  padding: 1.2rem 2rem !important;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.store-header-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0 !important;
  width: 100%;
}
.store-brand {
  text-align: center;
}
.store-name {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 2.2rem !important;
  letter-spacing: 0.04em !important;
  color: #111111 !important;
  line-height: 1 !important;
  margin-bottom: 0.1rem !important;
  text-transform: uppercase !important;
}
.store-tagline {
  font-family: var(--font-cursive) !important;
  font-size: 0.7rem !important;
  color: #E2A812 !important;
  letter-spacing: 0.18em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin-top: 0 !important;
}
.header-nav {
  display: flex;
  gap: 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header-nav a {
  color: #111111 !important;
  transition: color 0.15s ease;
  position: relative;
  padding: 0.2rem 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E2A812;
  transition: width 0.2s ease;
}
.header-nav a.active::after, .header-nav a:hover::after {
  width: 100%;
}
.header-nav a.active, .header-nav a:hover {
  color: #E2A812 !important;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-search-input {
  background: #F2F2F7 !important;
  border: 1px solid #E5E5EA !important;
  color: #111111 !important;
  padding: 0.5rem 1rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.8rem !important;
  outline: none;
  width: 160px;
  border-radius: 0px !important;
  transition: all 0.2s ease;
}
.header-search-input:focus {
  border-color: #111111 !important;
  width: 200px;
}
.header-search-input::placeholder {
  color: #8E8E93;
}
.header-search-btn {
  background: none !important;
  border: none !important;
  color: #111111 !important;
  font-size: 1.1rem !important;
  cursor: pointer;
  padding: 0 0.3rem !important;
}
.header-cart-btn {
  font-size: 1.3rem !important;
  color: #111111 !important;
  display: flex !important;
  align-items: center;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.theme-toggle-btn {
  background: #111111 !important;
  border: 1px solid #111111 !important;
  color: #FFFFFF !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  padding: 0.4rem 1rem !important;
  cursor: pointer;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  border-radius: 0px !important;
  transition: all 0.15s ease;
}
.theme-toggle-btn:hover {
  background: #E2A812 !important;
  border-color: #E2A812 !important;
  color: #FFFFFF !important;
}

/* Product Card Styling - Levi's / Myntra Style */
.product-grid {
  gap: 1.5rem !important;
}
.product-card {
  background: #FFFFFF !important;
  border: 1px solid #E5E5EA !important;
  border-radius: 0px !important;
  padding: 0px !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05) !important;
  border-color: #C9C9C9 !important;
}
.product-card-img {
  aspect-ratio: 3 / 4 !important; /* Premium fashion catalog ratio */
  overflow: hidden;
  position: relative;
  background: #FAFAFA;
  border-bottom: 1px solid #E5E5EA !important;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-card-body {
  padding: 1.2rem !important;
  flex-grow: 1;
  text-align: left !important;
}
.product-card-category {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #8E8E93;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.product-card-title {
  font-family: var(--font-sans) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.3 !important;
  letter-spacing: 0.02em;
}
.product-card-price-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
.product-card-price {
  font-family: var(--font-sans) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #111111 !important;
  letter-spacing: 0.01em;
}
.product-card-price-old {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #8E8E93;
  text-decoration: line-through;
}
.discount-badge {
  background: #E2A812;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 0px;
}
.btn-quick-add {
  background: #FFFFFF !important;
  color: #111111 !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  border: 1px solid #111111 !important;
  border-radius: 0px !important;
  padding: 0.6rem 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-quick-add:hover {
  background: #111111 !important;
  color: #FFFFFF !important;
  border-color: #111111 !important;
}
.btn-wa-icon {
  background: #FFFFFF !important;
  border: 1px solid #25D366 !important;
  color: #25D366 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.15s ease;
  border-radius: 0px !important;
}
.btn-wa-icon:hover {
  background: #25D366 !important;
  color: #FFFFFF !important;
}

/* Footer overrides - Clean Editorial Fashion Layout */
.store-footer {
  background: #FFFFFF !important;
  border-top: 1px solid #E5E5EA !important;
  padding: 4rem 2rem 2.5rem !important;
  font-family: var(--font-sans);
  color: #111111 !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr !important; /* Beautiful 5-column layout */
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr !important;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: left;
  }
  .store-footer {
    text-align: left !important;
  }
}
.footer-brand-title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #111111;
}
.footer-brand-sub {
  font-family: var(--font-sans) !important;
  font-size: 0.75rem;
  color: #E2A812 !important;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-grid h4 {
  font-family: var(--font-sans) !important;
  font-size: 0.8rem;
  color: #8E8E93;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-grid ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-grid ul li {
  margin-bottom: 0.7rem;
  list-style: none !important;
  padding: 0 !important;
}
.footer-grid ul li a {
  font-size: 0.85rem;
  color: #555555 !important;
  transition: color 0.15s;
}
.footer-grid ul li a:hover {
  color: #E2A812 !important;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #E5E5EA !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #8E8E93;
}
@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    align-items: flex-start;
  }
}
.gold-text {
  color: var(--theme) !important;
  font-weight: 700;
}

/* ── CLIENT BRIEF EDITORIAL STYLES (LIGHT THEME ALIGNED) ── */

/* Seamless loop marquee */
.marquee-bar {
  background: var(--theme);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  animation: scroll-marquee 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-cursive);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0C0C0C; /* High-contrast black on yellow */
  padding: 0 2.5rem;
}
.marquee-track .dot {
  color: rgba(12,12,12,0.4);
  padding: 0;
  margin: 0 0.2rem;
}
@keyframes scroll-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.logo-sub {
  font-family: var(--font-cursive);
  font-size: 0.6rem;
  color: var(--theme);
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}
.header-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-nav a {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 1.2rem;
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.15s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.2rem; right: 1.2rem;
  height: 3px;
  background: var(--theme);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.header-nav a:hover,
.header-nav a.active { color: var(--text); }
.header-nav a:hover::after,
.header-nav a.active::after { transform: scaleX(1); }
.header-nav a.hot { color: var(--theme); }
.header-nav a.hot::after { background: var(--theme); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-search {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 0 0.8rem;
  height: 36px;
  gap: 0.5rem;
  transition: border-color 0.2s;
}
.header-search:focus-within { border-color: var(--text-light); }
.header-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-cursive);
  font-size: 0.75rem;
  width: 130px;
  padding: 0;
  transition: width 0.25s ease;
}
.header-search input:focus { width: 170px; }
.header-search input::placeholder { color: var(--text-light); }
.header-search svg { flex-shrink: 0; color: var(--text-light); }

.icon-btn {
  color: var(--text);
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.2rem;
  transition: color 0.15s;
}
.icon-btn:hover { color: var(--theme); }
.cart-badge {
  position: absolute;
  top: -5px; right: -6px;
  background: var(--theme);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-cursive);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg);
}
.wa-btn {
  background: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-family: var(--font-cursive);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1rem;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s;
}
.wa-btn:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* Hero split screen */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}
.hero-left {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--border-light);
}
.hero-eyebrow {
  font-family: var(--font-cursive);
  font-size: 0.72rem;
  color: var(--theme);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--theme);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.2em;
}
.hero-headline .line-accent {
  color: var(--theme);
  display: block;
  font-style: italic;
}
.hero-headline .line-outline {
  -webkit-text-stroke: 2.5px var(--text);
  color: transparent;
  display: block;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 1.5rem 0 2.5rem;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-primary {
  background: var(--theme);
  color: #000;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s;
  border: 1px solid var(--theme);
}
.cta-primary:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.cta-secondary {
  background: transparent;
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.cta-secondary:hover {
  background: var(--surface);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}
.hero-stat-val {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
}
.hero-stat-val span {
  color: var(--theme);
  font-size: 1.3rem;
  margin-left: 1px;
}
.hero-stat-label {
  font-family: var(--font-cursive);
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* Hero Right Visual Grid */
.hero-right {
  position: relative;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
}
.hero-tile {
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.hero-tile-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 7.5rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(12,12,12,0.06);
  user-select: none;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-tile:hover .hero-tile-bg {
  transform: scale(1.08);
}
.hero-tile-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-tile-cat {
  font-family: var(--font-cursive);
  font-size: 0.6rem;
  color: #C8C4BC;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-tile-name {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
}
.hero-tile-arrow {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.25s;
  z-index: 2;
}
.hero-tile:hover .hero-tile-arrow {
  background: var(--theme);
  border-color: var(--theme);
  color: #000;
  transform: rotate(45deg);
}
.hero-badge {
  position: absolute;
  top: 50%; left: -1px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  background: var(--theme);
  color: #000;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  z-index: 5;
}

/* Departments Section */
.depts-section {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4rem;
}
.dept-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}
.dept-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.dept-card:last-child { border-right: none; }
.dept-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--theme);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dept-card:hover { background: #FFFFFF; }
.dept-card:hover::before { transform: scaleX(1); }
.dept-num {
  font-family: var(--font-cursive);
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.dept-icon {
  margin: 0.4rem 0;
  color: var(--text);
}
.dept-icon svg {
  display: block;
  stroke: var(--text);
}
.dept-name {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  transition: color 0.15s;
}
.dept-card:hover .dept-name { color: var(--theme); }
.dept-count {
  font-family: var(--font-cursive);
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Featured / Hot Drops Grid & Cards */
.drops-section {
  background: var(--bg);
  margin-bottom: 5rem;
}
.view-all {
  font-family: var(--font-cursive);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.15s;
}
.view-all:hover { color: var(--theme); }
.view-all svg { transition: transform 0.2s; }
.view-all:hover svg { transform: translateX(4px); }

.product-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.03);
}
.product-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: var(--border);
  color: var(--bg);
  font-family: var(--font-cursive);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  z-index: 3;
}
.product-badge.acid {
  background: var(--theme);
  color: #000;
}
.product-quick {
  position: absolute;
  bottom: -44px; left: 0; right: 0;
  background: var(--theme);
  color: #000;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.7rem;
  transition: bottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}
.product-card:hover .product-quick { bottom: 0; }
.product-info {
  padding: 1.1rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid var(--border-light);
}
.product-cat {
  font-family: var(--font-cursive);
  font-size: 0.6rem;
  color: var(--theme);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.product-price {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text);
}

/* Editorial Band */
.editorial-band {
  background: var(--theme);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.editorial-band::before {
  content: 'STYLE';
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 18rem;
  color: rgba(0,0,0,0.05);
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.editorial-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.editorial-tag {
  font-family: var(--font-cursive);
  font-size: 0.68rem;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.editorial-headline {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: #000000;
  text-transform: uppercase;
}
.editorial-headline .italic {
  font-style: italic;
  font-weight: 900;
}
.editorial-cta {
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s;
  border: 1px solid #000;
}
.editorial-cta:hover {
  background: transparent;
  color: #000000;
}

/* Brands section */
.brands-section {
  background: var(--bg);
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 5rem;
}
.brands-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.brands-label {
  font-family: var(--font-cursive);
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.brands-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  flex-wrap: wrap;
}
.brand-pill {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Upcoming Drop Calendar */
.drops-calendar {
  margin-bottom: 6rem;
}
.drops-calendar .section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cal-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.cal-item:hover {
  transform: translateY(-2px);
  border-color: var(--text-light);
}
.cal-item.live-item {
  border-color: var(--theme);
  box-shadow: 0 4px 20px var(--theme-light);
}
.cal-status {
  font-family: var(--font-cursive);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.status-live { color: var(--theme); }
.status-soon { color: var(--text-light); }
.cal-date {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
}
.cal-name {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.02em;
}
.cal-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Site Footer */
.site-footer {
  background: var(--surface) !important;
  border-top: 1px solid var(--border-light) !important;
  padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3rem) 2.5rem !important;
  color: var(--text) !important;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}
.footer-brand-name {
  font-family: var(--font-serif) !important;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.footer-brand-city {
  font-family: var(--font-cursive) !important;
  font-size: 0.65rem;
  color: var(--theme) !important;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-about {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-address {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.footer-col h5 {
  font-family: var(--font-cursive) !important;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-col ul li a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted) !important;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: var(--theme) !important;
}
.footer-col ul li a .arrow {
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s;
  transform: translateX(-4px);
}
.footer-col ul li a:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer-newsletter label {
  font-family: var(--font-cursive);
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: block;
}
.footer-newsletter p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nl-input {
  background: var(--bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--text-light); }
.nl-submit {
  background: var(--border);
  color: var(--bg);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--border);
}
.nl-submit:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: #000;
}

.footer-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 2rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--font-cursive);
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-powered {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky shadow header overlay styles on scroll */
.site-header.sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--border-light) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
  animation: slideDown 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border-light); }
  .dept-grid { grid-template-columns: repeat(3, 1fr); }
  .dept-card:nth-child(3) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-top > div:first-child, .footer-newsletter { grid-column: span 2; }
}
@media (max-width: 768px) {
  .dept-grid { grid-template-columns: 1fr; }
  .dept-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .calendar-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child, .footer-newsletter { grid-column: span 1; }
  .editorial-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; justify-items: center; }
}
