/* ══════════════════════════════════════════════
   YOLYSSE — Fine Jewellery
   style.css  v2.0
   Full Light + Dark Mode · All Fixes Applied
══════════════════════════════════════════════ */

/* ─── DARK MODE (DEFAULT) ─── */
:root,
html[data-theme="dark"] {
  --gold: #C9943A;
  --gold-light: #E8C068;
  --gold-pale: #F5DFA0;
  --gold-dark: #8B6520;

  --bg: #0A0905;
  --black: #0A0905;
  --dark: #111008;
  --dark-2: #1A1710;
  --dark-3: #232018;
  --dark-card: #1E1B12;

  --border: rgba(201, 148, 58, 0.22);
  --border-light: rgba(201, 148, 58, 0.10);

  --text: #E8DCC8;
  --text-muted: #8C8070;
  --text-dim: #5C5245;
  --white: #FAF7F0;

  --navbar-bg: rgba(10, 9, 5, 0.82);
  --navbar-scrolled: rgba(10, 9, 5, 0.97);
  --search-bg: rgba(26, 23, 16, 0.98);
  --search-border: rgba(201, 148, 58, 0.25);

  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  color-scheme: dark;
}

/* ─── LIGHT MODE ─── */
html[data-theme="light"] {
  --bg: #FAF6EE;
  --black: #FAF6EE;
  --dark: #F5F0E8;
  --dark-2: #EDE7D8;
  --dark-3: #E3DBCA;
  --dark-card: #FFFFFF;

  --border: rgba(150, 110, 40, 0.22);
  --border-light: rgba(150, 110, 40, 0.12);

  --text: #2A220E;
  --text-muted: #6B5A3E;
  --text-dim: #9B8A6E;
  --white: #1A1208;

  --navbar-bg: rgba(250, 246, 238, 0.88);
  --navbar-scrolled: rgba(250, 246, 238, 0.98);
  --search-bg: rgba(237, 231, 216, 0.98);
  --search-border: rgba(150, 110, 40, 0.25);

  color-scheme: light;
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--gold);
  color: #0A0905;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.announcement-bar span {
  display: inline-block;
  animation: marquee-slow 30s linear infinite;
}
@keyframes marquee-slow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(14px, 4vw, 48px);
  height: 72px;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition), top var(--transition);
  gap: 12px;
  width: 100%;
  max-width: 100vw;
  overflow: clip;
}
.navbar.scrolled {
  top: 0;
  background: var(--navbar-scrolled);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.nav-right { margin-left: auto; flex-wrap: nowrap; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,148,58,0.4));
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

.nav-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
  position: relative;
  flex-shrink: 0;
}
.nav-icon:hover { color: var(--gold-light); background: var(--border-light); }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0905;
  font-size: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 1px;
  background: var(--text-muted);
  transition: var(--transition);
}

