/* ══════════════════════════════════════════════════════
   PREZENSA — Parfum de Luxe
   Dual Mode: Gentlemen (dark) ↔ Ladies (light)
   Typog: Playfair Display + Outfit
   ══════════════════════════════════════════════════════ */

/* ── SHARED TOKENS ────────────────────────────────── */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-italic: 'Cormorant', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 2px;
  --radius-lg: 6px;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-mode: background 0.7s var(--easing), color 0.7s var(--easing), border-color 0.7s var(--easing);
}

/* ── GENTLEMEN MODE ───────────────────────────────── */
[data-mode="gent"] {
  --bg:            #0B0B0E;
  --bg-2:          #111116;
  --surface:       #16161C;
  --surface-2:     #1E1E26;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(192,151,61,0.25);
  --text:          #EAE2D4;
  --text-muted:    #6A6058;
  --text-dim:      #403830;
  --accent:        #C09B3D;
  --accent-rgb:    192,155,61;
  --accent-soft:   rgba(192,155,61,0.1);
  --accent-hover:  #D4AE52;
  --accent-2:      #1C304E;
  --glow:          0 0 80px rgba(192,155,61,0.06);
  --glow-strong:   0 0 120px rgba(192,155,61,0.15);
  --splash-bg:     #07070A;
  --hero-overlay:  linear-gradient(to right, rgba(11,11,14,0.85) 40%, rgba(11,11,14,0.2));
}

/* ── LADIES MODE ──────────────────────────────────── */
[data-mode="lady"] {
  --bg:            #F8F2EB;
  --bg-2:          #F2EAE0;
  --surface:       #FEF8F2;
  --surface-2:     #F0E8DC;
  --border:        rgba(60,30,20,0.09);
  --border-accent: rgba(194,139,106,0.3);
  --text:          #2A1C16;
  --text-muted:    #9E7E6E;
  --text-dim:      #D4C0B0;
  --accent:        #C28B6A;
  --accent-rgb:    194,139,106;
  --accent-soft:   rgba(194,139,106,0.1);
  --accent-hover:  #A8724E;
  --accent-2:      #F0E0D0;
  --glow:          0 0 80px rgba(194,139,106,0.1);
  --glow-strong:   0 0 120px rgba(194,139,106,0.2);
  --splash-bg:     #F8F2EB;
  --hero-overlay:  linear-gradient(to right, rgba(248,242,235,0.9) 40%, rgba(248,242,235,0.2));
}

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.5rem, 6vw, 4rem); }

/* ── LANG VISIBILITY ──────────────────────────────── */
[data-lang="pt"] .txt-en { display: none; }
[data-lang="en"] .txt-pt { display: none; }

/* ── SHARED TYPOGRAPHY ────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.section-header.centered { text-align: center; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-lux {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-lux:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),0.25);
}
.btn-lux--full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════════════════════════════
   SPLASH SCREEN
   ══════════════════════════════════════════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--splash-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s var(--easing), visibility 0.9s;
}
.splash.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.splash__inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }

.splash__logo-wrap { width: 48px; height: 64px; color: var(--accent); }
.splash__path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawPath 1.8s var(--easing) 0.3s forwards;
}
@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

.splash__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.6s forwards;
}
.splash__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0;
  animation: fadeUp 0.8s ease 2s forwards;
}
.splash__lang {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.3s forwards;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.splash__lang-btn {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.3s;
}
.splash__lang-btn.active, .splash__lang-btn:hover { color: var(--accent); }

.splash__enter {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 0.7s ease 2.6s forwards;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.splash__enter:hover { color: var(--accent); }
.splash__enter-line {
  width: 1px;
  height: 40px;
  background: var(--accent);
  opacity: 0.4;
  animation: growLine 2s ease-in-out 2.8s infinite;
  transform-origin: top;
}
@keyframes growLine { 0%,100% { transform: scaleY(0); opacity: 0; } 50% { transform: scaleY(1); opacity: 0.6; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
/* NEW */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.6rem clamp(1.5rem, 6vw, 4rem);
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}
.nav__center { display: flex; justify-content: center; }
.nav__right   { display: flex; align-items: center; gap: 1.25rem; justify-content: flex-end; }
.nav.scrolled {
  background: var(--bg);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 1px 0 var(--border);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--text);
}

