/* =========================================================
   0) THEME TOKENS (iOS-style Premium Dark)
   ========================================================= */
:root {
  --bg-body: #020617;
  --bg-elevated: rgba(15, 23, 42, 0.96);
  --bg-card: rgba(15, 23, 42, 0.98);
  --bg-soft: #020617;
  --bg-soft-alt: #0b1120;
  --bg-highlight: #111827;

  --accent: #0a84ff;
  --accent-strong: #0a84ff;
  --accent-soft: rgba(10, 132, 255, 0.16);

  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;

  --border-soft: rgba(148, 163, 184, 0.25);
  --border-strong: rgba(148, 163, 184, 0.45);

  --danger: #ff453a;
  --success: #30d158;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.75);

  --container-width: 1180px;
  --nav-height: 64px;
}


/* =========================================================
   1) RESET & BASE
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  background:
    radial-gradient(circle at 15% 20%, #1e293b 0, transparent 55%),
    radial-gradient(circle at 85% 15%, #0b1120 0, transparent 55%),
    radial-gradient(circle at 50% 100%, #020617 0, #000000 70%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -200px;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.26), transparent 60%),
    radial-gradient(2px 2px at 30% 70%, rgba(255,255,255,0.16), transparent 60%),
    radial-gradient(2px 2px at 70% 35%, rgba(255,255,255,0.22), transparent 60%),
    radial-gradient(2px 2px at 90% 60%, rgba(255,255,255,0.20), transparent 60%);
  opacity: 0.7;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.site-body,
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-bottom: 3rem;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.1rem;
}
@media (min-width: 1200px) {
  .container { padding: 0 1.5rem; }
}

/* Icon helpers (FontAwesome) */
i.fa-solid, i.fa-regular, i.fa-brands {
  display: inline-block;
  line-height: 1;
}
.icon-muted { color: rgba(148,163,184,0.95); }
.icon-accent { color: var(--accent); }
.icon-danger { color: var(--danger); }
.icon-success { color: var(--success); }

/* =========================================================
   2) BUTTONS (iOS vibe)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.6rem;
  font-size: 0.98rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
              background 0.16s ease-out, border-color 0.16s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0a84ff, #64d2ff);
  color: #020617;
  box-shadow: 0 14px 30px rgba(10, 132, 255, 0.55);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(10, 132, 255, 0.75);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
}

.btn-secondary {
  background: rgba(31, 41, 55, 0.95);
  color: var(--text-main);
  border-color: rgba(75, 85, 99, 0.8);
}
.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
  border-color: var(--accent);
}

.btn-danger {
  background: rgba(255, 69, 58, 0.14);
  border-color: rgba(255, 69, 58, 0.70);
  color: #ffe4e6;
}
.btn-danger:hover {
  background: rgba(255, 69, 58, 0.22);
  border-color: rgba(255, 69, 58, 0.90);
}

.btn-sm { padding: 0.4rem 1rem; font-size: 0.88rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.02rem; }


/* =========================================================
   3) SECTIONS & TYPO
   ========================================================= */
.section { padding: 3rem 0; }

.section-header { margin-bottom: 2rem; }
.section-header-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
}
.section-header-center { text-align: center; }

.section-header h1,
.section-header h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.section-header h1 { font-size: 2.1rem; }
.section-header h2 { font-size: 1.7rem; }

.section-sub {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}


/* =========================================================
   4) NAVBAR (iOS-style, responsive)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: radial-gradient(circle at 0% 0%, #111827 0, #020617 55%, #000 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.7rem;
  position: relative;
}

/* BRAND */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #e5e7eb;
  min-width: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 30% 20%, #ffffff, #c7d2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.35),
    0 20px 40px rgba(15, 23, 42, 0.8);
  overflow: hidden;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }

.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em; }
.brand-tagline { font-size: 0.8rem; color: rgba(148, 163, 184, 0.9); }

/* NAV PANEL */
.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.nav-links-wrap { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.9);
  padding-block: 0.25rem;
  transition: color 160ms ease, transform 160ms ease;
}
.nav-link i { font-size: 0.9rem; }

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #38bdf8, #6366f1, #a855f7);
  transform: translateX(-50%);
  transition: width 180ms ease;
}
.nav-link:hover { color: #e5edff; transform: translateY(-1px); }
.nav-link.is-active { color: #f9fafb; }
.nav-link.is-active::after { width: 18px; }

/* ACTIONS: cart + auth */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Cart bubble */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 30% 0%, rgba(56, 189, 248, 0.15), transparent 55%);
  color: #e5edff;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.85),
    0 18px 40px rgba(15, 23, 42, 0.9);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.nav-cart:hover {
  transform: translateY(-1px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.9),
    0 22px 50px rgba(15, 23, 42, 1);
}
.nav-cart i { font-size: 0.95rem; }

.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f97316, #fb7185);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

/* Auth pills */
.nav-auth { display: flex; align-items: center; gap: 0.45rem; }
.nav-auth-logout-form { margin: 0; }

.nav-auth-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 14px 32px rgba(15, 23, 42, 0.9);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease,
              transform 150ms ease, box-shadow 150ms ease;
}
.nav-auth-link i { font-size: 0.85rem; }
.nav-auth-link:hover {
  transform: translateY(-1px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.9),
    0 18px 40px rgba(15, 23, 42, 1);
}

.nav-auth-login,
.nav-auth-register {
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.27), transparent 60%);
}
.nav-auth-admin {
  background: radial-gradient(circle at 0% 0%, rgba(129, 140, 248, 0.35), transparent 60%);
}
.nav-auth-logout {
  background: radial-gradient(circle at 0% 0%, rgba(248, 113, 113, 0.35), transparent 60%);
  border-color: rgba(248, 113, 113, 0.9);
}

/* BURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  padding: 0;
  margin-left: 0.5rem;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  margin-inline: auto;
  background: #e5e7eb;
  transition: transform 150ms ease, opacity 150ms ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* MOBILE / TABLET */
@media (max-width: 1023.98px) {
  .nav-container { gap: 0.75rem; }
  .nav-toggle { display: inline-flex; }

  .nav-panel {
    position: absolute;
    inset-inline: 1rem;
    top: 100%;
    margin-top: 0.4rem;
    padding: 0.8rem 1rem 1rem;
    background: rgba(15, 23, 42, 0.97);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);

    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;

    opacity: 0;
    transform: translateY(-4px) scale(0.98);
    pointer-events: none;
    transform-origin: top;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links-wrap { width: 100%; }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    width: 100%;
  }
  .nav-link { width: 100%; }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.6rem;
    margin-top: 0.3rem;
  }
  .nav-auth {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}


/* =========================================================
   5) HERO – FULLSCREEN HOME
   ========================================================= */
.hero { padding: 3rem 0 3rem; }

