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

:root {
  --midnight: #0D0D14;
  --midnight-soft: #16161F;
  --gold: #C5A96A;
  --gold-light: #D4BC8A;
  --cream: #FAFAF8;
  --surface: #F2F2F5;
  --surface-elevated: #FFFFFF;
  --text-primary: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #A0A0A5;
  --border: #E5E5EA;
  --border-strong: #C8C8CE;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: 36px; background: #C5A235;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #1C1C1E;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.announcement-bar.bar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.navbar {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  height: 56px;
  transition: top 0.3s ease, background var(--transition);
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background var(--transition);
}
.navbar.dark {
  background: rgba(13, 13, 20, 0.9);
  border-bottom-color: rgba(255,255,255,0.08);
}
.navbar.dark .nav-link { color: rgba(255,255,255,0.95); }
.navbar.dark .nav-logo { color: #FAFAF8; }
.navbar.dark .cart-btn svg { stroke: #FAFAF8; }
.navbar.dark .cart-btn:hover { background: rgba(255,255,255,0.1); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 25px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--midnight); text-decoration: none;
  text-transform: uppercase; flex: 1;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--midnight);
  text-decoration: none; padding: 6px 14px; border-radius: 20px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-link:hover { background: rgba(0,0,0,0.08); }
.nav-right { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: flex-end; }
.cart-btn {
  position: relative; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: none; background: transparent;
  cursor: pointer; transition: background var(--transition);
  text-decoration: none; color: inherit;
}
.cart-btn:hover { background: rgba(0,0,0,0.05); }
.cart-btn svg { stroke: var(--midnight); }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: var(--midnight);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.03);
  padding: 10px; min-width: 320px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
/* Bridge gap so mouse can move from nav link to dropdown without losing hover */
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(8px);
}
.dropdown-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border-radius: 12px;
  text-decoration: none; color: var(--text-primary);
  transition: background var(--transition);
}
.dropdown-item:hover { background: var(--surface); }
.dropdown-item-img {
  width: 64px; height: 72px;
  object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}