/* .nav__center { position: absolute; left: 50%; transform: translateX(-50%); } */
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
}
.mode-btn {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.mode-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.mode-sep { color: var(--text-dim); font-size: 0.7rem; }

/* .nav__right { display: flex; align-items: center; gap: 1.25rem; } */
.lang-toggle {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  transition: all 0.3s;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }

.cart-trigger {
  position: relative;
  color: var(--text);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color 0.3s;
}
.cart-trigger:hover { border-color: var(--accent); color: var(--accent); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.55rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--easing);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.35s var(--easing);
}
/* NEW */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  z-index: 3;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity   0.25s ease,
              width     0.3s ease;
  transform-origin: center;
}

/* X state */
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__scene {
  position: absolute;
  inset: 0;
  transition: opacity 1s var(--easing);
}
.hero__scene--gent { opacity: 1; }
.hero__scene--lady { opacity: 0; }
[data-mode="lady"] .hero__scene--gent { opacity: 0; }
[data-mode="lady"] .hero__scene--lady { opacity: 1; }
.hero__img { object-position: center; will-change: transform; }
.hero__fog {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
  transition: background 0.7s;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 4rem);
  max-width: 640px;
}
.hero__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero__title em { font-style: italic; color: var(--accent); display: block; }
.hero__title--lady { display: none; }
[data-mode="lady"] .hero__title--gent { display: none; }
[data-mode="lady"] .hero__title--lady { display: block; }

.hero__sub { font-size: 0.95rem; color: var(--text-muted); max-width: 420px; margin-bottom: 2.5rem; opacity: 0; }
.hero__sub--lady { display: none; }
[data-mode="lady"] .hero__sub--gent { display: none; }
[data-mode="lady"] .hero__sub--lady { display: block; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; right: clamp(1.5rem, 6vw, 4rem);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: pulseBar 2.5s ease-in-out infinite;
}
@keyframes pulseBar { 0%,100% { opacity: 0.3; } 50% { opacity: 0.9; } }

/* ══════════════════════════════════════════════════════
   FEATURED
   ══════════════════════════════════════════════════════ */
.featured {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.featured__header { margin-bottom: 4rem; }
.featured__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.featured__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.featured__visual img { transition: transform 0.9s var(--easing); }
.featured__visual:hover img { transform: scale(1.04); }
.featured__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(var(--accent-rgb),0.12) 0%, transparent 70%);
  pointer-events: none;
}
.featured__collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.featured__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.featured__accord {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.featured__note { font-size: 0.8rem; color: var(--accent); }
.featured__dot { color: var(--text-muted); }
.featured__desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.featured__price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2rem; }
.featured__price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--text); }
.featured__ml { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-muted); }
.featured__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   EXPLORADOR
   ══════════════════════════════════════════════════════ */
.explorador {
  padding: 8rem 0;
  background: var(--bg);
}
.explorador .section-header { margin-bottom: 3.5rem; }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-group { display: flex; flex-direction: column; gap: 0.75rem; }
.filter-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pill {
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.25s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
.pill.active { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  cursor: default;
}
.prod-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--glow-strong);
  transform: translateY(-4px);
}
.prod-card.hidden { display: none; }

.prod-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.prod-card__img-wrap img {
  transition: transform 0.8s var(--easing), filter 0.5s;
}
.prod-card:hover .prod-card__img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.prod-card__hover-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--easing);
}
.prod-card:hover .prod-card__hover-actions { opacity: 1; transform: none; }
.prod-card__detail-btn {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.3);
  transition: all 0.25s;
}
.prod-card__detail-btn:hover { background: rgba(var(--accent-rgb),0.6); border-color: var(--accent); }
.prod-card__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(var(--accent-rgb),0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.prod-card:hover .prod-card__glow { opacity: 1; }

.prod-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.prod-card__accord { display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; }
.prod-card__accord span { font-size: 0.7rem; color: var(--accent); }
.prod-card__accord .dot { color: var(--text-muted); font-size: 0.55rem; }
.prod-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.prod-card__tags { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 0.1rem; }
.prod-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.prod-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--text); }
.add-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.add-btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.add-btn.added { background: var(--accent); color: var(--bg); }

/* ══════════════════════════════════════════════════════
   OLFACTORY PYRAMID MODAL
   ══════════════════════════════════════════════════════ */
.pyramid-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s var(--easing);
}
.pyramid-overlay.open { opacity: 1; visibility: visible; }

.pyramid-modal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: min(95vw, 900px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  transition: transform 0.45s var(--easing);
}
.pyramid-overlay.open .pyramid-modal { transform: translate(-50%, -50%); }