.hero-full {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-sub {
  margin: 0 0 1.7rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.hero-meta-label {
  display: block;
  font-weight: 600;
  color: var(--text-main);
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.liquid-orb {
  position: absolute;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 20% 0,
    rgba(99, 179, 237, 0.85),
    rgba(129, 140, 248, 0.4),
    transparent 70%);
  filter: blur(2px);
  opacity: 0.9;
  animation: floatOrb 18s infinite ease-in-out;
}

.orb-1 { width: 260px; height: 260px; top: -10px; left: -20px; }
.orb-2 { width: 210px; height: 210px; bottom: 0; right: -10px; animation-delay: -3s; }
.orb-3 { width: 140px; height: 140px; bottom: -20px; left: 40%; animation-delay: -6s; }

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-14px,0) scale(1.05); }
}

.hero-bottle-card {
  position: relative;
  z-index: 1;
  width: 270px;
  padding: 1.4rem;
  border-radius: 28px;
  background: radial-gradient(circle at 0 -30%,
    rgba(248, 250, 252, 0.18),
    rgba(15, 23, 42, 0.98) 55%);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 250, 250, 0.35);
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.16), rgba(59, 130, 246, 0.18));
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.9rem;
}

.hero-badge-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.hero-badge {
  padding: 0.18rem 0.7rem;
  font-size: 0.78rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
}


/* =========================================================
   6) FEATURED SECTION – Premium
   ========================================================= */
.section-featured {
  padding: 4rem 0 3.8rem;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

/* Main premium card */
.featured-main-card {
  position: relative;
  border-radius: 32px;
  padding: 1.8rem 2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.26), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.20), #020617 70%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 32px 70px rgba(15, 23, 42, 0.95);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  overflow: hidden;
}

.featured-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% -10%, rgba(248, 250, 252, 0.15), transparent 60%),
    radial-gradient(circle at 90% 110%, rgba(96, 165, 250, 0.25), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
}

/* Image side */
.featured-main-image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-main-border {
  position: relative;
  padding: 2px;
  border-radius: 26px;
  background: linear-gradient(135deg, #38bdf8, #6366f1, #a855f7);
}

.featured-main-image {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

.featured-main-pill {
  position: absolute;
  top: 16px;
  left: 22px;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(248, 250, 252, 0.65);
  background: rgba(15, 23, 42, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.featured-main-pill i { color: #facc15; }

/* Text side */
.featured-main-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.featured-main-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.featured-main-note {
  margin: 0.2rem 0 0.4rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 480px;
}

.featured-main-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.4rem;
}

.featured-main-price {
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #e0f2fe;
}

.featured-main-tags {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.86rem;
}
.featured-main-tags li {
  padding: 0.22rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.96);
  color: rgba(226, 232, 240, 0.95);
}

/* Right column mini cards */
.featured-thumb-column { display: flex; flex-direction: column; gap: 0.85rem; }
.featured-thumb-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 420px;
  padding-right: 0.35rem;
  overflow-y: auto;
}
.featured-thumb-track::-webkit-scrollbar { width: 4px; }
.featured-thumb-track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.55);
  border-radius: var(--radius-pill);
}

.featured-thumb-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(51, 65, 85, 0.85);
  background:
    radial-gradient(circle at 0% 0%, rgba(30, 64, 175, 0.4), transparent 55%),
    rgba(15, 23, 42, 0.98);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.9);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.featured-thumb-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.9);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 1);
}

.featured-thumb-image-wrap { border-radius: 16px; overflow: hidden; }
.featured-thumb-image { width: 100%; height: 88px; object-fit: cover; }

.featured-thumb-body { display: flex; flex-direction: column; gap: 0.25rem; }
.featured-thumb-title { margin: 0; font-size: 0.98rem; font-weight: 500; }
.featured-thumb-price { margin: 0; font-size: 0.9rem; font-weight: 600; color: #bfdbfe; }
.featured-thumb-note { margin: 0; font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 1024px) {
  .featured-layout { grid-template-columns: minmax(0, 1fr); }
  .featured-main-card { grid-template-columns: minmax(0, 1fr); padding-inline: 1.4rem; }
  .featured-main-image { height: 260px; }
}
@media (max-width: 640px) {
  .featured-thumb-card { grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr); }
}


/* =========================================================
   7) CATEGORY GRID
   ========================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.category-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), #020617 60%);
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.category-card h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.category-card p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }
.category-card:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.85);
}


/* =========================================================
   8) PRODUCT CARDS
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.product-image-wrap {
  position: relative;
  padding: 0.85rem 0.85rem 0;
}
.product-image {
  border-radius: 18px;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 18px;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-body {
  padding: 0.85rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-title { margin: 0; font-size: 1.02rem; font-weight: 500; }
.product-price { margin: 0; font-size: 0.96rem; color: var(--accent-strong); }

.product-form {
  margin-top: auto;
  padding-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* Qty control */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  padding: 0.05rem 0.45rem;
  background: #020617;
  min-height: 32px;
}
.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.qty-btn:hover { color: var(--accent); }

.qty-control input[type="number"] {
  width: 44px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 0.9rem;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* =========================================================
   9) PRODUCT DETAIL
   ========================================================= */
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.product-detail-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}

.product-detail-info h1 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.9rem;
}

.product-detail-price {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  color: var(--accent-strong);
}

.product-detail-description {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.product-detail-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.7rem;
  font-size: 0.82rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15,23,42,0.88);
}

.badge-success {
  background: rgba(48, 209, 88, 0.18);
  color: var(--success);
  border: 1px solid rgba(48, 209, 88, 0.7);
}
.badge-danger {
  background: rgba(255, 69, 58, 0.18);
  color: var(--danger);
  border: 1px solid rgba(255, 69, 58, 0.75);
}


/* =========================================================
   10) CART
   ========================================================= */
.cart-table {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
}

.row {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1.1fr 0.9fr;
  gap: 0.4rem;
}

.cart-head {
  padding: 0.8rem 1rem;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.98);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.86rem;
}

.cart-row {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.col { display: flex; align-items: center; }
.col-qty { align-items: flex-start; }

.cart-summary {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.97);
  padding: 0.9rem 1.05rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.cart-note { font-size: 0.9rem; color: var(--text-muted); }


/* =========================================================
   11) CHECKOUT
   ========================================================= */
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.checkout-form-card,
.checkout-summary-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.98);
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.96rem;
}

.form-group { margin-bottom: 0.9rem; }
.form-group label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.65);
  border-radius: 12px;
  padding: 0.45rem 0.85rem;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(10,132,255,0.9);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.18);
}

.form-group textarea { min-height: 90px; resize: vertical; }

.field-help { display: block; margin-top: 0.25rem; font-size: 0.82rem; color: var(--text-muted); }
.field-error { margin-top: 0.25rem; font-size: 0.82rem; color: var(--danger); }

/* Phone input (prefix +998) */
.phone-input-wrapper,
.phone-input-row {
  display: inline-flex;
  align-items: center;
  background: #020617;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  overflow: hidden;
}
.phone-prefix {
  padding: 0.45rem 0.75rem;
  font-size: 0.92rem;
  color: #9ca3af;
  border-right: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.95);
  white-space: nowrap;
}
.phone-input-wrapper input[type="tel"],
.phone-input-row input[type="tel"] {
  border: none;
  outline: none;
  background: transparent;
  padding: 0.45rem 0.75rem;
  color: #e5e7eb;
  font-size: 0.95rem;
  width: 140px;
}
.phone-input-wrapper input[type="tel"]::placeholder,
.phone-input-row input[type="tel"]::placeholder {
  color: #6b7280;
}