/* ─── SEARCH BAR ─── */
.search-bar-wrap {
  position: fixed;
  top: calc(36px + 72px);
  left: 0; right: 0;
  z-index: 999;
  background: var(--search-bg);
  border-bottom: 1px solid var(--search-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s ease;
}
.navbar.scrolled ~ .search-bar-wrap {
  top: 72px;
}
.search-bar-wrap.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px clamp(14px, 4vw, 48px);
  max-width: 700px;
  margin: 0 auto;
}
.search-bar-inner svg { color: var(--text-muted); flex-shrink: 0; }
.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
}
.search-input::placeholder { color: var(--text-dim); }
.search-close-btn {
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.search-close-btn:hover { color: var(--gold-light); }

.search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(82vw, 320px);
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 2000;
  padding: 40px 36px;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.mobile-menu nav a {
  font-size: 24px;
  font-family: var(--font-display);
  font-style: italic;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu nav a:hover { color: var(--gold-light); }
.mobile-logo { width: 56px; height: 56px; object-fit: contain; }
.close-menu { color: var(--text-muted); font-size: 20px; align-self: flex-end; margin-bottom: 8px; }

/* ─── SIDEBAR THEME SWITCH ─── */
.sidebar-theme-switch {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.sidebar-theme-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.theme-sun-icon, .theme-moon-icon { font-size: 14px; }

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.toggle-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-track {
  width: 46px; height: 26px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 13px;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.toggle-switch input:checked + .toggle-track {
  background: var(--gold-dark);
  border-color: var(--gold);
}
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform var(--transition), background var(--transition);
}
.toggle-switch input:checked + .toggle-track .toggle-thumb {
  transform: translateX(20px);
  background: var(--gold-light);
}

.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.menu-overlay.show { opacity: 1; pointer-events: all; }

/* ─── CART OVERLAY ─── */
.cart-overlay-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay-backdrop.show { opacity: 1; pointer-events: all; }

.cart-overlay {
  position: fixed;
  top: 0; right: -100%;
  width: min(88vw, 400px);
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cart-overlay.open { right: 0; }

.cart-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border-light);
}
.cart-overlay-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.cart-overlay-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}
.cart-overlay-close {
  color: var(--text-muted);
  font-size: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background var(--transition);
}
.cart-overlay-close:hover { color: var(--gold-light); background: var(--border-light); }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}
.cart-empty-icon {
  font-size: 40px;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.cart-empty-state p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
}
.cart-empty-state span { font-size: 13px; color: var(--text-dim); }

/* Cart Item Row */
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item-img {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: var(--dark-3);
  flex-shrink: 0;
  overflow: hidden;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 13px;
  color: var(--gold-light);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.cart-item-qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: color var(--transition), border-color var(--transition);
}
.cart-item-qty button:hover { color: var(--gold-light); border-color: var(--gold); }

.cart-overlay-footer {
  padding: 20px 28px 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}
.cart-total-price {
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  font-family: var(--font-display);
}
.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
}
.cart-secure-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0A0905;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,148,58,0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--gold-light);
  padding: 13px 28px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,148,58,0.06);
  color: var(--gold-pale);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 80px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,148,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,148,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,148,58,0.10) 0%, transparent 70%);
  top: -150px; left: -80px;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,192,104,0.07) 0%, transparent 70%);
  bottom: 0; right: 200px;
}
html[data-theme="light"] .hero-orb-1 {
  background: radial-gradient(circle, rgba(201,148,58,0.07) 0%, transparent 70%);
}
html[data-theme="light"] .hero-orb-2 {
  background: radial-gradient(circle, rgba(201,148,58,0.05) 0%, transparent 70%);
}

.hero-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 420px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-float-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.float-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 220px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: float-bob 6s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -3s; align-self: flex-end; }
.float-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(201,148,58,0.12);
}
.float-card img { width: 220px; height: 180px; object-fit: cover; }
.float-card-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.float-price { color: var(--gold-light); font-weight: 400; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── REVEAL ANIMATIONS (lightweight) ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.reveal:nth-child(1) { animation-delay: 0.1s; }
.reveal:nth-child(2) { animation-delay: 0.22s; }
.reveal:nth-child(3) { animation-delay: 0.36s; }
.reveal:nth-child(4) { animation-delay: 0.50s; }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  animation: reveal-right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.55s;
}
@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }
@keyframes reveal-right { to { opacity: 1; transform: translateX(0); } }

/* ─── PILLARS ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--dark-2);
}
.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--border-light);
  text-align: center;
  transition: background var(--transition);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201,148,58,0.04); }
.pillar-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ─── SECTION COMMONS ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-sub { font-size: 14px; color: var(--text-muted); max-width: 400px; margin: 0 auto; }

/* ─── PRODUCTS SECTION ─── */
.products-section {
  padding: 100px 80px;
  background: var(--dark);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* PRODUCT CARD — "Add to Cart" in info area, NOT on image */
.product-card {
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark-3);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: #0A0905;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 2;
}
.new-badge { background: var(--dark-3); color: var(--gold-light); border: 1px solid var(--border); }

