/* ═══════════════════════════════════════════════════════════════
   MEESHO ORDER CONSOLE — "CANDY POP" DESIGN SYSTEM
   Vibrant candy gradients · Bubbly · Fast · Mobile-first Mini App
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* ── Candy palette ── */
  --pink: #FF3E9E;
  --rose: #FF6BB8;
  --orange: #FF7A3D;
  --amber: #FFB02E;
  --grape: #8B5CF6;
  --violet: #A78BFA;
  --mint: #00C896;
  --sky: #38BDF8;

  /* ── Signature gradients ── */
  --candy: linear-gradient(120deg, #FF3E9E 0%, #FF7A3D 55%, #FFB02E 110%);
  --candy-soft: linear-gradient(120deg, rgba(255, 62, 158, 0.12), rgba(255, 122, 61, 0.12));
  --berry: linear-gradient(120deg, #8B5CF6 0%, #FF3E9E 100%);
  --ocean: linear-gradient(120deg, #38BDF8 0%, #00C896 100%);
  --sunny: linear-gradient(120deg, #FFB02E 0%, #FF7A3D 100%);
  --hero: linear-gradient(130deg, #FF3E9E 0%, #8B5CF6 45%, #38BDF8 100%);

  /* ── Surfaces (light default) ── */
  --bg: #FFF6F9;
  --bg-soft: #FFF0F5;
  --card: rgba(255, 255, 255, 0.94);
  --card-solid: #FFFFFF;
  --card-border: #FFE1EC;
  --glass: rgba(255, 255, 255, 0.88);
  --glass-border: #FFE1EC;

  /* ── Text ── */
  --text: #2B2130;
  --text-2: #6B5B68;
  --text-muted: #A08B9A;
  --text-light: #B8A6B2;
  --line: #FFE4EE;
  --muted: #A08B9A;

  /* ── Status colors (legacy aliases kept) ── */
  --green: #00B877;
  --green-light: #E4FBF1;
  --red: #FF4D6D;
  --red-light: #FFE4EA;
  --yellow: #F59E0B;
  --blue: #3B82F6;
  --primary: #FF3E9E;
  --primary-glow: rgba(255, 62, 158, 0.14);
  --berry: #FF4D6D;

  /* ── Shadows ── */
  --puff: 0 6px 24px rgba(255, 62, 158, 0.12), 0 14px 40px rgba(139, 92, 246, 0.10);
  --puff-lg: 0 12px 32px rgba(255, 62, 158, 0.18), 0 30px 70px rgba(139, 92, 246, 0.18);
  --glow: 0 8px 22px rgba(255, 62, 158, 0.38), 0 4px 10px rgba(255, 122, 61, 0.25);

  /* ── Motion ── */
  --spring: cubic-bezier(.34, 1.7, .5, 1);
  --jelly: cubic-bezier(.34, 2.2, .44, .9);
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

[data-theme="dark"] {
  --bg: #141019;
  --bg-soft: #1D1725;
  --card: rgba(29, 23, 37, 0.86);
  --card-solid: #1D1725;
  --card-border: rgba(255, 62, 158, 0.25);
  --glass: rgba(20, 16, 25, 0.9);
  --glass-border: rgba(255, 62, 158, 0.22);
  --text: #FDF3F8;
  --text-2: #CBB7C4;
  --text-muted: #8E7A8A;
  --text-light: #6E5D6B;
  --line: rgba(255, 255, 255, 0.1);
  --muted: #8E7A8A;
  --green-light: rgba(0, 200, 150, 0.16);
  --red-light: rgba(255, 77, 109, 0.16);
  --primary-glow: rgba(255, 62, 158, 0.18);
  --puff: 0 6px 24px rgba(255, 62, 158, 0.16), 0 14px 40px rgba(139, 92, 246, 0.14);
  --puff-lg: 0 12px 32px rgba(255, 62, 158, 0.22), 0 30px 70px rgba(139, 92, 246, 0.2);
}

/* ─── Reset & Base ─── */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  padding-bottom: calc(96px + var(--safe-bottom));
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { -webkit-user-drag: none; }
a { color: inherit; }

/* ─── Top Floating Capsule Header ─── */
.top-nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  margin: 10px 12px 16px;
  padding: 10px 14px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  box-shadow: var(--puff);
}
.hamburger {
  background: var(--candy-soft);
  border: 1px solid var(--card-border);
  color: var(--pink);
  width: 40px; height: 40px; border-radius: 14px;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--spring);
  flex-shrink: 0;
}
.hamburger:active { transform: scale(.9); }
.nav-logo {
  font-size: 19px; font-weight: 900; text-decoration: none; letter-spacing: -.4px;
  background: var(--hero);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.nav-search { flex: 1; min-width: 0; }
.nav-search form { display: flex; align-items: center; gap: 4px; }
.nav-search input {
  flex: 1; min-width: 0; padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  color: var(--text); font-family: inherit; font-size: 13px; font-weight: 600;
  outline: none; transition: border .2s, box-shadow .2s;
}
.nav-search input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px var(--primary-glow); }
.nav-search button {
  background: var(--candy); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 14px; cursor: pointer;
  font-size: 14px; box-shadow: var(--glow); flex-shrink: 0;
  transition: transform .2s var(--spring);
}
.nav-search button:active { transform: scale(.9); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.theme-toggle {
  background: var(--candy-soft); border: 1px solid var(--card-border);
  color: var(--pink); width: 40px; height: 40px; border-radius: 14px;
  font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--spring);
}
.theme-toggle:active { transform: scale(.9) rotate(180deg); }
.nav-active-user {
  display: flex; align-items: center; gap: 7px;
  background: var(--candy-soft);
  border: 1px solid var(--card-border);
  border-radius: 999px; padding: 8px 13px;
  font-weight: 800; font-size: 12px; color: var(--pink);
  text-decoration: none; white-space: nowrap;
}
.brand-mark {
  width: 44px; height: 44px; border-radius: 16px;
  background: var(--hero); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px;
  box-shadow: var(--glow);
  transform: rotate(-4deg);
  flex-shrink: 0;
}
.acct-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--candy-soft);
  border: 1px solid rgba(255, 62, 158, 0.28);
  border-radius: 999px; padding: 8px 14px;
  font-weight: 800; font-size: 13px; color: var(--pink);
  text-decoration: none;
}
.offer-pill-badge {
  background: var(--candy); color: #fff;
  padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 800;
}

/* ─── Layout & Cards ─── */
.container { max-width: 900px; margin: 0 auto; padding: 0 16px; }
.card {
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--puff);
  transition: transform .2s var(--spring);
}
.card-title {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
  font-size: 16px; font-weight: 900; margin-bottom: 14px;
}
.grad-text {
  background: var(--candy);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 18px; font-weight: 800; font-size: 14px;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .18s var(--spring), box-shadow .18s, opacity .18s;
  font-family: inherit;
}
.btn:active { transform: scale(.95); }
.btn:disabled { opacity: .55; cursor: default; }
.btn-primary { background: var(--candy); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary {
  background: var(--bg-soft); color: var(--text);
  border: 1px solid var(--card-border);
}
.btn-outline {
  background: transparent; color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-remove { background: var(--red-light); color: var(--red); border: 1px solid var(--red-light); }
.btn-pull { background: linear-gradient(120deg, #00C896, #38BDF8); color: #fff; box-shadow: 0 8px 22px rgba(0, 200, 150, 0.32); }
.btn-sm { padding: 8px 14px; font-size: 12px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ─── Forms ─── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 14px 16px; border-radius: 16px;
  background: var(--bg-soft); border: 1px solid var(--card-border);
  color: var(--text); font-family: inherit; font-size: 15px; font-weight: 600;
  outline: none; transition: border .2s, box-shadow .2s;
}
.form-control:focus { border-color: var(--pink); box-shadow: 0 0 0 3px var(--primary-glow); }
.otp-box-group { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-box {
  width: 48px; height: 56px; border-radius: 16px; text-align: center;
  font-size: 22px; font-weight: 800; background: var(--bg-soft);
  border: 2px solid var(--card-border); color: var(--text); outline: none;
}
.otp-box:focus { border-color: var(--pink); background: var(--primary-glow); }

/* ─── Product Grids ─── */
.product-grid, .products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 13px;
}
.product-card {
  background: var(--card-solid); border: 1px solid var(--card-border);
  border-radius: 22px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s var(--spring), box-shadow .2s;
  box-shadow: 0 3px 12px rgba(255, 62, 158, 0.07);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--puff-lg); }
.product-img-wrap { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--bg-soft); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--spring); }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 8px; left: 8px; background: var(--candy); color: #fff;
  padding: 4px 9px; border-radius: 999px; font-size: 10px; font-weight: 900;
  box-shadow: 0 4px 10px rgba(255, 62, 158, 0.35);
}
.product-rating {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0, 0, 0, 0.55); color: #fff;
  padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 4px;
  backdrop-filter: blur(6px);
}
.product-rating i { color: #FFD54F; }
.product-body { padding: 12px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-info { padding: 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-name, .product-title {
  font-size: 13px; font-weight: 700; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-row { display: flex; align-items: baseline; gap: 6px; }
.price-current { font-size: 16px; font-weight: 900; color: var(--text); }
.price-mrp { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: 11px; font-weight: 800; color: var(--mint); }
.quick-add { padding: 0 12px 12px; }

/* ─── Deal Cards (home) ─── */
.deal-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  padding: 4px 2px 12px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.deal-scroll::-webkit-scrollbar { display: none; }
.deal-product-card {
  scroll-snap-align: start;
  flex: 0 0 128px;
  background: var(--card-solid);
  border: 1px solid var(--card-border);
  border-radius: 20px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .2s var(--spring), box-shadow .2s;
  box-shadow: 0 3px 10px rgba(139, 92, 246, 0.08);
}
.deal-product-card:hover { transform: translateY(-3px); box-shadow: var(--puff); }
.dpc-img-wrap { position: relative; width: 100%; aspect-ratio: 1; background: var(--bg-soft); overflow: hidden; }
.dpc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dpc-body { padding: 9px 10px; }
.dpc-name { font-size: 12px; font-weight: 700; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dpc-price-row { display: flex; align-items: baseline; gap: 5px; margin-top: 3px; }
.dpc-price { font-size: 15px; font-weight: 900; }
.dpc-mrp { font-size: 10px; color: var(--text-muted); text-decoration: line-through; }
.dpc-disc {
  position: absolute; top: 8px; left: 8px;
  background: var(--candy); color: #fff;
  padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 900;
}
.no-img {
  height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 28px;
}

/* ─── Sections (home) ─── */
.section { margin-bottom: 22px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.section-header h3 { font-size: 17px; font-weight: 900; }
.see-all {
  font-size: 12px; font-weight: 800; color: var(--pink);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.sdui-banner { display: block; border-radius: 20px; overflow: hidden; margin-bottom: 12px; }
.sdui-banner img { width: 100%; display: block; }
.top-cats-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 14px;
  -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
}
.top-cats-scroll::-webkit-scrollbar { display: none; }
.top-cat-chip {
  scroll-snap-align: start;
  flex: 0 0 84px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--card-solid); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 10px 6px;
  text-decoration: none; color: inherit;
  font-size: 11px; font-weight: 700; text-align: center;
  transition: transform .2s var(--spring);
}
.top-cat-chip:hover { transform: translateY(-3px); }
.top-cat-chip img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.top-cat-chip i { font-size: 20px; color: var(--pink); }

/* ─── Welcome Bar + Offers (home) ─── */
.welcome-bar {
  background: linear-gradient(135deg, rgba(255, 62, 158, 0.08), rgba(139, 92, 246, 0.10));
  border: 1px solid var(--card-border);
  border-radius: 24px; padding: 18px 20px; margin-bottom: 18px;
}
.wb-top h2 { font-size: 18px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.wb-top p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.new-user-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sunny); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; margin-top: 10px;
  box-shadow: 0 4px 12px rgba(255, 176, 46, 0.35);
}
.welcome-offers-cta {
  background: var(--hero); color: #fff;
  border-radius: 24px; padding: 20px; margin-bottom: 18px;
  position: relative; overflow: hidden;
  box-shadow: var(--puff-lg);
}
.welcome-offers-cta::after {
  content: '🎁'; position: absolute; right: -14px; bottom: -18px;
  font-size: 92px; opacity: 0.28; transform: rotate(-12deg);
}
.welcome-offers-cta h3 { font-size: 18px; font-weight: 900; margin-bottom: 6px; }
.welcome-offers-cta p { font-size: 13px; opacity: .92; margin-bottom: 14px; line-height: 1.5; }
.woc-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.woc-benefits span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800;
  backdrop-filter: blur(4px);
}
.woc-actions { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }
.welcome-offers-cta .btn-primary { background: #fff; color: var(--pink); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); }
.welcome-offers-cta .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.7); }

/* ─── Badges ─── */
.badge { background: var(--candy); color: #fff; border-radius: 999px; padding: 2px 7px; font-size: 10px; font-weight: 900; }
.badge-assured, .badge-mall, .badge-free, .badge-cod {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 800;
  padding: 3px 7px; border-radius: 999px;
}
.badge-assured { background: var(--green-light); color: var(--green); }
.badge-mall { background: var(--primary-glow); color: var(--pink); }
.badge-free { background: rgba(56, 189, 248, 0.15); color: var(--sky); }
.badge-cod { background: rgba(255, 176, 46, 0.18); color: #B45309; }
[data-theme="dark"] .badge-cod { color: var(--amber); }

/* ─── FOD Offer Puller (login) ─── */
.fod-banner-card {
  background: var(--candy-soft);
  border: 2px solid rgba(255, 62, 158, 0.35);
  border-radius: 26px; padding: 20px; margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.fod-banner-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 62, 158, 0.22), transparent 60%);
  pointer-events: none;
}
.fod-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; }
.fod-title { font-size: 17px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.fod-badge-big {
  background: var(--candy); color: #fff;
  padding: 8px 16px; border-radius: 999px;
  font-weight: 900; font-size: 18px; box-shadow: var(--glow);
  display: inline-flex; align-items: center; gap: 6px;
}
.fod-desc { color: var(--text-2); font-size: 13px; line-height: 1.5; margin-bottom: 16px; position: relative; }
.fod-range-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; position: relative; }
.fod-chip {
  background: var(--card-solid); border: 1px solid var(--card-border);
  padding: 4px 11px; border-radius: 12px; font-size: 12px; font-weight: 800;
}
.fod-chip.target { background: var(--green-light); color: var(--green); border-color: rgba(0, 200, 150, 0.35); }

/* ─── Bottom Floating Tab Bar ─── */
.bottom-nav {
  position: fixed; left: 14px; right: 14px; bottom: calc(12px + var(--safe-bottom)); z-index: 40;
  display: flex; align-items: center; justify-content: space-around;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.8);
  -webkit-backdrop-filter: blur(22px) saturate(1.8);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  box-shadow: var(--puff-lg);
  padding: 8px 6px;
}
.bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--text-muted); text-decoration: none; font-size: 10px; font-weight: 800;
  padding: 7px 16px; border-radius: 999px;
  transition: all .22s var(--spring);
  position: relative;
}
.bn-item i { font-size: 18px; }
.bn-item.active { color: #fff; background: var(--candy); box-shadow: var(--glow); transform: translateY(-2px); }
.cart-badge {
  position: absolute; top: 0; right: 8px;
  background: var(--red); color: #fff; border-radius: 999px;
  font-size: 9px; font-weight: 900; padding: 1px 5px; min-width: 16px; text-align: center;
  box-shadow: 0 2px 6px rgba(255, 77, 109, 0.4);
}
.tab-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--text-muted); text-decoration: none; font-size: 10px; font-weight: 800;
  position: relative; padding: 6px 12px; border-radius: 999px; transition: all 0.2s;
}
.tab-item i { font-size: 18px; }
.tab-item.active { color: #fff; background: var(--candy); box-shadow: var(--glow); }
.tab-badge-num {
  position: absolute; top: 2px; right: 8px;
  background: var(--red); color: #fff; border-radius: 999px;
  font-size: 9px; font-weight: 900; padding: 1px 5px; min-width: 16px; text-align: center;
}

/* ─── Sidebar Drawer ─── */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(20, 10, 18, 0.55);
  z-index: 90; opacity: 0; visibility: hidden; transition: opacity .25s;
  backdrop-filter: blur(3px);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 86vw);
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-right: 1px solid var(--card-border);
  z-index: 100;
  transform: translateX(-105%);
  transition: transform .3s var(--spring);
  display: flex; flex-direction: column;
  box-shadow: var(--puff-lg);
}
.sidebar.active { transform: translateX(0); }
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
}
.sidebar-header h2 {
  font-size: 20px; font-weight: 900;
  background: var(--hero);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-close {
  background: var(--bg-soft); border: 1px solid var(--card-border);
  color: var(--text-2); width: 36px; height: 36px; border-radius: 12px;
  cursor: pointer; font-size: 14px;
}
.sidebar-user-info {
  display: flex; align-items: center; gap: 12px;
  background: var(--candy-soft); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 12px 14px; margin: 0 14px 12px;
  text-decoration: none; color: inherit;
}
.sidebar-user-info i { font-size: 22px; color: var(--pink); }
.sidebar-user-info strong { font-size: 14px; font-weight: 800; display: block; }
.sidebar-user-info small { font-size: 11px; color: var(--text-muted); }
.sidebar-nav { flex: 1; overflow-y: auto; padding: 0 14px 14px; }
.sidebar-section-title {
  font-size: 10px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted); padding: 14px 8px 6px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 14px;
  text-decoration: none; color: var(--text-2); font-size: 14px; font-weight: 700;
  transition: background .15s;
}
.sidebar-link i { width: 20px; text-align: center; color: var(--text-muted); font-size: 15px; }
.sidebar-link:hover { background: var(--bg-soft); }
.sidebar-link.active { background: var(--candy-soft); color: var(--pink); }
.sidebar-link.active i { color: var(--pink); }
.saved-count { margin-left: auto; font-size: 11px; color: var(--text-muted); }
.sidebar-users { display: flex; flex-direction: column; gap: 4px; }
.sidebar-users-loading { font-size: 12px; color: var(--text-muted); padding: 8px; }
.sidebar-users-empty { font-size: 12px; color: var(--text-muted); padding: 8px; }
.su-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 12px;
  text-decoration: none; color: var(--text-2); font-size: 13px; font-weight: 600;
}
.su-item:hover { background: var(--bg-soft); }
.su-item.active { background: var(--candy-soft); }
.su-item i { color: var(--pink); }
.su-phone { font-weight: 800; }
.su-id { font-size: 10px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; max-width: 90px; }
.su-active { margin-left: auto; color: var(--green); }
.sidebar-footer {
  padding: 14px; border-top: 1px solid var(--card-border);
  padding-bottom: calc(14px + var(--safe-bottom));
}