.checkout-summary-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
}

.checkout-items { list-style: none; padding: 0; margin: 0 0 0.8rem; }
.checkout-items li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.checkout-total-row { display: flex; justify-content: space-between; font-size: 1.02rem; }


/* =========================================================
   12) FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  padding: 2.4rem 0 1.3rem;
  background: radial-gradient(circle at bottom, #020617 0, #000 80%);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.9fr));
  gap: 1.7rem;
  align-items: flex-start;
}

.footer-col h4 { margin: 0 0 0.45rem; }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.3rem; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
}

.brand-inline { display: flex; gap: 0.7rem; align-items: center; }
.brand-text-block .brand-name { font-weight: 600; font-size: 1.02rem; }
.brand-text-block .brand-tagline { font-size: 0.86rem; color: var(--text-muted); }

.footer-bottom {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}


/* =========================================================
   13) ABOUT PAGE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-main { display: flex; flex-direction: column; gap: 1.2rem; }

.about-title {
  margin: 0;
  font-size: 2.05rem;
  font-weight: 600;
}

.about-lead {
  margin: 0.4rem 0 0.8rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
}

.about-cards { display: flex; flex-direction: column; gap: 0.9rem; }

.about-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(15,23,42,0.96);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.2rem;
}

.about-card h2 { margin: 0 0 0.35rem; font-size: 1.12rem; }
.about-card p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

/* side */
.about-side { display: flex; flex-direction: column; gap: 0.9rem; }

.about-side-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(248,250,252,0.06), #020617 60%);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.15rem;
  font-size: 0.96rem;
}

.about-side-card h3 { margin: 0 0 0.35rem; font-size: 1.02rem; }
.about-side-card p { margin: 0; color: var(--text-muted); }

.about-side-meta {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  font-size: 0.9rem;
}


/* =========================================================
   14) PRODUCT FILTER BAR (iOS style)
   ========================================================= */
.ios-filter-bar {
  margin-bottom: 1.6rem;
  border-radius: 18px;
  padding: 0.8rem 1rem;
  background: radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.18), transparent 60%);
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 18px 40px rgba(15, 23, 42, 0.85);
}

.ios-filter-row { display: flex; flex-direction: column; gap: 0.9rem; }
.ios-filter-main { display: flex; flex-direction: column; gap: 0.8rem; }

.filter-group { display: flex; flex-direction: column; gap: 0.25rem; }

.filter-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(148, 163, 184, 0.9);
}

.filter-control select,
.filter-control input[type="text"] {
  width: 100%;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
}
.filter-control select:focus,
.filter-control input[type="text"]:focus {
  border-color: rgba(10,132,255,0.95);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.16);
}

.ios-filter-actions { display: flex; }

@media (min-width: 768px) {
  .ios-filter-row { flex-direction: row; align-items: flex-end; gap: 1rem; }
  .ios-filter-main { flex-direction: row; flex: 1; gap: 1rem; }
  .filter-group { flex: 1; }
  .ios-filter-actions { width: auto; min-width: 180px; }
}


/* =========================================================
   15) PRODUCT GRID – compact iOS cards (optional layout)
   ========================================================= */
.product-grid-ios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.ios-card {
  position: relative;
  border-radius: 18px;
  padding: 0.7rem 0.75rem 0.8rem;
  background: radial-gradient(circle at 0% 0%, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(30, 64, 175, 0.6);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 20px 40px rgba(15, 23, 42, 0.95);
  display: flex;
  flex-direction: column;
}

.ios-card-media { display: block; margin-bottom: 0.55rem; }
.ios-card-media-inner {
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.1), transparent 60%);
  border: 1px solid rgba(51, 65, 85, 0.9);
}
.ios-card-media img.product-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .ios-card-media img.product-image { height: 190px; }
}

.ios-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-body-header { min-height: 40px; }

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.12rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  background: rgba(15, 23, 42, 0.85);
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
}
.badge-soft-success { border-color: rgba(34, 197, 94, 0.8); color: #bbf7d0; }
.badge-soft-danger  { border-color: rgba(248, 113, 113, 0.9); color: #fecaca; }


/* =========================================================
   16) TOAST NOTIFICATIONS
   ========================================================= */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: min(360px, 92vw);
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.7);
  color: #f9fafb;
  font-size: 0.9rem;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 23, 42, 0.7);
  transform: translateY(-6px);
  opacity: 0;
  animation: toast-enter 220ms ease-out forwards;
}