.wishlist-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(10,9,5,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: color var(--transition), background var(--transition);
}
html[data-theme="light"] .wishlist-btn { background: rgba(250,246,238,0.7); }
.wishlist-btn:hover { color: var(--gold); }

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.product-category {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  min-height: 2.4em;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price { font-size: 16px; font-weight: 400; color: var(--gold-light); }
.product-og-price { font-size: 13px; color: var(--text-dim); text-decoration: line-through; }
.product-stars { font-size: 12px; color: var(--gold); }
.product-stars span { color: var(--text-dim); margin-left: 4px; }

/* Add to Cart button — inside info, below price, revealed on hover */
.product-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold-light);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-top: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition), border-color var(--transition), color var(--transition);
  width: 100%;
}
.product-card:hover .product-add-btn {
  opacity: 1;
  transform: translateY(0);
}
.product-add-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0905;
}

.section-cta { text-align: center; margin-top: 56px; }

/* ─── FEATURE SPLIT ─── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.feature-split-rev { direction: rtl; }
.feature-split-rev > * { direction: ltr; }
.feature-split-img { position: relative; overflow: hidden; }
.feature-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-split:hover .feature-split-img img { transform: scale(1.03); }
.feature-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--dark-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.feature-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 480px;
}
.feature-list { margin-bottom: 40px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ─── MARQUEE ─── */
.marquee-section {
  overflow: hidden;
  padding: 24px 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.marquee-track .dot { color: var(--gold); font-size: 10px; letter-spacing: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── LIFESTYLE GRID ─── */
.lifestyle-section {
  padding: 100px 80px;
  background: var(--black);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
}
.lifestyle-img {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.lifestyle-img.tall { grid-row: span 2; }
.lifestyle-img.wide { grid-column: span 2; }
.lifestyle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lifestyle-img:hover img { transform: scale(1.05); }

/* Shop this look — at BOTTOM of image (not center), pill style */
.lifestyle-hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(10,9,5,0.78) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity var(--transition);
}
html[data-theme="light"] .lifestyle-hover {
  background: linear-gradient(to top, rgba(20,15,5,0.65) 0%, transparent 100%);
}
.lifestyle-img:hover .lifestyle-hover { opacity: 1; }
.shop-look-btn {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-pale);
  border: 1px solid rgba(201,148,58,0.4);
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(10,9,5,0.55);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.shop-look-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0905;
}

/* ─── ABOUT ─── */
.about-section {
  padding: 120px 80px;
  background: var(--dark-2);
  border-top: 1px solid var(--border-light);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-logo-wrap { display: flex; justify-content: center; align-items: center; }
.about-logo-wrap img {
  width: 180px; height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201,148,58,0.2));
  animation: logo-pulse 4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(201,148,58,0.15)); }
  50% { filter: drop-shadow(0 0 60px rgba(201,148,58,0.35)); }
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}
.about-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.about-text .btn-ghost { margin-top: 12px; }

/* ─── TESTIMONIALS — SLIDER (no horizontal scroll) ─── */
.testimonials-section {
  padding: 100px 80px;
  background: var(--dark);
  overflow: hidden;
}
.testimonials-slider-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.testimonials-slider {
  position: relative;
}
.testimonial-slide {
  display: none;
  animation: t-fade-in 0.45s ease;
}
.testimonial-slide.active { display: block; }
@keyframes t-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: #0A0905;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); }
.reviewer span { font-size: 12px; color: var(--text-dim); }