.dropdown-item-info {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.dropdown-item-name {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.dropdown-item-sub {
  font-size: 12px; color: var(--text-secondary); line-height: 1.4;
}
.dropdown-item-price {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  white-space: nowrap; flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--midnight);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(197,169,106,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(197,169,106,0.06) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 860px; padding: 0 24px; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 500;
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300; color: #FAFAF8; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px; color: rgba(250,250,248,0.65); max-width: 520px;
  margin: 0 auto 48px; line-height: 1.7; font-weight: 300;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform var(--transition-spring), box-shadow var(--transition), background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--gold); color: var(--midnight);
  box-shadow: 0 4px 20px rgba(197,169,106,0.35);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(197,169,106,0.45); }
.btn-ghost {
  background: transparent; color: rgba(250,250,248,0.8);
  border: 1px solid rgba(250,250,248,0.2);
}
.btn-ghost:hover { background: rgba(250,250,248,0.08); color: #FAFAF8; }
.btn-dark {
  background: var(--midnight); color: #FAFAF8;
  box-shadow: 0 4px 20px rgba(13,13,20,0.2);
}
.btn-dark:hover { background: #1a1a2a; }
.btn-outline {
  background: transparent; color: var(--midnight);
  border: 1.5px solid var(--midnight);
}
.btn-outline:hover { background: var(--midnight); color: #FAFAF8; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ─── SECTIONS ─── */
.section { padding: 100px 24px; }
.section-dark { background: var(--midnight); }
.section-surface { background: var(--surface); }
.site-container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title-light { color: #FAFAF8; }
.section-sub {
  font-size: 17px; color: var(--text-secondary); line-height: 1.7;
  max-width: 560px; font-weight: 300;
}
.section-sub-light { color: rgba(250,250,248,0.6); }

/* ─── WHY SECTION ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 92px;
}
.why-card {
  grid-column: span 2;
  padding: 36px 32px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 0 1px rgba(0,0,0,0.03);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:nth-child(4) { grid-column: 2 / span 2; }
.why-card:nth-child(5) { grid-column: 4 / span 2; }
.why-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--midnight); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(13,13,20,0.18);
}
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 600; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── PRODUCTS GRID ─── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 64px;
}

/* ─── PRODUCT LINEUP (IQOS-style) ─── */
.lineup-compare-link {
  color: var(--ink); font-size: 14px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.lineup-compare-link:hover { border-bottom-color: var(--ink); }

.lineup-grid { }

.lineup-gray-area {
  background: #E4E4E8;
  overflow: visible;
  position: relative; z-index: 2;
}

.lineup-images-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  overflow: visible;
}

.lineup-img-cell {
  display: flex; align-items: flex-end; justify-content: center;
  padding: 8px 24px 0; min-height: 280px;
  overflow: visible;
}

.lineup-product-img {
  width: 100%; max-width: 340px; height: auto;
  display: block; object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
  margin-bottom: -100px;
  position: relative; z-index: 3;
}

.lineup-text-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: transparent;
  border: none; border-top: none;
  border-radius: 0;
  overflow: visible;
  position: relative; z-index: 1;
}

.lineup-text-col {
  padding: 116px 28px 36px;
  border-right: 1px solid var(--border);
}
.lineup-text-col:last-child { border-right: none; }

.lineup-price {
  font-size: 22px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.lineup-specs {
  border-top: 1px solid var(--border);
  margin-top: 4px; margin-bottom: 24px;
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.lineup-spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
}
.lineup-spec-row span:first-child { color: var(--text-secondary); }
.lineup-spec-row span:last-child { color: var(--text-primary); font-weight: 500; text-align: right; max-width: 60%; }

.lineup-name {
  font-size: 20px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.lineup-tagline {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.55; margin-bottom: 24px;
}

.feature-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 11px; margin-bottom: 28px;
}
.feature-list li {
  font-size: 14px; display: flex; align-items: center;
  gap: 10px; color: var(--text-primary);
}
.feature-list li.feat-no { color: var(--text-tertiary); }
.feature-list li.feat-yes::before {
  content: '';
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.feature-list li.feat-no::before {
  content: '—';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  font-size: 14px; color: var(--text-tertiary);
}

.btn-lineup {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 26px; border-radius: 40px;
  border: 1.5px solid var(--text-primary);
  font-size: 14px; font-weight: 500; color: var(--text-primary);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition-spring);
}
.btn-lineup:hover { background: var(--text-primary); color: #fff; transform: translateY(-1px); }
.btn-lineup:active { transform: translateY(0); }
.product-card {
  background: var(--surface-elevated); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.product-card-image {
  aspect-ratio: 4/3; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--midnight); color: var(--gold);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}
.product-card-body { padding: 28px; }
.product-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 26px; font-weight: 500; margin-bottom: 6px;
}
.product-card-tagline { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.product-card-price { font-size: 22px; font-weight: 600; color: var(--midnight); }
.product-card-colors { display: flex; gap: 6px; margin-top: 16px; }
.color-dot-sm {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.08);
}

/* ─── CONFIGURATOR ─── */
.configurator {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  max-width: 1100px; margin: 0 auto; padding: 60px 24px 100px;
}
@media (max-width: 768px) { .configurator { grid-template-columns: 1fr; gap: 48px; } }

.config-visual { position: sticky; top: 116px; }
.config-image-wrap {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.config-image-wrap img { width: 100%; height: 100%; object-fit: contain; }
.config-color-preview {
  display: flex; gap: 8px; justify-content: center; margin-top: 20px;
}
.config-form { padding-top: 20px; }
.config-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.config-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 5vw, 52px); font-weight: 400;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 8px;
}
.config-price {
  font-size: 24px; font-weight: 500; color: var(--text-primary);
  margin-bottom: 36px;
}
.config-section {
  padding: 24px 0; border-top: 1px solid var(--border);
}
.config-section-title {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 16px; font-weight: 500;
}
.config-section-current {
  font-size: 15px; color: var(--text-primary); font-weight: 400;
}
.option-cards { display: flex; flex-direction: column; gap: 12px; }
.option-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color var(--transition), background var(--transition);
}
.option-card:hover { border-color: var(--gold); }
.option-card.active {
  border-color: var(--midnight);
  background: rgba(13,13,20,0.03);
}
.option-card-label { font-size: 14px; font-weight: 500; }
.option-card-desc { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.option-card-price { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.option-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.option-card.active .option-radio {
  border-color: var(--midnight); background: var(--midnight);
}
.option-card.active .option-radio::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: white;
}
.toggle-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-top: 1px solid var(--border);
}
.toggle-label { font-size: 14px; }
.toggle-label-sub { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.toggle-right { display: flex; align-items: center; gap: 12px; }
.toggle-price { font-size: 14px; font-weight: 600; }
.toggle {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--border-strong); position: relative; cursor: pointer;
  transition: background var(--transition);
}
.toggle.on { background: var(--midnight); }
.toggle::after {
  content: ''; position: absolute;
  width: 20px; height: 20px; border-radius: 50%;
  background: white; top: 2px; left: 2px;
  transition: transform var(--transition-spring);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle.on::after { transform: translateX(20px); }

.inbox-list { list-style: none; margin-top: 8px; }
.inbox-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-secondary); padding: 5px 0;
}
.inbox-list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.add-to-cart-btn {
  width: 100%; padding: 16px; border-radius: 100px;
  font-size: 16px; font-weight: 600;
  background: var(--midnight); color: #FAFAF8;
  border: none; cursor: pointer; margin-top: 28px;
  transition: transform var(--transition-spring), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.add-to-cart-btn:hover {
  background: #1a1a2a;
  box-shadow: 0 8px 28px rgba(13,13,20,0.25);
  transform: scale(1.01);
}
.add-to-cart-btn:active { transform: scale(0.99); }

/* ─── SPECS ─── */
.specs-section {
  background: var(--surface); padding: 80px 24px;
}
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 48px;
}
.spec-item {
  background: var(--surface-elevated); padding: 32px 28px;
}
.spec-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 8px;
}
.spec-value {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 500; color: var(--text-primary);
}
.spec-unit { font-size: 14px; color: var(--text-secondary); font-family: 'Inter', sans-serif; margin-top: 2px; }

/* ─── ACCESSORIES / CONSUMABLES ─── */
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 48px;
}
.shop-card {
  background: var(--surface-elevated); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.shop-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.shop-card-image {
  aspect-ratio: 4/3; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.shop-card-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.shop-card-body { padding: 20px; }
.shop-card-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.shop-card-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; }
.shop-card-price { font-size: 18px; font-weight: 600; }
.add-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--midnight); color: white;
  border: none; cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition-spring), background var(--transition);
}
.add-btn:hover { background: #1a1a2a; transform: scale(1.1); }

/* ─── CART ─── */
.cart-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 40px; align-items: start;
  max-width: 1100px; margin: 0 auto; padding: 40px 24px 100px;
}
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex; gap: 20px;
  background: var(--surface-elevated); border-radius: var(--radius-md);
  padding: 20px; border: 1px solid var(--border);
}
.cart-item-image {
  width: 100px; height: 100px; border-radius: var(--radius-sm);
  background: var(--surface); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cart-item-image img { width: 80%; height: 80%; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.qty-control { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: transparent; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--midnight); background: var(--midnight); color: white; }
.qty-num { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }
.remove-btn {
  background: transparent; border: none; cursor: pointer;
  color: var(--text-tertiary); font-size: 12px; text-decoration: underline;
  transition: color var(--transition);
}
.remove-btn:hover { color: #c0392b; }
.cart-item-price { font-size: 17px; font-weight: 600; white-space: nowrap; }

.cart-summary {
  background: var(--surface-elevated); border-radius: var(--radius-xl);
  padding: 32px; border: 1px solid var(--border); position: sticky; top: 80px;
  box-sizing: border-box; overflow: hidden;
}
.cart-summary h3 {
  font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 500;
  margin-bottom: 24px;
}
.promo-form { display: flex; gap: 8px; margin-bottom: 24px; }
.promo-input {
  flex: 1; padding: 11px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif;
  font-size: 14px; background: var(--cream); outline: none;
  transition: border-color var(--transition);
}
.promo-input:focus { border-color: var(--midnight); }
.promo-btn {
  padding: 11px 18px; background: var(--midnight); color: white;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 13px; font-weight: 600;
  transition: background var(--transition);
}
.promo-btn:hover { background: #1a1a2a; }
.promo-msg { font-size: 13px; margin-top: -16px; margin-bottom: 16px; }
.promo-msg.success { color: #2d7a3a; }
.promo-msg.error { color: #c0392b; }
.summary-rows { border-top: 1px solid var(--border); padding-top: 20px; }
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 6px 0; color: var(--text-secondary);
}
.summary-row.discount { color: #2d7a3a; }
.summary-total {
  display: flex; justify-content: space-between;
  font-size: 19px; font-weight: 700; padding: 16px 0 0;
  border-top: 1.5px solid var(--border-strong); margin-top: 8px;
}
.checkout-btn {
  width: 100%; padding: 16px; border-radius: 100px;
  font-size: 16px; font-weight: 600;
  background: var(--midnight); color: #FAFAF8;
  border: none; cursor: pointer; margin-top: 20px;
  box-sizing: border-box; display: block;
  transition: transform var(--transition-spring), box-shadow var(--transition);
}
.checkout-btn:hover {
  box-shadow: 0 8px 28px rgba(13,13,20,0.25); transform: scale(1.01);
}
.cart-empty {
  text-align: center; padding: 80px 24px;
}
.cart-empty h3 {
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 400; margin-bottom: 12px;
}
.cart-empty p { color: var(--text-secondary); margin-bottom: 32px; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 140px 24px 80px; text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--cream) 100%);
}
.page-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 72px); font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.page-hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 480px; margin: 0 auto; }

/* ─── CATEGORY HEADERS ─── */
.category-section { padding: 60px 24px; }
.category-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 500; margin-bottom: 8px;
}
.category-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; }