.toast-success { background: linear-gradient(135deg, #22c55e, #16a34a); }
.toast-error   { background: linear-gradient(135deg, #ef4444, #f97316); }
.toast-info    { background: linear-gradient(135deg, #3b82f6, #6366f1); }

.toast-icon { margin-top: 2px; font-size: 1.1rem; }
.toast-body { flex: 1; }
.toast-title { font-weight: 600; margin-bottom: 2px; }
.toast-text { font-size: 0.9rem; }

.toast-close {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  padding-left: 0.4rem;
}

.toast-hide { animation: toast-leave 220ms ease-in forwards; }

@keyframes toast-enter {
  from { opacity: 0; transform: translateY(-8px) translateX(10px); }
  to   { opacity: 1; transform: translateY(0) translateX(0); }
}
@keyframes toast-leave {
  from { opacity: 1; transform: translateY(0) translateX(0); }
  to   { opacity: 0; transform: translateY(-8px) translateX(10px); }
}


/* =========================================================
   17) AUTH PAGES (login / register)
   ========================================================= */
.auth-section { padding: 3.2rem 0 4rem; }
.auth-container { max-width: 760px; margin: 0 auto; }

.auth-step-pill {
  margin-bottom: 1.6rem;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: radial-gradient(circle at 0% 0%, rgba(59,130,246,0.35), rgba(15,23,42,0.96));
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 22px 45px rgba(15,23,42,0.8);
}

.auth-step-index {
  width: 28px; height: 28px;
  border-radius: var(--radius-pill);
  background: rgba(15,23,42,0.9);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem;
  color: #e5f9ff;
}
.auth-step-label { display: block; font-size: 0.92rem; font-weight: 600; color: #e5e7eb; }
.auth-step-sub   { display: block; font-size: 0.8rem; color: rgba(148,163,184,0.9); }

.auth-card {
  border-radius: 1.4rem;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, #0f172a, #020617);
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 30px 70px rgba(15,23,42,0.9);
}

.auth-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #4f46e5);
  border-bottom: 1px solid rgba(15,23,42,0.8);
}

.auth-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,23,42,0.65);
  color: #e5f2ff;
  font-size: 1.1rem;
}

.auth-title { margin: 0; font-size: 1.28rem; font-weight: 600; color: #f9fafb; }
.auth-sub { margin: 2px 0 0; font-size: 0.88rem; color: rgba(226,232,240,0.9); }

.auth-form {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-label { display: inline-flex; gap: 0.2rem; font-size: 0.9rem; color: #e5e7eb; margin-bottom: 0.35rem; }
.req { color: #fb7185; }

/* Password toggle row */
.password-input-row {
  display: flex;
  align-items: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.8);
  overflow: hidden;
}
.password-icon {
  padding: 0.6rem 0.8rem;
  border-right: 1px solid rgba(55,65,81,0.9);
  color: rgba(226,232,240,0.9);
}
.password-input-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0.6rem 0.9rem;
  color: #f9fafb;
  font-size: 0.96rem;
}
.password-toggle {
  border: none;
  background: transparent;
  padding: 0 0.8rem;
  cursor: pointer;
  color: rgba(148,163,184,0.9);
}

.auth-submit { width: 100%; margin-top: 0.4rem; }

.auth-alt {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: rgba(148,163,184,0.9);
}
.auth-alt a { color: #60a5fa; font-weight: 500; }
.auth-alt a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .auth-container { max-width: 100%; }
  .auth-card-header, .auth-form { padding-inline: 1rem; }
}


/* =========================================================
   18) ACCOUNT / PROFILE PAGES (separate cards, premium)
   ========================================================= */
.account-page { padding: 28px 0 52px; }
.account-shell { max-width: 980px; margin: 0 auto; }

.account-hero {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148,163,184,0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(10,132,255,0.20), transparent 55%),
    radial-gradient(circle at 95% 15%, rgba(99,102,241,0.16), transparent 60%),
    rgba(15,23,42,0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.account-hero-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 16px;
  flex-wrap: wrap;
}

.account-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  border: 1px solid rgba(148,163,184,0.35);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(135deg, rgba(10,132,255,0.40), rgba(100,210,255,0.22));
  font-weight: 700;
}

.account-hero-title { margin: 0; font-size: 22px; }
.account-hero-subtitle { margin: 4px 0 0; color: var(--text-muted); font-size: 13.5px; }

.account-chips {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.account-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148,163,184,0.30);
  background: rgba(2,6,23,0.55);
  color: rgba(226,232,240,0.90);
  font-size: 12.5px;
}

/* Grid (account info chapda, o'ngda 2 ta card) */
.account-grid-3 {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.account-grid-3 > .account-card:nth-child(1){ grid-row: 1 / span 2; }
.account-grid-3 > .account-card:nth-child(2){ grid-column: 2; }
.account-grid-3 > .account-card:nth-child(3){ grid-column: 2; }

@media (max-width: 980px) {
  .account-grid-3 { grid-template-columns: 1fr; }
  .account-grid-3 > .account-card:nth-child(1){ grid-row: auto; }
  .account-grid-3 > .account-card:nth-child(2),
  .account-grid-3 > .account-card:nth-child(3){ grid-column: auto; }
  .account-chips { margin-left: 0; justify-content: flex-start; }
}

.account-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(15,23,42,0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.account-card-head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148,163,184,0.18);
  background: rgba(2,6,23,0.35);
}

.account-card-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--text-main);
}

.account-card-body { padding: 16px; }

.account-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(148,163,184,0.18);
}
.account-row:last-child { border-bottom: 0; }

.account-label { color: rgba(148,163,184,0.95); font-size: 12.5px; }
.account-value { color: var(--text-main); font-weight: 700; font-size: 13.5px; text-align: right; word-break: break-word; }

/* Tip box */
.account-callout {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10,132,255,0.35);
  background: rgba(10,132,255,0.12);
}
.account-callout i { margin-top: 2px; }
.account-callout p { margin: 0; color: rgba(226,232,240,0.92); font-size: 12.5px; line-height: 1.45; }

/* Language select (premium pill) */
.account-form { display: grid; gap: 12px; }

.account-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148,163,184,0.35);
  background: radial-gradient(circle at 0% 0%, rgba(10,132,255,0.28), rgba(15,23,42,0.96));
  box-shadow:
    0 0 0 1px rgba(2,6,23,0.70),
    0 18px 40px rgba(2,6,23,0.75);
  padding: 10px 44px 10px 12px;
}
.account-select i { color: rgba(226,232,240,0.9); }

.account-select select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}
.account-select:focus-within {
  border-color: rgba(10,132,255,0.85);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.22);
}
.account-select-caret {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: rgba(148,163,184,0.9);
}

.account-hint { margin: 6px 0 0; color: rgba(148,163,184,0.9); font-size: 12px; }

/* Buttons in profile */
.account-actions { display: grid; gap: 10px; }
.account-logout-form { margin: 0; }

.account-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148,163,184,0.30);
  background: rgba(2,6,23,0.45);
  color: #e5e7eb;
  font-weight: 650;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  box-shadow: 0 16px 34px rgba(2,6,23,0.55);
}
.account-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(10,132,255,0.75);
  background: rgba(10,132,255,0.10);
}
.account-btn-danger {
  border-color: rgba(255,69,58,0.55);
}
.account-btn-danger:hover {
  border-color: rgba(255,69,58,0.85);
  background: rgba(255,69,58,0.10);
}

/* Django errors for forms */
.errorlist {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.errorlist li {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,69,58,0.55);
  background: rgba(255,69,58,0.12);
  color: #ffd6de;
  font-size: 12.5px;
}


/* =========================================================
   19) UTILITIES & RESPONSIVE
   ========================================================= */
.link-muted { font-size: 0.9rem; color: var(--text-muted); }
.link-muted:hover { color: var(--accent); }

.empty-text { font-size: 0.95rem; color: var(--text-muted); }

.mt-8 { margin-top: 0.5rem; }
.w-100 { width: 100%; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .hero-visual { order: -1; }

  .product-detail-grid,
  .checkout-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .row {
    grid-template-columns: 1.6fr 0.9fr;
    grid-template-rows: auto auto;
  }
  .col-qty { grid-column: 1 / -1; margin-top: 0.4rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .hero { padding-top: 2.5rem; }
  .hero-title { font-size: 2.3rem; }
  .hero-sub { max-width: none; }
  .section { padding: 2.6rem 0; }

  .footer-grid { grid-template-columns: minmax(0, 1fr); }

  .cart-head { display: none; }
  .row { display: block; }
  .cart-row { display: flex; flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-meta { gap: 1rem; }
  .product-image { height: 190px; }
  .product-card { min-height: 340px; }
}


/* =========================================================
   ACCOUNT (Profile / Password Change) – FINAL OVERRIDES
   ========================================================= */

/* --- Select: browser default arrow'ni o‘chirib, custom pill --- */
.account-select {
  position: relative;
  overflow: hidden;
}

.account-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  color: #e5e7eb;
  font-weight: 650;
  width: 100%;
  padding-right: 44px; /* caret uchun joy */
}

/* eski Edge/IE uchun */
.account-select select::-ms-expand {
  display: none;
}

/* dropdown optionlar (hamma brauzer 100% qabul qilmaydi, lekin ko‘pchiligida ishlaydi) */
.account-select select option,
.account-select select optgroup {
  background-color: #020617;
  color: #e5e7eb;
}

/* caret ikonkani har doim ko‘rsatish (span bo‘lmasa ham ishlaydi) */
.account-select::after {
  content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.75rem;
}

/* --- Password form: input row, icon, toggle --- */
.account-field { display: grid; gap: 6px; }

.account-label-strong {
  color: rgba(226,232,240,0.92);
  font-size: 12.5px;
  font-weight: 650;
}

.account-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(2,6,23,0.45);
  box-shadow: 0 16px 34px rgba(2,6,23,0.35);
  overflow: hidden;
}