.testimonial-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.testimonial-nav > button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.testimonial-nav > button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,148,58,0.06);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  padding: 0;
}
.t-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
  padding: 100px 80px;
  background: var(--dark-2);
  border-top: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,148,58,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-logo {
  width: 52px; height: 52px;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 16px rgba(201,148,58,0.4));
  position: relative;
}
.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.newsletter-section p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}
.newsletter-form {
  display: flex;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.newsletter-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,58,0.1);
}
.newsletter-form input {
  flex: 1;
  padding: 15px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form button {
  background: var(--gold);
  color: #0A0905;
  padding: 15px 26px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note { margin-top: 16px !important; font-size: 11px !important; color: var(--text-dim) !important; position: relative; }

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: 100px 80px;
  background: var(--dark);
  border-top: 1px solid var(--border-light);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 400;
}
.contact-detail-item span { font-size: 14px; color: var(--text-muted); }

/* Contact Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 40px;
  text-align: center;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-form-success.show { display: flex; }
.contact-form-success .success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0905;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}
.contact-form-success p { color: var(--text-muted); font-size: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,58,0.08);
}
.contact-submit-btn {
  align-self: flex-start;
  min-width: 180px;
  justify-content: center;
}
.contact-form-note { font-size: 11px; color: var(--text-dim); }

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-light);
  padding: 80px 80px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand img {
  width: 44px; height: 44px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(201,148,58,0.3));
}
.footer-brand span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 240px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-socials a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201,148,58,0.06);
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 13px; color: var(--text-dim); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--text-dim); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }
.footer-payments { display: flex; gap: 8px; }
.footer-payments span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ─── CART TOAST ─── */
.cart-toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  z-index: 4000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-icon {
  width: 22px; height: 22px;
  background: var(--gold);
  color: #0A0905;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), border-color var(--transition);
  z-index: 100;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── TABLET / MEDIUM ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid var(--border-light); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .search-bar-wrap { top: calc(36px + 72px); }
  .navbar.scrolled ~ .search-bar-wrap { top: 72px; }

  .hero {
    flex-direction: column;
    padding: 140px 28px 60px;
    gap: 40px;
    align-items: flex-start;
  }
  .hero-float-cards { flex-direction: row; width: 100%; }
  .float-card { width: calc(50% - 10px); }
  .float-card img { height: 130px; }
  .hero-scroll-hint { left: 28px; }

  .feature-split {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feature-split-img { height: 320px; }
  .feature-split-content { padding: 56px 28px; }
  .feature-split-rev { direction: ltr; }

  .products-section, .lifestyle-section, .about-section,
  .testimonials-section, .newsletter-section, .footer,
  .contact-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .lifestyle-img.tall { grid-row: span 1; }
  .lifestyle-img.wide { grid-column: span 2; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-logo-wrap img { width: 120px; height: 120px; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .contact-inner { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .announcement-bar { font-size: 10px; }
  .navbar { padding: 0 12px; }
  .nav-right { gap: 4px; }
  .logo-text { font-size: 12px; letter-spacing: 0.14em; }
  .logo-img { width: 34px; height: 34px; }
  .nav-icon { width: 34px; height: 34px; }
  .hamburger { width: 34px; height: 34px; }

  .search-bar-inner { padding: 14px 16px; }

  .hero { padding: 130px 20px 50px; }
  .hero-title { font-size: 42px; }
  .hero-float-cards { flex-direction: column; }
  .float-card { width: 100%; max-width: 280px; }
  .hero-scroll-hint { left: 20px; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; padding: 36px 24px; }

  .products-grid { grid-template-columns: 1fr; }
  .products-section, .lifestyle-section, .about-section,
  .testimonials-section, .newsletter-section, .footer,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .lifestyle-img { height: 240px; }
  .lifestyle-img.tall, .lifestyle-img.wide { grid-row: span 1; grid-column: span 1; height: 240px; }

  .testimonials-section { padding: 72px 20px; }
  .testimonial-card { padding: 28px 22px; }
  .testimonial-card p { font-size: 16px; }

  .newsletter-section { padding: 72px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; border-radius: 0; }
  .newsletter-form { border-radius: var(--radius); }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding-left: 20px; padding-right: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .contact-section { padding: 72px 20px; }
  .contact-form { padding: 24px 20px; }
  .contact-submit-btn { width: 100%; }

  .cart-overlay { width: 100%; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* Reduce motion for accessibility + low-end perf */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1s !important;
  }
}