/* ─── ABOUT ─── */
.about-hero {
  min-height: 70vh; background: var(--midnight);
  display: flex; align-items: center; padding: 140px 24px 100px;
}
.about-content { max-width: 720px; margin: 0 auto; }
.about-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 54px); font-weight: 300;
  color: #FAFAF8; line-height: 1.15; margin-bottom: 28px;
}
.about-lead em { font-style: italic; color: var(--gold-light); }
.about-body { font-size: 17px; color: rgba(250,250,248,0.65); line-height: 1.8; font-weight: 300; }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 60px;
}
.value-card {
  padding: 32px; background: var(--surface-elevated);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.value-number {
  font-family: 'Inter', sans-serif;
  font-size: 48px; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 12px;
}
.value-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── FOOTER ─── */
footer {
  background: var(--midnight); color: rgba(250,250,248,0.5);
  padding: 64px 24px 40px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250,250,248,0.8); margin-bottom: 16px; font-weight: 600;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(250,250,248,0.5);
  text-decoration: none; padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(250,250,248,0.9); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(250,250,248,0.9); text-transform: uppercase;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ─── SCROLL OBSERVE ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PRODUCT PAGE HEADER ─── */
.product-page-nav {
  display: flex; gap: 8px; align-items: center;
  max-width: 1100px; margin: 0 auto;
  padding: 100px 24px 0; font-size: 13px; color: var(--text-secondary);
}
.product-page-nav a { color: var(--text-secondary); text-decoration: none; }
.product-page-nav a:hover { color: var(--text-primary); }
.product-page-nav span { color: var(--text-tertiary); }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 500;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--midnight); color: white;
  border: none; cursor: pointer; display: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-spring), opacity var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: scale(1.1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: 60px 20px; }
  .hero-title { font-size: 48px; }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE NAVIGATION — HAMBURGER + DRAWER