.account-input:focus-within {
  border-color: rgba(10,132,255,0.85);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.22);
}

.account-input-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: rgba(226,232,240,0.9);
  background: rgba(15,23,42,0.45);
  border-right: 1px solid rgba(148,163,184,0.18);
}

.account-input-control {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  color: #e5e7eb !important;
  padding: 12px 10px;
  font-size: 0.95rem;
}

.account-input-control::placeholder {
  color: rgba(148,163,184,0.75);
}

.account-input-toggle {
  width: 46px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(148,163,184,0.92);
  cursor: pointer;
}
.account-input-toggle:hover { color: #e5e7eb; }

/* help + errors */
.account-help {
  font-size: 12px;
  color: rgba(148,163,184,0.88);
  line-height: 1.35;
}

.errorlist {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.errorlist li {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,69,58,0.55);
  background: rgba(255,69,58,0.12);
  color: #ffd6de;
  font-size: 12.5px;
}


/* Account password page – fallback (input class bo‘lmasa ham) */
.account-input input[type="password"],
.account-input input[type="text"]{
  flex: 1;
  min-width: 0;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  color: #e5e7eb !important;
  padding: 12px 10px;
  font-size: 0.95rem;
}

/* Chrome autofill oq/yashil fonini ham yo‘qotadi */
.account-input input:-webkit-autofill{
  -webkit-text-fill-color: #e5e7eb !important;
  -webkit-box-shadow: 0 0 0 30px rgba(2,6,23,0.45) inset !important;
  box-shadow: 0 0 0 30px rgba(2,6,23,0.45) inset !important;
}



/* =========================================================
   HOME – Premium upgrades (Hero / Benefits / Steps / CTA)
   ========================================================= */

.home-hero { position: relative; }
.home-hero-copy { position: relative; }

.home-hero-pill{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.75);
  box-shadow: 0 18px 40px rgba(15,23,42,0.65);
  margin-bottom: .9rem;
  color: rgba(226,232,240,0.95);
  font-size: .86rem;
}
.home-hero-pill i{ color: rgba(96,165,250,0.95); }
.home-hero-pill-dot{
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(99,102,241,0.95);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
}

.home-hero-title{ letter-spacing: .01em; }
.home-hero-sub{ max-width: 520px; }

.home-hero-bullets{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .8rem 0 1.2rem;
}
.home-bullet{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(2,6,23,0.35);
  color: rgba(226,232,240,0.92);
  font-size: .86rem;
}
.home-bullet i{ color: rgba(56,189,248,0.95); }

.home-hero-actions .btn i{ font-size: .95rem; }

.home-hero-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1.2rem;
  max-width: 560px;
}
.home-metric{
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(15,23,42,0.55);
  box-shadow: 0 18px 40px rgba(15,23,42,0.55);
  padding: .75rem .85rem;
}
.home-metric-num{
  display:block;
  font-weight: 700;
  font-size: 1.05rem;
  color: #e5e7eb;
}
.home-metric-txt{
  display:block;
  margin-top: 2px;
  font-size: .82rem;
  color: rgba(148,163,184,0.9);
}

.home-hero-scroll{
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(148,163,184,0.9);
  font-size: .85rem;
  opacity: .9;
}
.home-hero-scroll i{
  animation: homeScroll 1.4s ease-in-out infinite;
}
@keyframes homeScroll{
  0%,100%{ transform: translateY(0); opacity: .85; }
  50%{ transform: translateY(4px); opacity: 1; }
}

/* HERO CARD */
.home-hero-card{
  width: min(360px, 92vw);
}
.home-hero-card-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .9rem;
}
.home-hero-mini-badges{
  display:flex;
  gap: .45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.home-mini-badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.22rem .65rem;
  border-radius: 999px;
  border:1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.75);
  font-size: .78rem;
  color: rgba(226,232,240,0.92);
}

.home-hero-card-main{
  display:flex;
  gap: .9rem;
  align-items: center;
}
.home-hero-thumb{
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow: 0 18px 40px rgba(15,23,42,0.65);
  flex: 0 0 auto;
}
.home-hero-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-card-title{
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 650;
}
.home-hero-card-note{
  margin: 0;
  font-size: .9rem;
  color: rgba(148,163,184,0.9);
  line-height: 1.45;
}
.home-hero-card-link{
  margin-top: .9rem;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color: rgba(226,232,240,0.92);
  font-weight: 600;
}
.home-hero-card-link:hover{ color: var(--accent); }

.home-float-card{
  position:absolute;
  display:flex;
  align-items:center;
  gap:.65rem;
  padding:.65rem .8rem;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.25);
  background: rgba(15,23,42,0.72);
  box-shadow: 0 22px 50px rgba(15,23,42,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(226,232,240,0.95);
  font-size: .86rem;
}
.home-float-card i{ color: rgba(34,197,94,0.95); }
.home-float-title{ font-weight: 700; }
.home-float-sub{ color: rgba(148,163,184,0.9); font-size: .8rem; margin-top: 1px; }

.home-float-1{ left: -10px; bottom: 26px; }
.home-float-2{ right: -10px; top: 24px; }
@media (max-width: 1024px){
  .home-float-card{ display:none; }
}

/* BENEFITS */
.home-benefits-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.home-benefit-card{
  border-radius: 22px;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(148,163,184,0.24);
  background: radial-gradient(circle at 0% 0%, rgba(56,189,248,0.14), rgba(15,23,42,0.72));
  box-shadow: 0 20px 44px rgba(15,23,42,0.65);
  transition: transform .14s ease, border-color .14s ease;
}
.home-benefit-card:hover{
  transform: translateY(-2px);
  border-color: rgba(129,140,248,0.75);
}
.home-benefit-icon{
  width: 46px; height: 46px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(2,6,23,0.35);
  margin-bottom: .8rem;
}
.home-benefit-icon i{ color: rgba(96,165,250,0.95); font-size: 1.05rem; }
.home-benefit-title{ margin:0 0 .35rem; font-size: 1.02rem; font-weight: 650; }
.home-benefit-text{ margin:0; color: rgba(148,163,184,0.92); font-size: .92rem; line-height: 1.5; }

@media (max-width: 1024px){
  .home-benefits-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .home-benefits-grid{ grid-template-columns: 1fr; }
}

/* STEPS */
.home-steps-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.home-step-card{
  border-radius: 22px;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(148,163,184,0.22);
  background: radial-gradient(circle at 0% 0%, rgba(99,102,241,0.16), rgba(15,23,42,0.70));
  box-shadow: 0 20px 44px rgba(15,23,42,0.65);
}
.home-step-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .8rem;
}
.home-step-index{
  width: 34px; height: 34px;
  border-radius: 999px;
  display:grid; place-items:center;
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(2,6,23,0.35);
  font-weight: 700;
}
.home-step-top i{ color: rgba(56,189,248,0.95); font-size: 1.05rem; }
.home-step-title{ margin:0 0 .35rem; font-size: 1.02rem; font-weight: 650; }
.home-step-text{ margin:0; color: rgba(148,163,184,0.92); font-size: .92rem; line-height: 1.5; }

