:root {
  --bg: #081a33;
  --bg-soft: #0f2747;
  --surface: #102b4c;
  --surface-2: #16385f;
  --card: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #c89a45;
  --gold-soft: #f0dfb4;
  --sand: #f4efe6;
  --ink: #09203c;
  --text: #f4f8ff;
  --muted: #bdd0e8;
  --danger: #ffb7a5;
  --success: #bdebd1;
  --shadow: 0 18px 40px rgba(2, 11, 24, 0.32);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Tajawal", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(200, 154, 69, 0.14), transparent 32%),
    linear-gradient(180deg, #0a1d38 0%, #081528 45%, #07111d 100%);
}

body.auth-locked {
  overflow: hidden;
  height: 100vh;
}

a, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
input, textarea, button, select { border: 0; }
textarea { resize: vertical; }
.hidden { display: none !important; }
.page-shell { min-height: 100vh; }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 23, 43, 0.84);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  flex-shrink: 0;
}

.lang-option {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.lang-track {
  width: 52px;
  height: 28px;
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.lang-knob {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8e7c4, #c89a45);
  transition: transform 0.24s ease;
}

.language-switcher[data-lang="en"] .lang-knob {
  transform: translateX(-24px);
}

[dir="ltr"] body {
  font-family: "Montserrat", "Tajawal", sans-serif;
}

[dir="ltr"] .auth-showcase,
[dir="ltr"] .auth-card,
[dir="ltr"] .hero-copy,
[dir="ltr"] .hero-panel,
[dir="ltr"] .category-card,
[dir="ltr"] .section-heading,
[dir="ltr"] .feature-card,
[dir="ltr"] .cta-card,
[dir="ltr"] .cart-drawer,
[dir="ltr"] .order-card,
[dir="ltr"] .field,
[dir="ltr"] .account-box {
  text-align: left;
}

[dir="ltr"] .field input,
[dir="ltr"] .field textarea,
[dir="ltr"] .field select {
  direction: ltr;
  text-align: left;
}

.container {
  width: min(1180px, calc(100% - clamp(24px, 4vw, 48px)));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, #eedcb0, var(--gold));
  box-shadow: 0 10px 24px rgba(200, 154, 69, 0.28);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

.btn-block { width: 100%; }

.auth-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: 24px;
}

.auth-screen.hidden { display: none; }

.auth-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 154, 69, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(4, 14, 28, 0.88), rgba(4, 14, 28, 0.96));
  backdrop-filter: blur(16px);
}

.auth-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(calc(100vh - 48px), 860px);
  margin: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.auth-showcase,
.auth-card,
.hero-copy,
.hero-card,
.category-card,
.feature-card,
.cta-card,
.product-card,
.cart-drawer,
.summary-card,
.order-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.auth-showcase,
.auth-card { border-radius: var(--radius-xl); }

.auth-showcase {
  padding: 40px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(14, 39, 74, 0.95), rgba(8, 24, 46, 0.95));
}

.auth-showcase h1 {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
}

.auth-showcase p {
  color: var(--muted);
  line-height: 1.9;
}

.auth-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.auth-points div,
.admin-hint {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-points strong,
.auth-points span,
.admin-hint strong,
.admin-hint span {
  display: block;
}

.auth-points strong,
.admin-hint strong { margin-bottom: 8px; }
.admin-hint { margin-top: 20px; }

.auth-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 49, 89, 0.92), rgba(7, 19, 36, 0.98));
}