═══════════════════════════════════════════════════════════════ */

/* Hamburger button (hidden on desktop) */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background var(--transition);
}
.hamburger-btn:hover { background: rgba(0,0,0,0.06); }
.navbar.dark .hamburger-btn:hover { background: rgba(255,255,255,0.1); }
.hb-line {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--midnight);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
.navbar.dark .hb-line { background: #FAFAF8; }
.hamburger-btn.open .hb-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open .hb-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .hb-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
body.menu-open { overflow: hidden; }

/* Drawer panel */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999;
  width: min(340px, 90vw);
  background: #0F0F18;
  border-left: 1px solid rgba(255,255,255,0.07);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mobile-menu.open { transform: translateX(0); }

/* Drawer header */
.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  margin-top: env(safe-area-inset-top, 0);
}
.mm-logo {
  font-size: 18px; font-weight: 600; letter-spacing: 0.14em;
  color: #FAFAF8; text-decoration: none; text-transform: uppercase;
}
.mm-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none; cursor: pointer; color: rgba(250,250,248,0.8);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.mm-close:hover { background: rgba(255,255,255,0.13); color: #FAFAF8; }

/* Nav area - scrollable */
.mm-nav {
  flex: 1; overflow-y: auto;
  padding: 8px 0 16px;
}
.mm-nav::-webkit-scrollbar { display: none; }

/* Regular items */
.mobile-nav-item {
  display: flex; align-items: center;
  padding: 15px 24px;
  font-size: 17px; font-weight: 400;
  color: rgba(250,250,248,0.75);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav-item:last-child { border-bottom: none; }
.mobile-nav-item:hover { background: rgba(255,255,255,0.04); color: #FAFAF8; }

/* Dropdown group */
.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-nav-group-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px;
  font-size: 17px; font-weight: 400;
  color: rgba(250,250,248,0.75);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-group-header:hover { background: rgba(255,255,255,0.04); color: #FAFAF8; }
.mobile-nav-group-header svg {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0; opacity: 0.5;
}
.mobile-nav-group.open .mobile-nav-group-header { color: #FAFAF8; }
.mobile-nav-group.open .mobile-nav-group-header svg { transform: rotate(180deg); opacity: 1; }

.mobile-nav-group-items {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-group.open .mobile-nav-group-items { display: flex; }

.mobile-nav-sub-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 24px 11px 32px;
  text-decoration: none;
  transition: background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mobile-nav-sub-item:last-child { border-bottom: none; }
.mobile-nav-sub-item:hover { background: rgba(255,255,255,0.04); }
.mobile-nav-sub-item img {
  width: 40px; height: 46px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.mns-name {
  flex: 1; font-size: 14px; font-weight: 500;
  color: rgba(250,250,248,0.85); letter-spacing: -0.01em;
}
.mns-price {
  font-size: 13px; color: var(--gold); font-weight: 500; white-space: nowrap;
}

/* Drawer footer */
.mm-footer {
  flex-shrink: 0;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 10px;
}
.mm-footer-link {
  display: block; text-align: center;
  padding: 13px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mm-footer-link:first-child {
  background: var(--gold); color: var(--midnight);
}
.mm-footer-link:first-child:hover { background: var(--gold-light); }
.mm-footer-link:last-child {
  background: rgba(255,255,255,0.07); color: rgba(250,250,248,0.7);
}
.mm-footer-link:last-child:hover { background: rgba(255,255,255,0.12); color: #FAFAF8; }

/* ═══════════════════════════════════════════════════════════════
   STICKY ADD-TO-CART BAR
═══════════════════════════════════════════════════════════════ */
.satc-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(250,250,248,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 16px env(safe-area-inset-bottom, 0);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: none;
}
.satc-bar.visible { transform: translateY(0); }
.satc-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; max-width: 560px; margin: 0 auto;
}
.satc-price {
  font-size: 18px; font-weight: 600; color: var(--text-primary);
  letter-spacing: -0.01em; white-space: nowrap; flex-shrink: 0;
}
.satc-btn {
  flex: 1; padding: 13px 16px;
  background: var(--midnight); color: #FAFAF8;
  border: none; border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition-spring);
}
.satc-btn:hover { background: #1a1a2a; }
.satc-btn:active { transform: scale(0.98); }
.has-sticky-atc .config-form { padding-bottom: 88px; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE LINEUP CAROUSEL
═══════════════════════════════════════════════════════════════ */
.mlc-wrap { padding: 24px 0 32px; }

.mlc-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 12px;
  padding: 0 20px;
}
.mlc-track::-webkit-scrollbar { display: none; }

.mlc-card {
  min-width: calc(85vw - 8px);
  max-width: 360px;
  scroll-snap-align: center;
  flex-shrink: 0;
  background: var(--surface-elevated);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
}

.mlc-img {
  background: linear-gradient(160deg, #DCDCE0 0%, #E8E8EC 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 40px 16px;
  aspect-ratio: 4/3;
}
.mlc-img img {
  width: 100%; max-width: 160px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.mlc-info {
  padding: 18px 20px 22px;
}
.mlc-info .lineup-name { font-size: 20px; margin-bottom: 4px; }
.mlc-info .lineup-tagline { font-size: 12px; margin-bottom: 14px; }
.mlc-info .lineup-price { font-size: 20px; margin-bottom: 14px; }
.mlc-info .feature-list { gap: 8px; margin-bottom: 14px; }
.mlc-info .feature-list li { font-size: 13px; }
.mlc-info .lineup-specs { margin-bottom: 14px; }
.mlc-info .lineup-spec-row { font-size: 12px; }
.mlc-info .btn-lineup {
  display: block; text-align: center; width: 100%;
  padding: 11px; font-size: 14px;
}

/* Pagination dots */
.mlc-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 14px 0 0;
}
.mlc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-strong);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.mlc-dot.active { background: var(--midnight); transform: scale(1.5); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 768px
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .hamburger-btn { display: flex; }
  .nav-links { display: none !important; }

  /* Sticky ATC bar */
  .satc-bar { display: flex; }

  /* Announcement */
  .announcement-bar { font-size: 11px; letter-spacing: 0.01em; height: 32px; }
  .navbar { top: 32px; }

  /* Hero */
  .hero-motto { white-space: normal !important; font-size: clamp(20px, 5.5vw, 30px) !important; }
  .hero-inner { padding: 96px 20px 72px !important; gap: 16px !important; }
  .hero-product-img { max-width: 240px !important; }

  /* Lineup: hide desktop, show carousel */
  .lineup-images-row { display: none !important; }
  .lineup-text-row { display: none !important; }
  #models > .site-container { padding-bottom: 0 !important; min-height: 0 !important; overflow: hidden; }
  .lineup-gray-area { padding-bottom: 0 !important; }
  #models .site-container > [style*="padding:96px"] { padding: 48px 20px 0 !important; }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr !important;
    margin-top: 40px !important;
    gap: 12px !important;
  }
  .why-card { grid-column: span 1 !important; padding: 24px 20px !important; }
  .why-card h3 { font-size: 16px; }
  .why-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 16px; }

  /* Shop grid — 2 col compact */
  .shop-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }
  .shop-grid .shop-card-image { aspect-ratio: 1 !important; }
  /* Cart recommended — 2 col compact grid */
  section [style*="auto-fill"] { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  section [style*="auto-fill"] .shop-card-image { aspect-ratio: 1 !important; }
  section [style*="auto-fill"] .shop-card-body { padding: 10px !important; }
  section [style*="auto-fill"] .shop-card-name { font-size: 12px !important; }
  section [style*="auto-fill"] .shop-card-desc { display: none !important; }
  section [style*="auto-fill"] .shop-card-price { font-size: 14px !important; }
  .shop-card-body { padding: 12px !important; }
  .shop-card-name { font-size: 13px !important; font-weight: 600; margin-bottom: 4px !important; line-height: 1.3; }
  .shop-card-desc { font-size: 11px !important; -webkit-line-clamp: 2; line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px !important; line-height: 1.4; }
  /* Shop grid: full-width add button */
  .shop-grid .shop-card-footer { flex-direction: column; align-items: stretch; gap: 8px; }
  .shop-grid .shop-card-price { font-size: 16px !important; font-weight: 700 !important; }
  .shop-grid .add-btn {
    width: 100% !important; height: 34px !important;
    border-radius: 10px !important; font-size: 0 !important; flex-shrink: 0;
  }
  .shop-grid .add-btn::before {
    content: 'Добави'; font-size: 12px; font-family: 'Inter', sans-serif;
    font-weight: 600; letter-spacing: 0.02em;
  }
  /* Non-grid shop card (cart recommended) */
  .shop-card-price { font-size: 15px !important; font-weight: 700 !important; }
  .shop-card-footer { align-items: center; }
  .add-btn { width: 30px !important; height: 30px !important; font-size: 18px !important; flex-shrink: 0; }
  /* Make reveals faster on mobile */
  .reveal { transition-duration: 0.45s !important; }

  /* Category sections */
  .category-section { padding: 40px 20px !important; }
  .category-title { font-size: 26px !important; }

  /* Configurator */
  .config-visual { position: static !important; }
  .product-page-nav { padding-top: 76px !important; font-size: 12px; }

  /* Specs */
  .specs-grid { grid-template-columns: 1fr 1fr !important; }
  .spec-item { padding: 20px 16px !important; }
  .spec-value { font-size: 22px !important; }
  .spec-label { font-size: 10px !important; }
  .spec-unit { font-size: 12px !important; }

  /* Cart */
  .cart-layout { padding: 20px 16px 80px !important; gap: 20px !important; }
  .cart-item { gap: 14px !important; padding: 14px !important; }
  .cart-item-image { width: 76px !important; height: 76px !important; }
  .cart-item-name { font-size: 14px !important; }
  .cart-item-meta { font-size: 12px !important; margin-bottom: 10px !important; }
  .cart-item-price { font-size: 15px !important; }
  .qty-btn { width: 26px !important; height: 26px !important; }
  .cart-summary { padding: 20px !important; }
  .cart-summary h3 { font-size: 20px !important; margin-bottom: 16px !important; }

  /* Page hero */
  .page-hero { padding: 110px 20px 52px !important; }
  .page-hero-title { font-size: clamp(30px, 8vw, 44px) !important; }
  .page-hero-sub { font-size: 15px !important; }

  /* About */
  .about-hero { padding: 110px 20px 72px !important; }
  .values-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; margin-top: 40px !important; }
  .value-card { padding: 20px !important; }
  .value-number { font-size: 36px !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  footer { padding: 40px 20px 28px !important; }
  .footer-brand { grid-column: 1 / -1; }

  /* Section padding */
  .section { padding: 56px 20px !important; }

  /* Configurator form spacing */
  .config-title { font-size: clamp(32px, 8vw, 44px) !important; }
  .config-price { letter-spacing: -0.02em; }
  .option-card { padding: 12px 14px !important; gap: 8px !important; }
  .option-card-label { font-size: 13px !important; }
  .option-card-price { font-size: 13px !important; }
  /* Option cards in a row when they have short text */
  .config-section { padding: 18px 0 !important; }
  /* Toggle option */
  .toggle-option { padding: 14px 0 !important; }
  /* In-box list compact */
  .inbox-list li { font-size: 12px !important; padding: 3px 0 !important; }
  /* Add to cart button */
  .add-to-cart-btn { margin-top: 20px !important; font-size: 15px !important; }
  /* Category section compact */
  .category-sub { font-size: 13px !important; margin-bottom: 24px !important; }

  /* Hero actions on mobile */
  .hero-actions { gap: 10px !important; }
}

@media (max-width: 480px) {
  /* Small phones */
  .shop-grid { gap: 8px !important; }
  .shop-card-desc { display: none !important; }
  .shop-card-body { padding: 10px !important; }

  /* Footer: single col */
  .footer-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* Values: single col */
  .values-grid { grid-template-columns: 1fr !important; }

  /* Cart: price below controls */
  .cart-item-bottom { flex-wrap: wrap; gap: 6px; }

  /* Hero: stack buttons */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-buy-btn { text-align: center; }
  .btn-ghost { justify-content: center; }

  /* Specs: 2 col tight */
  .spec-item { padding: 16px 12px !important; }
  .spec-value { font-size: 20px !important; }

  /* Config price */
  .config-price { font-size: 20px !important; margin-bottom: 24px !important; }
}

/* Safe area support for sticky ATC */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .satc-bar { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
}