@media (max-width: 1024px){
  .home-steps-grid{ grid-template-columns: 1fr; }
}

/* CATEGORIES – premium */
.home-category-card{
  position: relative;
  overflow: hidden;
}
.home-category-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(168,85,247,0.12), transparent 55%);
  opacity: .85;
  pointer-events:none;
}
.home-category-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.home-category-ico{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(2,6,23,0.35);
}
.home-category-ico i{ color: rgba(96,165,250,0.95); }
.home-category-cta{
  font-size: .85rem;
  color: rgba(148,163,184,0.95);
}
.home-category-title{ margin:0 0 .35rem; font-size: 1.05rem; }
.home-category-sub{ margin:0; color: rgba(148,163,184,0.9); font-size: .92rem; line-height: 1.45; }

/* CTA band */
.home-cta-band{
  border-radius: 28px;
  border: 1px solid rgba(148,163,184,0.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(10,132,255,0.22), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(129,140,248,0.18), transparent 55%),
    rgba(15,23,42,0.70);
  box-shadow: 0 28px 60px rgba(15,23,42,0.78);
  padding: 1.4rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1.2rem;
}
.home-cta-title{ margin:0 0 .35rem; font-size: 1.5rem; }
.home-cta-sub{ margin:0; color: rgba(148,163,184,0.92); }
.home-cta-actions{ display:flex; gap:.75rem; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 860px){
  .home-cta-band{ flex-direction: column; align-items:flex-start; }
  .home-cta-actions{ width:100%; justify-content:flex-start; }
  .home-hero-metrics{ grid-template-columns: 1fr; }
}






/* ===== Comments page (premium + responsive) ===== */
.acc-title { display:flex; align-items:center; gap:.6rem; }
.acc-title-ico { opacity:.9; }

.comments-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:14px;
  align-items:start;
}

.hp-field { display:none; } /* honeypot */

.acc-card{ /* sizda account-card bo'lsa shuni ishlatishingiz ham mumkin */
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
  overflow:hidden;
}
.acc-card-head{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
}
.acc-card-title{
  margin:0;
  font-size: 14.5px;
  letter-spacing:.2px;
  display:flex;
  align-items:center;
  gap:10px;
}
.acc-card-body{ padding:16px; }

.acc-form{ display:grid; gap:12px; }
.acc-field label{
  display:block;
  margin:0 0 6px;
  color: rgba(234,240,255,.72);
  font-size: 12.5px;
  font-weight: 650;
}
.acc-input,
.acc-textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(234,240,255,.95);
  outline:none;
}
.acc-textarea{ resize: vertical; min-height: 120px; }
.acc-input:focus,
.acc-textarea:focus{
  border-color: rgba(124,92,255,.65);
  box-shadow: 0 0 0 3px rgba(124,92,255,.22);
}
.acc-hint{
  margin:6px 0 0;
  color: rgba(234,240,255,.55);
  font-size: 12px;
}

.comments-list{ display:grid; gap:10px; }
.comment-item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius: 16px;
  padding: 12px;
}
.comment-top{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom: 8px;
}
.comment-avatar{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(124,92,255,.35), rgba(33,212,253,.18));
}
.comment-meta{ display:flex; flex-direction:column; gap:2px; min-width:0; }
.comment-name{ font-weight: 800; font-size: 13px; }
.comment-date{ font-size: 12px; color: rgba(234,240,255,.55); }
.comment-text{
  color: rgba(234,240,255,.86);
  font-size: 13px;
  line-height: 1.55;
  word-wrap: break-word;
}

.comments-pagination{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:10px;
}
.acc-page-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(234,240,255,.92);
  text-decoration:none;
  font-weight: 750;
}
.acc-page-btn:hover{
  border-color: rgba(124,92,255,.45);
  background: rgba(124,92,255,.10);
}
.acc-page-info{
  color: rgba(234,240,255,.62);
  font-weight: 700;
  font-size: 13px;
}

/* responsive */
@media (max-width: 980px){
  .comments-grid{ grid-template-columns: 1fr; }
}



.comment-actions{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.comment-views{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  color: rgba(234,240,255,.72);
  font-weight: 700;
  font-size: 12.5px;
}

.comment-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(234,240,255,.90);
  cursor:pointer;
  font-weight: 800;
  font-size: 12.5px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.comment-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(124,92,255,.45);
  background: rgba(124,92,255,.10);
}

.comment-btn.is-active{
  border-color: rgba(33,212,253,.60);
  background: rgba(33,212,253,.12);
}



/* ===== NAV: modest premium account dropdown ===== */

.nav-auth-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.42rem .95rem;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.40);
  background: rgba(15,23,42,.86);
  color:#e5e7eb;
  font-size:.82rem;
  font-weight:600;
  box-shadow: 0 0 0 1px rgba(15,23,42,.92), 0 14px 30px rgba(15,23,42,.9);
}
.nav-auth-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(129,140,248,.9);
}
.nav-auth-pill-soft{
  background: radial-gradient(circle at 0% 0%, rgba(56,189,248,.18), rgba(15,23,42,.90));
}

.nav-account{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-account-btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.42rem .9rem;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.40);
  background: rgba(15,23,42,.86);
  color:#e5e7eb;
  cursor:pointer;
  font-size:.82rem;
  font-weight:650;
  box-shadow: 0 0 0 1px rgba(15,23,42,.92), 0 14px 30px rgba(15,23,42,.9);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.nav-account-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(129,140,248,.9);
}
.nav-account-btn.is-active{
  border-color: rgba(99,102,241,.85);
}

.nav-account-ico{
  width:30px; height:30px;
  border-radius:999px;
  display:grid; place-items:center;
  border:1px solid rgba(148,163,184,.22);
  background: rgba(0,0,0,.12);
}
.nav-account-caret{
  opacity:.85;
  font-size:.75rem;
}

.nav-account-menu{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 220px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 60;
}
.nav-account-menu.is-open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-menu-item{
  width:100%;
  display:flex;
  align-items:center;
  gap:.7rem;
  padding:.6rem .7rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color:#e5e7eb;
  text-decoration:none;
  font-size:.86rem;
  font-weight:600;
}
.nav-menu-item i{
  width:18px;
  text-align:center;
  opacity:.9;
}
.nav-menu-item:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(148,163,184,.14);
}
.nav-menu-divider{
  height:1px;
  margin: 6px 6px;
  background: rgba(148,163,184,.12);
}
.nav-menu-form{ margin:0; }
.nav-menu-form button{ cursor:pointer; }
.nav-menu-danger{
  color: rgba(255,200,210,.95);
}
.nav-menu-danger:hover{
  background: rgba(255,69,58,.10);
  border-color: rgba(255,69,58,.22);
}

/* Mobile: dropdown full width */
@media (max-width: 1023.98px){
  .nav-account{ width:100%; }
  .nav-account-btn{ width:100%; justify-content: space-between; }
  .nav-account-menu{
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    margin-top: 8px;
  }
  .nav-account-menu.is-open{ display:block; }
}