.pyramid-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  z-index: 10;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.25s;
}
.pyramid-close:hover { border-color: var(--accent); color: var(--accent); }

.pyramid-modal__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 500px;
}
.pyramid-modal__img-wrap {
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.pyramid-modal__content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pyramid-modal__label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.pyramid-modal__name { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.pyramid-modal__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* Pyramid Visual */
.pyramid-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pyramid-tier {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  transition: background 0.3s;
}
.pyramid-tier + .pyramid-tier { border-top: 1px solid var(--border); }
.pyramid-tier--top    { background: rgba(var(--accent-rgb),0.04); }
.pyramid-tier--heart  { background: rgba(var(--accent-rgb),0.07); }
.pyramid-tier--base   { background: rgba(var(--accent-rgb),0.1); }
.pyramid-tier__label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.pyramid-tier__notes { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.pyramid-tier__notes span {
  font-size: 0.75rem;
  padding: 0.2rem 0.65rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
}

.pyramid-modal__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
}
.pyramid-modal__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); }

/* ══════════════════════════════════════════════════════
   A ARTE
   ══════════════════════════════════════════════════════ */
.arte {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}
.arte__bg { position: absolute; inset: 0; }
.arte__bg img { object-position: center; }
.arte__veil {
  position: absolute; inset: 0;
  background: var(--bg);
  opacity: 0.88;
  transition: background 0.7s;
}
.arte__content { position: relative; z-index: 2; max-width: 800px; }
.arte__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 2rem 0 3.5rem;
}
.arte__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.arte__pillar-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.arte__pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.arte__pillar p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.arte__pillar { padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* ══════════════════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════════════════ */
.contato {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contato__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contato__desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin: 1.75rem 0 2.5rem; }
.contato__details { display: flex; flex-direction: column; gap: 1rem; }
.contato__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  transition: all 0.3s;
  width: fit-content;
}
.contato__cta:hover { background: #1db857; transform: translateY(-1px); }
.contato__email { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--text-muted); transition: color 0.3s; }
.contato__email:hover { color: var(--accent); }

.contato__form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--accent); }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  padding: 5rem 0 2.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer__top { text-align: center; margin-bottom: 4rem; }
.footer__logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer__tagline { font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 0.85rem; letter-spacing: 0.12em; }
.footer__mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.footer__col { display: flex; flex-direction: column; gap: 1rem; }
.footer__col h5 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.footer__col a, .footer__lang-btn {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
  text-align: left;
}
.footer__col a:hover, .footer__lang-btn:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__craft { font-style: italic; }

/* ══════════════════════════════════════════════════════
   SIDE CART
   ══════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.side-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--easing);
}
.side-cart.open { transform: translateX(0); }

.side-cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
}
.side-cart__header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; }
.side-cart__close {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.25s;
}
.side-cart__close:hover { border-color: var(--accent); color: var(--accent); }

.side-cart__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; height: 100%; color: var(--text-muted); font-size: 0.85rem; text-align: center; }

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cart-item__name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 400; margin-bottom: 0.2rem; }
.cart-item__price { font-size: 0.8rem; color: var(--accent); }
.cart-item__remove {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.cart-item__remove:hover { color: #e05555; }

.side-cart__footer {
  padding: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-total strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--text); }
.cart-note { font-size: 0.72rem; text-align: center; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .featured__layout { grid-template-columns: 1fr; gap: 3rem; }
  .featured__visual { aspect-ratio: 16/9; max-height: 360px; }
  .arte__pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .contato__layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer__mid { grid-template-columns: 1fr 1fr; }
  .pyramid-modal__layout { grid-template-columns: 1fr; }
  .pyramid-modal__img-wrap { aspect-ratio: 16/9; max-height: 280px; border-right: none; border-bottom: 1px solid var(--border); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* .nav__center { display: none; } */
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.45s var(--easing);
    gap: 3rem;
  }
  .nav__menu.open { transform: none; }
  .nav__link { font-size: 1rem; }
  .nav__toggle { display: flex; }

  /* Show mode toggle in menu on mobile */
  .nav__menu::before {
    content: '';
  }

  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .filters { gap: 1.25rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .featured__actions { flex-direction: column; }
  .footer__mid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 0.35rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .pyramid-modal__content { padding: 2rem 1.5rem; }
}

/* Mode transition overlay */
.mode-transition-veil {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mode-transition-veil.flash { opacity: 0.6; }