.auth-card-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.auth-card-head,
.language-switcher,
.topbar-language-switcher {
  display: none !important;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.auth-tab {
  min-height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.auth-tab.active {
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
}

.auth-form { display: none; }
.auth-form.active {
  display: block;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-inline-end: 6px;
}
.auth-form h2 { margin: 0; font-size: 1.6rem; }

.auth-form p,
.cart-note,
.order-details p {
  color: var(--muted);
  line-height: 1.8;
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
}

.field textarea { min-height: 100px; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(189, 208, 232, 0.7); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(240, 223, 180, 0.8);
  box-shadow: 0 0 0 4px rgba(200, 154, 69, 0.12);
}

/* ==========================================================================
   Extended storefront sections added for the catalog redesign
   ========================================================================== */

body.admin-mode #promo,
body.admin-mode #bestSellers,
body.admin-mode #newArrivals {
  display: none !important;
}

.compact-heading {
  align-items: end;
}

.brands-note,
.section-side-note {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.8;
}

.brands-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.brand-logo-slot {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background:
    radial-gradient(circle at top, rgba(200, 154, 69, 0.24), transparent 58%),
    rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.brand-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}
/*
.brand-logo-fallback {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

.brand-logo-copy strong,
.brand-logo-copy span {
  display: block;
}
*/
.brand-logo-copy span {
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.92rem;
}

.brand-logo-missing .brand-logo-slot {
  background: rgba(255, 255, 255, 0.04);
}

.promo-section {
  padding-top: 0;
}

.promo-banner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top left, rgba(200, 154, 69, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(18, 50, 90, 0.95), rgba(7, 19, 36, 0.98));
}