/* ─── Flashes & Toasts ─── */
.flash {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 16px; font-size: 13px; font-weight: 700;
  margin-bottom: 12px;
  animation: slideDown .3s var(--spring);
}
.flash-success { background: var(--green-light); color: var(--green); border: 1px solid rgba(0, 200, 150, 0.3); }
.flash-error { background: var(--red-light); color: var(--red); border: 1px solid rgba(255, 77, 109, 0.3); }
.flash-info { background: var(--candy-soft); color: var(--pink); border: 1px solid rgba(255, 62, 158, 0.3); }
.toast-container {
  position: fixed; top: 16px; right: 16px; z-index: 200;
  display: flex; flex-direction: column; gap: 8px;
  max-width: min(340px, calc(100vw - 32px));
}
.toast {
  display: flex; align-items: center; gap: 10px;
  background: var(--card-solid); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 13px 16px;
  font-size: 13px; font-weight: 700;
  box-shadow: var(--puff-lg);
  animation: slideIn .3s var(--spring);
  transition: opacity .3s, transform .3s;
}
.toast-success { color: var(--green); }
.toast-error { color: var(--red); }
.toast-info { color: var(--pink); }

/* ─── Cart ─── */
.cart-discount-banner {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green);
  border-radius: 16px; padding: 10px 14px; font-size: 13px; font-weight: 700;
  margin-bottom: 12px;
}
.cart-fod-banner {
  display: flex; align-items: center; gap: 8px;
  background: var(--hero); color: #fff;
  border-radius: 16px; padding: 10px 14px; font-size: 13px; font-weight: 800;
  margin-bottom: 12px; box-shadow: var(--glow);
}
.cart-delivery-banner {
  display: flex; align-items: center; gap: 8px;
  background: rgba(56, 189, 248, 0.14); color: #0369A1;
  border-radius: 16px; padding: 10px 14px; font-size: 13px; font-weight: 700;
  margin-bottom: 12px;
}
[data-theme="dark"] .cart-delivery-banner { color: var(--sky); }
.cart-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.cart-item {
  display: flex; gap: 12px;
  background: var(--card-solid); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 14px;
  animation: slideUp .3s var(--spring);
}
.ci-body { flex: 1; min-width: 0; }
.ci-name { font-size: 14px; font-weight: 800; margin-bottom: 4px; line-height: 1.35; }
.ci-meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; font-size: 12px; margin-bottom: 3px; }
.ci-price { font-size: 16px; font-weight: 900; }
.ci-mrp { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }
.ci-var, .ci-qty { color: var(--text-muted); }
.ci-disc { color: var(--green); font-weight: 800; }
.ci-supplier { font-size: 11px; color: var(--text-muted); }
.ci-delivery { font-size: 11px; color: #0369A1; margin-top: 3px; }
[data-theme="dark"] .ci-delivery { color: var(--sky); }
.ci-remove { align-self: flex-start; }
.ci-remove .btn { padding: 8px 11px; border-radius: 12px; }
.ci-label { font-size: 11px; font-weight: 700; color: var(--text-muted); display: block; margin: 8px 0 5px; }
.var-options, .return-options { display: flex; flex-wrap: wrap; gap: 6px; }
.var-btn, .ro-btn {
  padding: 6px 11px; border: 1px solid var(--card-border);
  border-radius: 999px; background: var(--bg-soft);
  color: var(--text); font-size: 12px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: all .15s;
}
.var-btn.selected, .ro-btn.selected {
  border-color: var(--pink); background: var(--candy); color: #fff;
  box-shadow: 0 4px 10px rgba(255, 62, 158, 0.3);
}
.var-btn small, .ro-btn small { display: block; font-size: 10px; opacity: .75; }
.var-btn .oos { color: var(--red); }
.ci-price-breakdown {
  margin-top: 8px; padding: 10px 12px;
  background: var(--bg-soft); border-radius: 14px; font-size: 11px;
}
.pbd-row { display: flex; justify-content: space-between; padding: 1.5px 0; color: var(--text-2); }
.pbd-row.pbd-discount { color: var(--green); font-weight: 700; }
.pbd-row.pbd-total { font-weight: 900; color: var(--text); border-top: 1px solid var(--line); margin-top: 4px; padding-top: 5px; }
.ci-user-offers, .ci-offers { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.offer-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sunny); color: #fff;
  border-radius: 999px; padding: 4px 10px;
  font-size: 10px; font-weight: 800;
}
.price-breakup {
  background: var(--bg-soft); border-radius: 20px; padding: 16px 18px;
  margin-bottom: 16px;
}
.price-breakup h4 { font-size: 14px; font-weight: 900; margin-bottom: 10px; }
.pb-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); padding: 3px 0; }
.pb-row.pb-total { font-weight: 900; color: var(--text); border-top: 1px solid var(--line); margin-top: 6px; padding-top: 8px; font-size: 15px; }
.cart-actions { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.empty-state { text-align: center; padding: 48px 20px; }
.empty-state i { font-size: 52px; color: var(--candy); margin-bottom: 14px; background: var(--candy-soft); border-radius: 24px; padding: 16px; }
.empty-state p { font-weight: 800; margin-bottom: 16px; color: var(--text-2); }
.empty-state h3 { font-size: 18px; font-weight: 900; margin-bottom: 6px; }

/* ─── Home hero ─── */
.candy-hero {
  position: relative; border-radius: 26px; padding: 22px 20px; margin-bottom: 18px;
  background: linear-gradient(135deg, #FF5FA2 0%, #A855F7 55%, #38BDF8 100%);
  color: #fff; overflow: hidden; box-shadow: 0 16px 40px rgba(168, 85, 247, 0.28);
}
.hero-grad-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.28) 0, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.18) 0, transparent 45%);
}
.welcome-bar { position: relative; }
.wb-top h2 { font-size: 17px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.wb-top h2 i { font-size: 22px; }
.wb-top p { font-size: 11px; opacity: .85; margin-top: 2px; }
.wb-actions { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; position: relative; }
.candy-hero .btn-remove {
  background: rgba(255, 255, 255, 0.16); color: #fff; border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.rm-label { font-size: 12px; color: #fff; display: block; margin-bottom: 6px; }
.rm-row { display: flex; gap: 8px; }
.rm-row input {
  flex: 1; padding: 9px 12px; border-radius: 12px; border: none; font-size: 13px; font-weight: 700;
}
.rm-row .btn-remove { background: rgba(255, 77, 109, 0.9); border: none; color: #fff; }

.new-user-badge {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.2); color: #fff; padding: 6px 12px;
  border-radius: 999px; font-size: 12px; font-weight: 800;
  backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ─── Search / section headings ─── */
.search-title { align-items: center; gap: 10px; flex-wrap: wrap; }
.result-count {
  font-size: 11px; font-weight: 800; color: var(--pink);
  background: var(--candy-soft); padding: 4px 10px; border-radius: 999px;
}

/* ─── Product detail page ─── */
.pd-card { animation-delay: 0ms; }
.pd-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.pd-main-img-wrap {
  aspect-ratio: 1/1; background: var(--bg-soft); border-radius: 20px; overflow: hidden;
  margin-bottom: 12px; box-shadow: var(--puff);
}
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-img {
  width: 60px; height: 60px; border-radius: 12px; object-fit: cover; cursor: pointer;
  border: 2px solid var(--line); background: var(--bg-soft);
}
.gallery-img.active { border-color: var(--pink); box-shadow: var(--glow); }
.pd-info { display: flex; flex-direction: column; }
.pd-name { font-size: 20px; font-weight: 900; line-height: 1.3; margin-bottom: 10px; }
.pd-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.pd-price { font-size: 26px; font-weight: 900; }
.pd-mrp { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.pd-off-pill {
  font-size: 12px; font-weight: 800; color: var(--green); background: var(--green-light);
  padding: 3px 10px; border-radius: 999px;
}
.pd-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pd-rating {
  background: var(--green); color: #fff; padding: 4px 10px; border-radius: 10px;
  font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; gap: 4px;
}
.pd-rating-count { font-size: 12px; color: var(--text-muted); }
.pd-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.pd-tag {
  font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.pd-tag-blue { color: var(--blue); border-color: rgba(56, 189, 248, 0.3); background: rgba(56, 189, 248, 0.08); }
.pd-tag-green { color: var(--green); border-color: rgba(0, 200, 150, 0.3); background: var(--green-light); }
.pd-tag-yellow { color: #B45309; border-color: rgba(255, 176, 46, 0.3); background: rgba(255, 176, 46, 0.12); }
.pd-seller {
  font-size: 13px; color: var(--text-2); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.pd-seller i { color: var(--pink); }
.pd-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.pd-cta { margin-top: auto; }
.qty-input {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1.5px solid var(--line); border-radius: 14px; padding: 4px;
  background: var(--card-bg); margin-right: 12px;
}
.qty-input button {
  width: 34px; height: 34px; border: none; background: var(--bg-soft); border-radius: 10px;
  font-size: 16px; font-weight: 900; cursor: pointer; color: var(--pink);
}
.qty-input button:active { transform: scale(.9); }
.qty-input input {
  width: 40px; text-align: center; border: none; background: transparent;
  font-size: 15px; font-weight: 800; -moz-appearance: textfield;
}
.qty-input input::-webkit-outer-spin-button, .qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-add-btn { padding: 13px 22px; flex: 1; }

/* ─── Cart banners & checkout ─── */
.cart-banner {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-radius: 16px; font-size: 13px; font-weight: 700; margin-bottom: 12px;
  animation: slideDown .3s var(--spring) both;
}
.cart-discount-banner { background: linear-gradient(120deg, #FFF3E0, #FFE0B2); color: #B45309; }
.cart-fod-banner { background: linear-gradient(120deg, var(--candy-soft), #FFD6EF); color: var(--pink); }
.cart-delivery-banner { background: var(--green-light); color: #0369A1; }
.ci-meta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.ci-disc { font-size: 11px; font-weight: 800; color: var(--green); }
.ci-variants, .ci-return-opts { margin-top: 8px; }
.ci-offers, .ci-user-offers { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.btn-checkout { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; font-weight: 900; }

.wizard-card { background: var(--bg-soft); }
.wizard-steps {
  display: flex; justify-content: space-around; font-size: 12px; font-weight: 800;
  color: var(--text-muted); text-align: center;
}
.wz-step { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.wz-step i { font-size: 16px; }
.wz-step.done { color: var(--green); }
.wz-step.active { color: var(--pink); }

.chk-banner { padding: 12px 16px; margin-bottom: 12px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; border-radius: 16px; }
.chk-banner-welcome { background: var(--primary-glow); border: 1px solid rgba(255, 62, 158, 0.25); }
.chk-banner-inner { display: flex; align-items: center; gap: 10px; }
.chk-banner-welcome i { color: var(--pink); }
.chk-save-txt { color: var(--green); font-weight: 900; }
.chk-banner-green { background: var(--green-light); color: var(--green); }
.chk-banner-info { background: var(--bg-soft); color: var(--text-2); }
.chk-banner-info i { color: var(--pink); }
.chk-banner-delivery { background: var(--green-light); color: #0369A1; }
.chk-card-heading { font-size: 14px; font-weight: 900; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.chk-items { display: flex; flex-direction: column; gap: 12px; }
.chk-item { display: flex; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.chk-item:last-child { border-bottom: none; padding-bottom: 0; }
.chk-item img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--bg-soft); }
.chk-item-noimg {
  width: 64px; height: 64px; border-radius: 12px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.chk-item-info { flex: 1; }
.chk-item-name { font-size: 13px; font-weight: 700; }
.chk-item-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; display: flex; gap: 6px; align-items: baseline; flex-wrap: wrap; }
.chk-item-price { font-weight: 900; color: var(--pink); }
.chk-item-mrp { text-decoration: line-through; }
.chk-item-var { opacity: .85; }
.chk-item-supplier { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.chk-item-delivery { font-size: 11px; color: #0369A1; margin-top: 2px; }
.chk-divider { border: none; border-top: 1px solid var(--line); margin: 10px 0; }
.chk-pb-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); margin-bottom: 6px; }
.chk-pb-neg { color: var(--green); font-weight: 900; }
.chk-pb-save-row { font-size: 14px; font-weight: 900; color: var(--green); }
.chk-save-pill {
  font-size: 10px; background: var(--green-light); color: var(--green);
  padding: 2px 8px; border-radius: 999px; font-weight: 900;
}
.chk-pb-total { font-size: 15px; font-weight: 900; color: var(--text); }
.chk-addr-name { font-size: 14px; font-weight: 900; margin-bottom: 4px; }
.chk-addr-phone { font-size: 12px; color: var(--pink); margin-left: 8px; }
.chk-addr-detail { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.chk-addr-fallback { font-size: 13px; color: var(--text-muted); }

/* ─── Payment options ─── */
.pmt-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pmt-option {
  padding: 14px; cursor: pointer; display: flex; align-items: center; gap: 12px;
  margin: 0; transition: border-color .15s, box-shadow .15s;
}
.pmt-option:has(input:checked) { border-color: var(--pink); box-shadow: var(--glow); }
.pmt-option.disabled { opacity: .5; }
.pmt-option input { position: absolute; opacity: 0; pointer-events: none; }
.pmt-radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.pmt-radio i { font-size: 12px; color: transparent; transition: color .15s; }
.pmt-option input:checked + .pmt-radio { border-color: var(--pink); background: var(--pink); }
.pmt-option input:checked + .pmt-radio i { color: #fff; }
.pmt-info { flex: 1; }
.pmt-name { font-size: 14px; font-weight: 900; }
.pmt-desc { font-size: 12px; color: var(--text-muted); }
.pmt-desc-green { color: var(--green); }
.pmt-discount { font-size: 11px; color: var(--green); font-weight: 900; }
.pmt-disabled-msg { font-size: 11px; color: var(--red); }
.pmt-amount { font-size: 15px; font-weight: 900; }
.pmt-amount-primary { color: var(--pink); }
.vpa-box { margin-bottom: 16px; }
.vpa-row { display: flex; gap: 8px; }
.vpa-box #vpa-status { font-size: 12px; margin-top: 4px; }
.chk-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-soft); padding: 14px 18px; border-radius: 16px; margin-bottom: 20px;
}
.chk-total-bar span:first-child { font-size: 14px; font-weight: 700; color: var(--text-2); }
.chk-total-bar span:last-child { font-size: 20px; font-weight: 900; color: var(--pink); }
.btn-place-order { padding: 16px; font-size: 15px; }

/* ─── Orders page ─── */
.orders-list { display: flex; flex-direction: column; gap: 14px; }
.order-card { padding: 16px; }
.order-main { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.order-img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; background: var(--bg-soft); }
.order-img-noimg {
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.order-info { flex: 1; min-width: 0; }
.order-name { font-size: 14px; font-weight: 900; margin-bottom: 4px; }
.order-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.order-amount { font-size: 14px; font-weight: 900; color: var(--pink); }
.order-sep { opacity: .9; }
.order-status {
  font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 999px;
  background: var(--green-light); color: var(--green); white-space: nowrap;
}
.order-actions {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); padding-top: 12px; margin-top: 8px; flex-wrap: wrap; gap: 8px;
}
.order-actions-right { display: flex; gap: 6px; }
.btn-danger-ghost { color: var(--red); border-color: var(--red-light); background: var(--red-light); }

/* ─── Accounts page ─── */
.accounts-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-btn { border-radius: 999px; font-weight: 800; }
.search-bar-card { padding: 12px; margin-bottom: 16px; }
.accounts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.ac-head { margin-bottom: 4px; }
.ac-user-link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.ac-avatar {
  width: 44px; height: 44px; border-radius: 14px; background: var(--candy-soft);
  color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.ac-active { font-size: 11px; color: var(--green); font-weight: 800; }
.ac-switch-hint { font-size: 11px; color: var(--text-muted); }
.ac-actions {
  display: flex; gap: 8px; border-top: 1px solid var(--line);
  padding-top: 10px; margin-top: 10px;
}
.ac-action-btn { flex: 1; min-width: 0; }
.ac-action-btn-full { width: 100%; }
.ac-remove-form { flex-shrink: 0; }
.ac-remove-btn { color: var(--red); border-color: var(--red-light); }

/* ─── Product detail ─── */
.pd-main-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-img { transition: border .15s, transform .15s; }
.gallery-img:hover { transform: scale(1.05); }

/* ─── Skeleton loaders ─── */
.skeleton {
  position: relative; overflow: hidden;
  background: var(--bg-soft); border-radius: 14px;
}
.skeleton::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 1.4s infinite;
  transform: translateX(-100%);
}
[data-theme="dark"] .skeleton::after { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent); }
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* ─── Animations ─── */
@keyframes slideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
@keyframes popIn { 0% { opacity: 0; transform: scale(.9); } 70% { transform: scale(1.04); } 100% { opacity: 1; transform: scale(1); } }
.card, .product-card, .deal-product-card, .cart-item { animation: slideUp .35s var(--spring) both; }
.welcome-offers-cta { animation: popIn .4s var(--jelly) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}