/* ===== Product list: details + cart row (premium modest) ===== */

.ios-card-actions{
  display: grid;
  gap: .65rem;
  margin-top: .75rem;
}

.ios-btn-details{
  width: 100%;
  justify-content: center;
}

.ios-card-form{
  margin: 0;
}

.qty-and-button{
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
  align-items: center;
}

.ios-btn-cart{
  width: 100%;
  justify-content: center;
}

/* Tablet/desktop: Details chapda, qty+cart o‘ngda */
@media (min-width: 640px){
  .ios-card-actions{
    grid-template-columns: 1fr;
  }

  .qty-and-button{
    grid-template-columns: auto 1fr;
  }

  .qty-control{
    flex: 0 0 auto;
  }

  .ios-btn-cart{
    width: 100%;
  }
}




/* ===============================
   PRODUCT CARD ACTIONS (Details + Add)
   =============================== */

.product-actions{
  margin-top: .85rem;
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Details button */
.product-details-btn{
  min-width: 132px;
  justify-content: center;
  flex: 0 0 auto;
}

/* Add form row (qty + button) */
.product-add-form{
  display: flex;
  gap: .65rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  min-width: 280px;
}

/* Add button grows nicely */
.product-add-btn{
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

/* Ensure buttons look aligned in this row */
.product-actions .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}

/* Optional: when product is out of stock (only Details is shown) */
.product-actions:has(.product-details-btn):not(:has(.product-add-form)) .product-details-btn{
  width: 100%;
  min-width: 0;
}

/* ===============================
   MOBILE / SMALL TABLET
   =============================== */
@media (max-width: 560px){
  .product-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .product-details-btn{
    width: 100%;
    min-width: 0;
  }

  .product-add-form{
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .product-add-btn{
    width: 100%;
    min-width: 0;
  }
}

/* ===============================
   VERY SMALL PHONES (tighter)
   =============================== */
@media (max-width: 420px){
  .product-add-form{
    flex-direction: column;
    align-items: stretch;
  }

  /* qty-control already pill, on small screens it can be full width */
  .product-add-form .qty-control{
    width: 100%;
    justify-content: space-between;
  }
}



/* Product list actions */
.product-actions{
  margin-top: .85rem;
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  align-items: center;
}

.product-details-btn{
  min-width: 132px;
  justify-content: center;
  flex: 0 0 auto;
}

.product-add-form{
  display: flex;
  gap: .65rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  min-width: 280px;
}

.product-add-btn{
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

@media (max-width: 560px){
  .product-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .product-details-btn,
  .product-add-form,
  .product-add-btn{
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 420px){
  .product-add-form{
    flex-direction: column;
    align-items: stretch;
  }
  .product-add-form .qty-control{
    width: 100%;
    justify-content: space-between;
  }
}


/* =========================================================
   NAVBAR (Premium) — only for nav-premium*
   ========================================================= */

.nav-premium {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-premium__container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}

/* Brand */
.nav-premium__brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
  color: var(--text-main);
}

.nav-premium__logo{
  width: 44px;
  height: 44px;
  border-radius: 14px; /* ✅ rounded-rect */
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(56,189,248,.95),
    rgba(99,102,241,.95),
    rgba(168,85,247,.95)
  );
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  flex: 0 0 auto;
}

.nav-premium__logo img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 12px; /* inside */
  display:block;
}

.nav-premium__brandtext{
  display:flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nav-premium__name{
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-premium__tag{
  font-size: .82rem;
  color: rgba(148,163,184,.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Panel (desktop default) */
.nav-premium__panel{
  display:flex;
  align-items:center;
  gap: 14px;
}

.nav-premium__nav{
  display:flex;
  align-items:center;
  gap: 8px;
}

/* Links */
.nav-premium__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(148,163,184,.95);
  font-weight: 650;
  font-size: .9rem;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
}

.nav-premium__link i{
  width: 18px;
  text-align:center;
  font-size: .92rem;
  opacity: .95;
}

.nav-premium__link:hover{
  color: var(--text-main);
  background: rgba(255,255,255,.06);
  border-color: rgba(148,163,184,.18);
  transform: translateY(-1px);
}

.nav-premium__link.is-active{
  color: var(--text-main);
  background: rgba(10,132,255,.12);
  border-color: rgba(10,132,255,.35);
}

/* Actions */
.nav-premium__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Cart */
.nav-premium__cart{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(148,163,184,.30);
  background: rgba(15,23,42,.70);
  color: var(--text-main);
  box-shadow: 0 14px 32px rgba(0,0,0,.45);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-premium__cart:hover{
  transform: translateY(-1px);
  border-color: rgba(10,132,255,.55);
  background: rgba(10,132,255,.10);
}

.nav-premium__cartcount{
  position:absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: .68rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #fb7185);
  box-shadow: 0 0 0 2px rgba(2,6,23,.9);
}

/* Auth pills */
.nav-premium__pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.30);
  background: rgba(15,23,42,.72);
  color: var(--text-main);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 14px 32px rgba(0,0,0,.42);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-premium__pill:hover{
  transform: translateY(-1px);
  border-color: rgba(10,132,255,.55);
  background: rgba(10,132,255,.10);
}

.nav-premium__pill--soft{
  background: radial-gradient(circle at 0% 0%,
    rgba(56,189,248,.18),
    rgba(15,23,42,.74)
  );
}

/* Account dropdown */
.nav-premium__account{
  position: relative;
  display:inline-flex;
  align-items:center;
}

.nav-premium__accountbtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.30);
  background: rgba(15,23,42,.72);
  color: var(--text-main);
  cursor:pointer;
  font-weight: 750;
  font-size: .85rem;
  box-shadow: 0 14px 32px rgba(0,0,0,.42);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-premium__accountbtn:hover{
  transform: translateY(-1px);
  border-color: rgba(10,132,255,.55);
  background: rgba(10,132,255,.10);
}

.nav-premium__accountbtn.is-active{
  border-color: rgba(10,132,255,.60);
  background: rgba(10,132,255,.12);
}

.nav-premium__accountico{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(148,163,184,.20);
  background: rgba(2,6,23,.35);
}

.nav-premium__caret{
  opacity: .85;
  font-size: .75rem;
}

/* Menu */
.nav-premium__menu{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 60px rgba(0,0,0,.55);
  padding: 8px;

  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 80;
}

.nav-premium__menu.is-open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-premium__menuitem{
  width: 100%;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(226,232,240,.95);
  font-weight: 700;
  font-size: .88rem;
  border: 1px solid transparent;
  background: transparent;
}

.nav-premium__menuitem i{
  width: 18px;
  text-align:center;
  opacity: .95;
}

.nav-premium__menuitem:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(148,163,184,.14);
}

.nav-premium__menuitem--danger{
  color: rgba(255,200,210,.95);
}

.nav-premium__menuitem--danger:hover{
  background: rgba(255,69,58,.12);
  border-color: rgba(255,69,58,.22);
}

.nav-premium__divider{
  height: 1px;
  margin: 8px 6px;
  background: rgba(148,163,184,.12);
}

.nav-premium__menuform{ margin: 0; }
.nav-premium__menuform button{ cursor: pointer; }

/* Toggle (burger) */
.nav-premium__toggle{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.30);
  background: rgba(15,23,42,.72);
  box-shadow: 0 14px 32px rgba(0,0,0,.42);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content:center;
  gap: 4px;
}

.nav-premium__toggle span{
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(226,232,240,.95);
  margin: 0 auto;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-premium__toggle.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-premium__toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-premium__toggle.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Mobile behavior */
@media (max-width: 1023.98px){
  .nav-premium__toggle{ display:flex; }

  .nav-premium__panel{
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 10px);
    border-radius: 18px;
    padding: 12px 12px 14px;
    background: rgba(15,23,42,.96);
    border: 1px solid rgba(148,163,184,.22);
    box-shadow: 0 26px 60px rgba(0,0,0,.55);

    flex-direction: column;
    align-items: stretch;
    gap: 12px;

    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-premium__panel.is-open{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-premium__nav{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-premium__link{
    width: 100%;
    justify-content: flex-start;
  }

  .nav-premium__actions{
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .nav-premium__pill,
  .nav-premium__accountbtn{
    width: 100%;
    justify-content: space-between;
  }

  /* account menu becomes inline inside panel on mobile */
  .nav-premium__menu{
    position: static;
    min-width: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    margin-top: 8px;
  }
  .nav-premium__menu.is-open{ display:block; }
}


/* =========================================================
   FOOTER (Premium) — only for footer-premium*
   ========================================================= */

.footer-premium{
  border-top: 1px solid rgba(148,163,184,.18);
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 0 18px;
}

.footer-premium__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 18px;
  align-items:start;
}

.footer-premium__brandlink{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  color: var(--text-main);
}

.footer-premium__logo{
  width: 48px;
  height: 48px;
  border-radius: 16px; /* rounded-rect */
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(56,189,248,.95),
    rgba(99,102,241,.95),
    rgba(168,85,247,.95)
  );
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  flex: 0 0 auto;
}

.footer-premium__logo img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 14px;
  display:block;
}

.footer-premium__brandtext{
  display:flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.footer-premium__name{
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.footer-premium__tag{
  color: rgba(148,163,184,.92);
  font-size: .9rem;
  line-height: 1.45;
  max-width: 520px;
}

/* Columns */
.footer-premium__col{
  border: 1px solid rgba(148,163,184,.14);
  background: rgba(15,23,42,.55);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.footer-premium__title{
  margin: 0 0 10px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(226,232,240,.92);
}

.footer-premium__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 8px;
}

.footer-premium__link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(148,163,184,.95);
  font-weight: 650;
  font-size: .9rem;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.footer-premium__link i{
  width: 18px;
  text-align:center;
  opacity: .95;
}

.footer-premium__link:hover{
  color: var(--text-main);
  background: rgba(255,255,255,.06);
  border-color: rgba(148,163,184,.14);
}

/* Contact list */
.footer-premium__list--contact{
  gap: 10px;
}

.footer-premium__contact{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(226,232,240,.92);
  font-size: .9rem;
  line-height: 1.45;
}

.footer-premium__contact i{
  margin-top: 2px;
  width: 18px;
  text-align:center;
  color: rgba(148,163,184,.95);
}

/* Social */
.footer-premium__social{
  display:grid;
  gap: 10px;
}

.footer-premium__socialbtn{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(2,6,23,.35);
  color: rgba(226,232,240,.95);
  font-weight: 750;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-premium__socialbtn i{
  font-size: 1.05rem;
  opacity: .95;
}

.footer-premium__socialbtn:hover{
  transform: translateY(-1px);
  border-color: rgba(10,132,255,.40);
  background: rgba(10,132,255,.10);
}

.footer-premium__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(148,163,184,.14);
  text-align:center;
  color: rgba(148,163,184,.92);
  font-size: .85rem;
}

/* Responsive footer */
@media (max-width: 1024px){
  .footer-premium__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .footer-premium__grid{
    grid-template-columns: 1fr;
  }
  .footer-premium__col{
    padding: 14px 12px;
  }
}





/* ===== MOBILE NAV FIX: Account dropdown to'liq sig'sin ===== */
@media (max-width: 1023.98px){

  /* nav actions bir ustun bo'lsin (siqilmasin) */
  .nav-actions{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  /* cart ham full width bo'lsin (xohlasang) */
  .nav-cart{
    width: 100%;
    height: 44px;
    justify-content: center;
  }

  /* Account button chaproqqa “kattaroq joy” qoldirib turadi */
  .nav-account{
    width: 100%;
  }

  .nav-account-btn{
    width: 100%;
    justify-content: space-between;
  }

  /* MUHIM: menu absolute bo'lib o'ngga chiqib ketmasin */
  .nav-account-menu{
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    width: 100% !important;
    min-width: 0 !important;

    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;

    display: none;
    margin-top: 10px;
  }

  .nav-account-menu.is-open{
    display: block;
  }

  /* menu itemlar ichida buttonlar to'liq sig'sin */
  .nav-menu-item{
    width: 100%;
    padding: 12px 12px;
  }
}



.nav-premium__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Login/Register ham yonma-yon tursin */
.nav-premium__pill{ white-space: nowrap; }

/* Account link button ko‘rinishi */
.nav-premium__accountlink{
  display:inline-flex;
  align-items:center;
  gap: .55rem;
  padding: .42rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.40);
  background: rgba(15,23,42,.86);
  color:#e5e7eb;
  font-size:.82rem;
  font-weight:650;
  box-shadow: 0 0 0 1px rgba(15,23,42,.92), 0 14px 30px rgba(15,23,42,.9);
  transition: transform 150ms ease, border-color 150ms ease;
}
.nav-premium__accountlink:hover{
  transform: translateY(-1px);
  border-color: rgba(129,140,248,.9);
}
.nav-premium__accountlink.is-active{
  border-color: rgba(99,102,241,.85);
}

.nav-premium__accountico{
  width:30px; height:30px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(148,163,184,.22);
  background: rgba(0,0,0,.12);
}


/* ===== Snow overlay (global) ===== */
#snowCanvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;      /* ✅ kliklarni to'smaydi */
  z-index: 8;                /* ✅ kontent ustida, lekin toast (9999) ostida */
  opacity: 0.75;             /* xohlasangiz 0.5-0.9 */
}

/* Agar xohlasangiz: user reduced motion bo'lsa o'chadi */
@media (prefers-reduced-motion: reduce){
  #snowCanvas{ display:none; }
}

/* HOTFIX: remove overlay that hides page content */
body::before { content: none !important; }

.nav-premium__logo{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
}

.nav-premium__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* ==============================
   FIX: navbar logo huge bo'lib ketmasin
   ============================== */
.site-header .nav-premium__logo{
  width:44px !important;
  height:44px !important;
  flex:0 0 44px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
  border-radius:12px !important;
}

.site-header .nav-premium__logo img{
  width:44px !important;
  height:44px !important;
  max-width:44px !important;
  max-height:44px !important;
  object-fit:contain !important;
}

/* TEMP: agar snowCanvas overlay bo'lsa, tekshiruv uchun o'chiramiz */
#snowCanvas{ display:none !important; }