.promo-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.promo-frame {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(240, 223, 180, 0.18), transparent 46%),
    radial-gradient(circle at bottom right, rgba(200, 154, 69, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.promo-badge {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #f4e7c5, #c89a45);
  font-weight: 800;
}

.promo-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}

.promo-placeholder strong,
.promo-placeholder span {
  display: block;
}

.promo-placeholder strong {
  font-size: clamp(2rem, 5vw, 4rem);
}

.promo-placeholder span {
  margin-top: 10px;
  color: var(--muted);
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.featured-section {
  padding-top: 0;
}

.featured-slider-shell {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.featured-promo {
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top, rgba(200, 154, 69, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: var(--text);
}

.featured-promo h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.featured-promo p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.9;
}

.featured-promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.featured-promo-list li {
  position: relative;
  padding-right: 22px;
  color: var(--text);
  line-height: 1.7;
}

.featured-promo-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 154, 69, 0.12);
}

.featured-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compact-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Featured sections: show only 3 compact cards */
.featured-3up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .featured-3up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .featured-3up {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Featured sliders (Best sellers / New arrivals)
   Show one product card and auto-advance via JS every 10s.
   ========================================================================== */

.featured-slider {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
}

.featured-slider .featured-slide {
  width: min(520px, 100%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.featured-slider .featured-slide.is-entering {
  opacity: 0;
  transform: translateY(8px);
}

.featured-slider .featured-slide.is-fading {
  opacity: 0;
  transform: translateY(-6px);
}

@media (max-width: 900px) {
  .featured-slider-shell {
    grid-template-columns: 1fr;
  }
}

.catalog-tools {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.catalog-search {
  display: block;
  width: min(460px, 100%);
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-weight: 700;
}

.catalog-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
}

.catalog-search input:focus {
  border-color: rgba(240, 223, 180, 0.8);
  box-shadow: 0 0 0 4px rgba(200, 154, 69, 0.12);
}

.chip-brand {
  background: rgba(255, 255, 255, 0.04);
}

.product-card-compact .product-copy p {
  min-height: auto;
}

.product-visual {
  position: relative;
}

.product-visual.no-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(200, 154, 69, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.product-placeholder {
  display: none;
  text-align: center;
  padding: 24px;
}

.product-visual.no-image .product-placeholder {
  display: block;
}

.product-placeholder strong,
.product-placeholder span {
  display: block;
}

.product-placeholder span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-copy h3 {
  margin-bottom: 8px;
}

.product-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .brands-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compact-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brands-showcase,
  .compact-products-grid {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    justify-items: stretch;
  }

  .catalog-search {
    width: 100%;
  }
}

.auth-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.auth-message.error { color: var(--danger); }
.auth-message.success { color: var(--success); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8, 26, 51, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.topbar.topbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

body.admin-mode .hero,
body.admin-mode .brands-strip,
body.admin-mode #featuredHub,
body.admin-mode #favoritesSection,
body.admin-mode #categories,
body.admin-mode #products,
body.admin-mode .features-section,
body.admin-mode #contact,
body.admin-mode .cart-drawer,
body.admin-mode .favorites-drawer,
body.admin-mode .drawer-overlay,
body.admin-mode .cart-toggle,
body.admin-mode .favorites-toggle,
body.admin-mode .search-trigger,
body.admin-mode #heroCartButton {
  display: none !important;
}

body.admin-mode .nav a:not([href="#adminPanel"]) {
  display: none;
}

body.admin-mode .topbar-inner {
  justify-content: space-between;
}

body.admin-mode .admin-section {
  padding-top: 42px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  min-height: 82px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand div { min-width: 0; }
.brand strong, .brand span { display: block; }
.brand strong { font-size: 1.1rem; }
.brand span { color: var(--muted); font-size: 0.92rem; }

.brand-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--bg);
  font-weight: 900;
  font-size: 1.3rem;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
}

.brand-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.brand-logo {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark.has-logo {
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark.has-logo .brand-logo {
  display: block;
}

.brand-mark.has-logo .brand-letter {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
}

.nav a { white-space: nowrap; }
.nav a:hover { color: white; }

.nav-tabs {
  gap: 12px;
}

.nav-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-page-link.is-active,
.mobile-nav-link.is-active {
  color: white;
  border-color: rgba(240, 223, 180, 0.3);
  background: linear-gradient(180deg, rgba(200, 154, 69, 0.18), rgba(255, 255, 255, 0.05));
}

.nav-tab-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
  font-size: 0.95rem;
}

.admin-nav-link.hidden {
  display: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.topbar-language-switcher {
  background: rgba(255, 255, 255, 0.08);
}

.account-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-toggle,
.admin-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 48px;
  padding: 0 14px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-button strong {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
  font-size: 0.82rem;
}

.cart-toggle strong {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
}

.hero { padding: 78px 0 48px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(14, 39, 74, 0.95), rgba(8, 24, 46, 0.95));
}

.hero h1,
.section-heading h2,
.cta-card h2,
.cart-header h2 {
  margin: 0;
  line-height: 1.15;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.hero-text,
.section-heading p,
.cta-card p,
.feature-card p,
.category-card p,
.product-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.07rem;
  margin: 20px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.4rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(17, 49, 89, 0.92), rgba(7, 19, 36, 0.98));
}

.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.hero-panel {
  position: relative;
  z-index: 1;
  margin: 28px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-badge,
.product-badge,
.chip,
.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.panel-badge {
  min-height: 34px;
  padding: 0 14px;
  color: var(--ink);
  background: linear-gradient(135deg, #faeed1, #d3a860);
}

.hero-panel h2 {
  margin: 18px 0 12px;
  font-size: 1.8rem;
}

.hero-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding: 0 20px 0 0;
  margin-bottom: 14px;
  color: var(--text);
}

.hero-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 154, 69, 0.12);
}

.brands-strip { padding: 14px 0 0; }

.brands-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.brands-row span {
  padding: 18px 14px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-weight: 800;
}

.section { padding: 72px 0; }
.section-heading { max-width: 720px; margin-bottom: 28px; }

body[data-store-page="home"] #featuredHub,
body[data-store-page="home"] #newArrivals,
body[data-store-page="home"] #favoritesSection,
body[data-store-page="home"] #products,
body[data-store-page="home"] #bestSellers,
body[data-store-page="home"] .features-section,
body[data-store-page="home"] #contact,
body[data-store-page="featured"] .hero,
body[data-store-page="featured"] #brands,
body[data-store-page="featured"] #promo,
body[data-store-page="featured"] #favoritesSection,
body[data-store-page="featured"] #products,
body[data-store-page="featured"] .features-section,
body[data-store-page="featured"] #contact,
body[data-store-page="shop"] .hero,
body[data-store-page="shop"] #brands,
body[data-store-page="shop"] #promo,
body[data-store-page="shop"] #featuredHub,
body[data-store-page="shop"] #newArrivals,
body[data-store-page="shop"] #bestSellers,
body[data-store-page="shop"] .features-section,
body[data-store-page="shop"] #contact {
  display: none !important;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  max-width: none;
}

.categories-grid,
.features-grid,
.products-grid,
.admin-summary,
.orders-list,
.customers-list {
  display: grid;
  gap: 18px;
}

.categories-grid,
.features-grid,
.admin-summary {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.orders-list { grid-template-columns: 1fr; }

.category-card,
.feature-card,
.summary-card,
.order-card {
  border-radius: var(--radius-lg);
}

.category-card,
.feature-card,
.summary-card { padding: 24px; }

.category-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.accent-blue {
  background: linear-gradient(160deg, rgba(22, 56, 95, 0.96), rgba(12, 29, 54, 0.96));
}

.accent-gold {
  color: var(--ink);
  background: linear-gradient(160deg, #efe0bb, #c99945);
}

.accent-gold p { color: rgba(9, 32, 60, 0.78); }

.accent-sand {
  color: var(--ink);
  background: linear-gradient(160deg, #fff8ee, #ede3d1);
}

.accent-sand p { color: rgba(9, 32, 60, 0.74); }

.section-products {
  background:
    radial-gradient(circle at right top, rgba(200, 154, 69, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.chip.active,
.chip:hover {
  color: var(--ink);
  background: linear-gradient(135deg, #f8ebcd, #c89a45);
  border-color: transparent;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-radius: var(--radius-lg);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 148px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 49, 87, 0.9), rgba(8, 18, 34, 0.95));
}

.favorite-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgba(7, 19, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.favorite-chip.active {
  color: #ffcfda;
  background: rgba(176, 34, 72, 0.4);
  border-color: rgba(255, 207, 218, 0.48);
}

.product-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 223, 180, 0.18);
  pointer-events: none;
}

.orbit-one {
  width: 130px;
  height: 130px;
  top: -36px;
  right: -22px;
}

.orbit-two {
  width: 84px;
  height: 84px;
  bottom: -20px;
  left: 18px;
}

.product-image {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
}

.product-visual.has-image .product-image {
  display: block;
}

.product-visual.has-image .product-icon {
  display: none;
}

.product-icon {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(200, 154, 69, 0.28));
  position: relative;
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.product-icon::after {
  inset: 30px;
  border-radius: 10px;
  border-color: rgba(200, 154, 69, 0.86);
}

.product-top,
.order-top,
.order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-badge {
  min-height: 32px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
}

.price {
  color: white;
  font-weight: 900;
  font-size: 1.15rem;
}

.price-stack {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.price-tier {
  color: var(--muted);
  font-size: 0.83rem;
}

.price-tier.active {
  color: var(--gold-soft);
  font-weight: 800;
}

.product-card h3,
.order-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.product-copy p {
  margin: 0;
  font-size: 0.92rem;
}

.product-meta,
.order-meta,
.order-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-meta span,
.order-meta span,
.order-items span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

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

.featured-spotlight-card {
  position: relative;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(200, 154, 69, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.featured-spotlight-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.favorites-section {
  padding-top: 0;
}

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

.favorites-drawer {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.mobile-bottom-nav {
  position: fixed;
  right: 12px;
  left: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(8, 26, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(2, 11, 24, 0.34);
  backdrop-filter: blur(16px);
}

.mobile-nav-link {
  flex: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
}

.mobile-nav-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.mobile-nav-link.is-active .mobile-nav-icon {
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
}

.product-link {
  color: var(--gold-soft);
  font-weight: 800;
}

.add-to-cart {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
  font-weight: 800;
}

.summary-card { background: rgba(255, 255, 255, 0.04); }
.summary-card span, .summary-card strong { display: block; }
.summary-card span { color: var(--muted); margin-bottom: 10px; }
.summary-card strong { font-size: 2rem; }

.admin-status-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: start;
}

.admin-status-card {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 12px;
  text-align: right;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-status-card:hover,
.admin-status-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(240, 223, 180, 0.45);
  background: linear-gradient(180deg, rgba(200, 154, 69, 0.18), rgba(255, 255, 255, 0.05));
}

.admin-status-icon {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-status-icon::before,
.admin-status-icon::after {
  content: "";
  position: absolute;
}

.pending-icon::before {
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid var(--gold-soft);
}

.pending-icon::after {
  top: 23px;
  right: 29px;
  width: 3px;
  height: 12px;
  background: var(--gold-soft);
  box-shadow: -8px 5px 0 0 var(--gold-soft);
  transform: rotate(25deg);
  transform-origin: top center;
}

.completed-icon::before {
  top: 14px;
  right: 14px;
  width: 30px;
  height: 18px;
  border-right: 4px solid #0f5f3d;
  border-bottom: 4px solid #0f5f3d;
  transform: rotate(40deg);
}

.admin-status-card strong {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
}

.admin-filter-label {
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.admin-alert,
.admin-customers-panel,
.customer-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.admin-alert,
.admin-customers-panel {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.admin-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-color: rgba(240, 223, 180, 0.32);
  background: linear-gradient(135deg, rgba(200, 154, 69, 0.2), rgba(255, 255, 255, 0.05));
}

.admin-alert strong,
.admin-alert p {
  display: block;
}

.admin-alert strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.admin-alert p {
  margin: 0;
  color: var(--text);
}

.admin-alert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-customers-panel {
  /* Main customer module wrapper inside the admin dashboard. */
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(200, 154, 69, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(17, 49, 89, 0.62), rgba(8, 24, 46, 0.72));
}

.admin-customers-head {
  /* Header row that holds the title and the total customer summary card. */
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-customers-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.admin-customers-summary {
  /* Summary badge that shows the customer count in a more visible way. */
  min-width: 120px;
  padding: 14px 18px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(200, 154, 69, 0.14));
  border: 1px solid rgba(240, 223, 180, 0.16);
}

.admin-customers-summary span,
.admin-customers-summary strong {
  display: block;
}

.admin-customers-summary span {
  color: var(--muted);
  margin-bottom: 8px;
}

.admin-customers-summary strong {
  font-size: 1.8rem;
}

.customers-list {
  /* The customer list acts as a scrollable table-like block rather than separate cards. */
  grid-template-columns: 1fr;
}

.customers-table {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(240, 223, 180, 0.12);
  background: rgba(7, 19, 36, 0.55);
}

.customer-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, 1.2fr) minmax(220px, 1.4fr) minmax(130px, 0.9fr) minmax(170px, 1.2fr) minmax(120px, 0.9fr) 90px minmax(120px, 0.9fr) minmax(170px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.customer-row-header {
  /* Fixed visual header for the customer table. */
  color: var(--gold-soft);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.customer-row-body {
  /* Data rows: alternating fills make scanning easier in long admin lists. */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.customer-row-body:nth-child(even) {
  background: rgba(255, 255, 255, 0.045);
}

.customer-row-body:last-child {
  border-bottom: 0;
}

.customer-cell {
  min-width: 0;
  color: var(--muted);
  line-height: 1.55;
  word-break: break-word;
}

.customer-cell-rank,
.customer-cell-orders {
  font-weight: 800;
  color: white;
}

.customer-cell-name {
  color: white;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .customers-table {
    overflow-x: auto;
  }

  .customer-row {
    min-width: 1320px;
  }
}

.order-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.order-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.order-details strong {
  display: block;
  margin-bottom: 8px;
}

.status-badge {
  min-height: 34px;
  padding: 0 14px;
}

.status-new {
  color: var(--ink);
  background: linear-gradient(135deg, #f7e8c2, #c89a45);
}

.status-completed {
  color: #082c1d;
  background: var(--success);
}

.status-select { min-width: 180px; }

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(13, 39, 77, 0.96), rgba(31, 68, 111, 0.96));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: min(430px, 100%);
  max-width: 100vw;
  height: 100vh;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.98), rgba(6, 18, 35, 0.98));
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(4, 11, 22, 0.48);
}

.cart-header,
.cart-item,
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-close,
.qty-button,
.remove-item {
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.cart-close {
  width: 42px;
  height: 42px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 20px 0;
}

.cart-item {
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.cart-item-side {
  min-width: 88px;
  text-align: left;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.qty-button,
.remove-item {
  width: 30px;
  height: 30px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.remove-item {
  margin-top: 10px;
  color: var(--danger);
}

.cart-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary span { color: var(--muted); }
.cart-summary strong { font-size: 1.6rem; }
.checkout-fields { margin: 16px 0; }

.empty-cart,
.empty-orders {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 20px;
}

@media (max-width: 1100px) {
  .auth-shell,
  .hero-grid,
  .topbar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar-inner {
    display: grid;
    align-items: start;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .topbar-actions { justify-content: flex-start; }

  .heading-inline,
  .cta-card,
  .admin-alert,
  .admin-customers-head {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 900px) {
  .auth-shell,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .auth-shell {
    height: min(calc(100vh - 28px), 900px);
  }

  .hero-copy,
  .auth-showcase { padding: 30px; }

  .hero h1,
  .auth-showcase h1 { max-width: none; }

  .hero-panel { margin: 20px; }
  .heading-inline { align-items: stretch; }
  .filter-bar { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .favorites-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-spotlight-card { max-width: 360px; }
}

@media (max-width: 640px) {
  .auth-screen { padding: 14px; }

  .auth-shell {
    height: calc(100vh - 28px);
  }

  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand,
  .topbar-actions,
  .account-box,
  .admin-shortcut,
  .topbar-language-switcher {
    width: 100%;
  }

  .account-box,
  .topbar-actions { justify-content: space-between; }

  .search-trigger,
  .favorites-toggle,
  .cart-toggle,
  .admin-shortcut {
    display: none !important;
  }

  .topbar {
    position: static;
  }

  .topbar-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .account-box {
    padding: 10px 12px;
  }

  .auth-card-head {
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .auth-shell,
  .hero-grid,
  .hero-stats,
  .order-details {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-shell {
    padding-bottom: 92px;
  }

  .products-grid,
  .compact-products-grid,
  .favorites-grid {
    grid-template-columns: 1fr;
  }

  .auth-showcase,
  .auth-card,
  .hero-copy,
  .hero-panel,
  .category-card,
  .feature-card,
  .product-card,
  .cta-card,
  .cart-drawer,
  .summary-card,
  .order-card {
    padding: 22px;
  }

  .hero h1,
  .auth-showcase h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .auth-showcase { display: none; }

  .auth-tabs,
  .hero-actions,
  .cta-actions,
  .product-actions,
  .admin-alert-actions {
    display: flex;
    flex-direction: column;
  }

  .auth-tabs { grid-template-columns: 1fr; }

  .hero-actions .btn,
  .cta-actions .btn,
  .admin-alert-actions .btn,
  .product-actions .add-to-cart,
  .product-actions .product-link {
    width: 100%;
    text-align: center;
  }

  .product-actions,
  .order-top,
  .order-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .status-select { width: 100%; }

  .cart-drawer {
    width: 100%;
    padding: 18px;
  }

  .favorite-chip {
    top: 10px;
    left: 10px;
  }

  .mobile-bottom-nav {
    display: flex;
  }
}

@media (max-width: 420px) {
  .language-switcher {
    gap: 8px;
    padding: 7px 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .brand strong { font-size: 1rem; }

  .brand span,
  .account-box span { font-size: 0.88rem; }

  .hero-copy,
  .auth-showcase,
  .auth-card,
  .hero-panel,
  .product-card,
  .category-card,
  .feature-card,
  .summary-card,
  .order-card,
  .cta-card {
    padding: 18px;
  }

  .product-visual { min-height: 150px; }

  .product-image { min-height: 150px; }

  .product-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .product-icon::before {
    inset: 12px;
    border-radius: 10px;
  }

  .product-icon::after {
    inset: 20px;
    border-radius: 6px;
  }

  .cart-item-side {
    width: 100%;
    min-width: 0;
    text-align: right;
  }

  .mobile-bottom-nav {
    right: 8px;
    left: 8px;
    bottom: 8px;
  }
}
