/* SMELO CAR PERFUMES — Luxury storefront */

:root {
  --bg-deep: #08080a;
  --bg-card: #111114;
  --bg-elevated: #1a1a1f;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dim: #8a7344;
  --text: #f5f0e8;
  --text-muted: #9a958c;
  --accent-ocean: #4ecdc4;
  --accent-rose: #e8a0b0;
  --border: rgba(201, 169, 98, 0.15);
  --glass: rgba(17, 17, 20, 0.75);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  min-width: 0;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.35em;
  color: var(--gold-light);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 120px;
  height: 2px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}

.loader__bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite;
}

.ambient__orb--1 {
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2), transparent 70%);
  top: -10%;
  right: -10%;
}

.ambient__orb--2 {
  width: 40vw;
  height: 40vw;
  max-width: 400px;
  max-height: 400px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.12), transparent 70%);
  bottom: 20%;
  left: -15%;
  animation-delay: -7s;
}

.ambient__orb--3 {
  width: 35vw;
  height: 35vw;
  max-width: 350px;
  max-height: 350px;
  background: radial-gradient(circle, rgba(232, 160, 176, 0.1), transparent 70%);
  bottom: -5%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

.header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo — see logo.css for .smelo-logo component */

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav a:hover {
  color: var(--gold-light);
}

.nav a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold-light);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.btn-icon:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
  transform: scale(1.05);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--gold-light);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold-light);
}

/* Main layout */
main {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section--compact {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.section__label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__content {
  order: 2;
}

@media (min-width: 900px) {
  .hero__content { order: 1; }
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__title-accent {
  display: inline-block;
  white-space: nowrap;
}

.hero__text {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}

.hero__visual {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 100%;
  max-width: min(100%, 460px);
  min-height: 400px;
  margin-inline: auto;
  padding: 3rem 2.25rem 2rem;
  overflow: visible;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .hero__visual { order: 2; }
}

.hero__bottle {
  width: min(320px, 75vw);
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
  animation: bottleFloat 6s ease-in-out infinite;
  position: relative;
}

.hero-bottle {
  --hb-glass-border: rgba(232, 213, 163, 0.22);
  --hb-wood-1: #f0e2c8;
  --hb-wood-2: #d4b888;
  --hb-wood-3: #9a7848;
  width: min(320px, 75vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
  will-change: transform;
}

.hero-bottle__string {
  width: 1px;
  height: 4.5rem;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0), rgba(201, 169, 98, 0.9));
  flex-shrink: 0;
}

.hero-bottle__ring {
  width: 1.1rem;
  height: 1.1rem;
  margin: -0.15rem auto 0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.7);
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.2);
  background: rgba(10, 10, 10, 0.2);
  flex-shrink: 0;
}

.hero-bottle__cap {
  position: relative;
  width: 5.4rem;
  height: 1.35rem;
  margin: 0 auto;
  flex-shrink: 0;
  border-radius: 0.9rem 0.9rem 0.42rem 0.42rem;
  background: linear-gradient(180deg, rgba(236, 200, 84, 0.98), rgba(117, 87, 21, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 246, 199, 0.36), 0 12px 26px rgba(201, 169, 98, 0.22);
  z-index: 2;
}

.hero-bottle__cap::before {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  top: 42%;
  height: 2px;
  border-radius: 2px;
  background: rgba(80, 60, 35, 0.4);
}

.hero-bottle__cap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -0.55rem;
  width: 2px;
  height: 0.55rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(232, 213, 163, 0.9), rgba(168, 132, 82, 0.95));
}

.hero-bottle__shell {
  position: relative;
  width: 100%;
  margin-top: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 2.2rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.03) 100%),
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.22), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset -18px -30px 42px rgba(0, 0, 0, 0.18),
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 56px rgba(201, 169, 98, 0.14);
  backdrop-filter: blur(18px);
}

.hero-bottle__shell::before {
  content: '';
  position: absolute;
  inset: 0.7rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  pointer-events: none;
}

.hero-bottle__glass {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(201, 169, 98, 0.18);
  min-height: 15.2rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset -18px -26px 42px rgba(0, 0, 0, 0.16), 0 20px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(120%);
}

.hero-bottle__glass::before {
  content: '';
  position: absolute;
  inset: 0.62rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.hero-bottle__liquid-wrap {
  position: absolute;
  inset: 0.8rem;
  border-radius: 1.35rem;
  overflow: hidden;
}

.hero-bottle__liquid-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(108%);
}

.hero-bottle__sheen {
  position: absolute;
  top: 0.8rem;
  left: -36%;
  width: 42%;
  height: 82%;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04));
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: glassShine 8.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-bottle__brand {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  color: rgba(245, 240, 232, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-bottle__sm {
  font-family: var(--font-display);
  font-size: 2.15rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  line-height: 1;
}

.hero-bottle__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.2rem;
  color: rgba(245, 240, 232, 0.92);
}

.hero-bottle__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  opacity: 0.75;
  margin-top: 0.18rem;
}

.hero-bottle__bubble {
  position: absolute;
  bottom: 18%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(245, 236, 196, 0.28);
  box-shadow: 0 0 7px rgba(201, 169, 98, 0.18);
  z-index: 1;
  pointer-events: none;
}

.hero-bottle__bubble--one {
  left: 32%;
  animation: bubbleRise 5.6s ease-in-out infinite;
}

.hero-bottle__bubble--two {
  left: 62%;
  width: 0.35rem;
  height: 0.35rem;
  animation: bubbleRise 6.2s ease-in-out infinite 1.3s;
}

@keyframes glassShine {
  0% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(42%); opacity: 0.7; }
  100% { transform: translateX(0); opacity: 0.45; }
}

@keyframes bubbleRise {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(-38px); opacity: 0.65; }
}

.hero__ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringRotate 30s linear infinite;
  pointer-events: none;
}

.hero__ring::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: var(--bg-deep);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.35);
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--gold-light);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.06);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn--ghost {
  color: var(--text-muted);
  padding: 0.5rem 1rem;
}

.btn--ghost:hover {
  color: var(--gold-light);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.65rem;
}

.btn--danger {
  background: rgba(220, 80, 80, 0.15);
  color: #e88;
  border: 1px solid rgba(220, 80, 80, 0.3);
}

.btn--danger:hover {
  background: rgba(220, 80, 80, 0.25);
}

/* Scroll reveal — base; enhanced in animations.css */
.reveal.visible {
  opacity: 1;
}

/* Shared 3-column info strips (features + highlights) */
.strip-cards {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, #0e1018 0%, var(--bg-card) 100%);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (min-width: 600px) {
  .strip-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strip-cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  min-height: 100%;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  transition: background 0.35s ease;
}

.strip-cards__item:last-child {
  border-bottom: none;
}

@media (min-width: 600px) {
  .strip-cards__item {
    padding: 1.85rem 1rem;
    border-bottom: none;
    border-right: 1px solid rgba(201, 169, 98, 0.28);
  }

  .strip-cards__item:last-child {
    border-right: none;
  }
}

.strip-cards__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--gold);
}

.strip-cards__icon svg {
  width: 100%;
  height: 100%;
}

.strip-cards__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--gold-light);
  margin: 0;
  line-height: 1.2;
}

.strip-cards__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  max-width: 14rem;
}

.strip-cards__stat {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin: 0.1rem 0;
}

/* Products */
.products__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium 2-product feature layout */
.products__grid.products__grid--feature {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .products__grid.products__grid--feature {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }
}

.product-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 520px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.6s var(--ease-out), border-color 0.35s;
}

.product-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.35);
}

.product-feature__bg {
  position: absolute;
  inset: 0;
  grid-row: 1 / -1;
  grid-column: 1;
  opacity: 0.92;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 45%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,0.16), transparent 50%);
}

.product-feature--blush .product-feature__bg {
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.26), transparent 48%),
    linear-gradient(135deg, rgba(255, 162, 190, 0.55), rgba(255, 120, 165, 0.25) 55%, rgba(17, 17, 20, 0.92));
}

.product-feature--ocean .product-feature__bg {
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.22), transparent 48%),
    linear-gradient(135deg, rgba(120, 210, 255, 0.45), rgba(78, 205, 196, 0.18) 55%, rgba(17, 17, 20, 0.92));
}

.product-feature__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-feature__hanger {
  position: absolute;
  top: -6px;
  left: 18%;
  width: 64px;
  height: 180px;
  border-left: 6px solid rgba(232, 213, 163, 0.55);
  border-right: 6px solid rgba(232, 213, 163, 0.25);
  transform: skewX(-8deg);
  filter: blur(0.2px);
  opacity: 0.75;
}

.product-feature__img {
  position: absolute;
  bottom: -18px;
  left: 2%;
  width: min(320px, 56%);
  max-width: 340px;
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.55));
  transform: rotate(-2deg);
  transition: transform 0.8s var(--ease-out);
}

.product-feature--ocean .product-feature__img {
  left: auto;
  right: 2%;
  transform: rotate(2deg);
}

.product-feature:hover .product-feature__img {
  transform: translateY(-6px) rotate(0deg) scale(1.02);
}

.product-feature__content {
  position: relative;
  z-index: 2;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 420px;
}

.product-feature--ocean .product-feature__content {
  margin-left: auto;
  text-align: left;
}

.product-feature__brand {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-feature__badge {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  background: rgba(201, 169, 98, 0.14);
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--gold-light);
}

.product-feature__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
}

.product-feature__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  line-height: 1.05;
}

.product-feature__desc {
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.98rem;
  max-width: 38ch;
}

.product-feature__pricewrap {
  margin-top: 0.25rem;
}

.product-feature__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gold-light);
  backdrop-filter: blur(12px);
}

.product-feature--blush .product-feature__price {
  background: rgba(255, 120, 165, 0.22);
  border-color: rgba(255, 255, 255, 0.22);
}

.product-feature--ocean .product-feature__price {
  background: rgba(78, 205, 196, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-feature__bullets {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-top: 0.6rem;
  padding: 0;
  color: rgba(245, 240, 232, 0.86);
  font-size: 0.9rem;
}

.product-feature__bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: center;
}

.pf-ico {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.pf-ico svg {
  width: 20px;
  height: 20px;
}

.product-feature__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

@media (max-width: 520px) {
  .product-feature {
    min-height: 560px;
  }
  .product-feature__content {
    padding: 1.8rem 1.4rem;
    max-width: none;
  }
  .product-feature__img {
    width: 60%;
    bottom: -22px;
  }
}

/* Corrected product-card composition: bottle centered in media stage */
.product-feature {
  display: grid;
  grid-template-rows: 340px auto;
  min-height: 0;
}

.product-feature__media {
  position: relative;
  inset: auto;
  z-index: 1;
  grid-row: 1;
  min-height: 340px;
  margin: 1.6rem 1.6rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.24), transparent 58%),
    rgba(8, 8, 10, 0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.product-feature__content {
  grid-row: 2;
}

.product-feature__hanger {
  display: none;
}

.product-feature__img,
.product-feature--ocean .product-feature__img {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  max-width: min(380px, 100%);
  max-height: min(300px, 100%);
  transform: none;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
}

.product-feature:hover .product-feature__img,
.product-feature--ocean:hover .product-feature__img {
  transform: translateY(-8px) scale(1.04);
}

.product-feature__content,
.product-feature--ocean .product-feature__content {
  max-width: none;
  margin-left: 0;
  padding-bottom: 1.3rem;
}

.product-feature__actions {
  position: relative;
  z-index: 3;
}

@media (max-width: 520px) {
  .product-feature {
    grid-template-rows: 310px auto;
  }

  .product-feature__media {
    min-height: 310px;
    margin: 1rem 1rem 0;
    padding: 1rem;
  }

  .product-feature__img,
  .product-feature--ocean .product-feature__img {
    max-width: min(320px, 100%);
    max-height: min(270px, 100%);
  }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  group: product;
}

.product-card:hover:not(.is-tilting) {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
}

.product-card__image-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 50%
  );
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.product-card:hover .product-card__shine {
  transform: translateX(100%);
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.product-card__notes {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.product-card__actions {
  display: flex;
  gap: 0.5rem;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about__lead {
  margin-top: 1.25rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
}

.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.about__visual {
  position: relative;
  padding: 3rem;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
}

.about__visual::before {
  content: 'S';
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(201, 169, 98, 0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 2rem 1.5rem 2rem 3.5rem;
  border-left: 1px solid var(--border);
}

.step__num {
  position: absolute;
  left: 0;
  top: 2rem;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* How to use */
.how-to-use__header {
  margin-bottom: 2.5rem;
}

.use-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: use-step;
}

@media (min-width: 600px) {
  .use-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .use-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .use-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.use-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 100%;
  transition: border-color 0.35s, transform 0.5s var(--ease-out);
}

.use-step:hover {
  border-color: rgba(201, 169, 98, 0.45);
  transform: translateY(-4px);
}

.use-step__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-deep);
  background: var(--gold);
  border-radius: 50%;
  line-height: 1;
}

.use-step__diagram {
  width: 6.5rem;
  height: 8.5rem;
  margin: 0.5rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-bottle-defs {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

/* SMELO square-bottle SVG component */
.use-bottle {
  width: 100%;
  height: 100%;
  --bottle-liquid: #45c9be;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.use-bottle--blush {
  --bottle-liquid: #e8b4a8;
}

.use-bottle-svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
  overflow: visible;
}

.use-svg__liquid {
  fill: var(--bottle-liquid);
}

.use-svg__arrow {
  display: none;
}

.use-svg__arrow--up,
.use-svg__arrow--down {
  display: none;
}

.use-bottle--s1 .use-svg__arrow--up,
.use-bottle--s2 .use-svg__arrow--up,
.use-bottle--s3 .use-svg__arrow--down {
  display: block;
}

.use-bottle--s1 .use-svg__cap-assembly {
  animation: useCapLift 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: 50px 34px;
}

.use-bottle--s2 .use-svg__plug {
  animation: useCapLift 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: 50px 26px;
}

.use-bottle--s4 .use-svg__tilt {
  transform: rotate(40deg);
  transform-origin: 50px 72px;
}

.use-bottle--s5 .use-svg__hang-string {
  pointer-events: none;
}

.use-bottle--s5 .use-svg__string-loop {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.use-step__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 14rem;
}

.use-step__text strong {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@keyframes useCapLift {
  0%,
  100% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer__social {
  margin-top: 1.25rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__social-link:hover {
  color: var(--gold-light);
}

.footer__social-link svg {
  flex-shrink: 0;
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: fabPulse 3s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6); }
}

/* Cart drawer */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 201;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  background: var(--bg-elevated);
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.cart-item__price {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
}

.qty-control button {
  width: 32px;
  height: 32px;
  color: var(--gold-light);
  transition: background 0.2s;
}

.qty-control button:hover {
  background: rgba(201, 169, 98, 0.1);
}

.qty-control span {
  width: 36px;
  text-align: center;
  font-size: 0.9rem;
}

.cart-item__remove {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: block;
}

.cart-item__remove:hover {
  color: #e88;
}

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.cart-total span:last-child {
  color: var(--gold-light);
}

/* Checkout modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s var(--ease-out);
}

.modal.open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.modal__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.modal__actions .btn {
  width: 100%;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 400;
  padding: 0.85rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Product detail quick view */
.quick-view {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.quick-view.open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .quick-view {
    align-items: center;
    padding: 2rem;
  }
}

.quick-view__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.quick-view__panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.quick-view.open .quick-view__panel {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .quick-view__panel {
    grid-template-columns: 1fr 1fr;
    transform: translateY(40px);
  }
  .quick-view.open .quick-view__panel {
    transform: translateY(0);
  }
}

.quick-view__image {
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elevated);
}

.quick-view__content {
  padding: 2rem;
}

.quick-view__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

/* ========== ADMIN STYLES ========== */
.admin-page {
  min-height: 100vh;
  background: var(--bg-deep);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-login__card {
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.admin-login__card h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-align: center;
}

.admin-login__card p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.admin-dashboard {
  display: none;
}

.admin-dashboard.active {
  display: block;
}

.admin-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-nav button {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.3s;
}

.admin-nav button.active,
.admin-nav button:hover {
  color: var(--gold-light);
  border-color: var(--border);
  background: rgba(201, 169, 98, 0.06);
}

.admin-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2rem);
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
  animation: fadeUp 0.5s var(--ease-out);
}

.admin-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.admin-table td {
  color: var(--text-muted);
}

.admin-table img {
  width: 48px;
  height: 60px;
  object-fit: cover;
}

.admin-table .actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .admin-form .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.admin-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.image-preview {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-top: 0.5rem;
  background: var(--bg-elevated);
}

.admin-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.config-display {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--gold);
  word-break: break-all;
}

.hidden {
  display: none !important;
}

/* Mobile layout fixes */
@media (max-width: 899px) {
  .header {
    padding: 0 0.85rem;
  }

  .header__inner {
    gap: 0.5rem;
  }

  .header__actions {
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .hero__grid {
    gap: 2rem;
  }

  .hero__title {
    font-size: clamp(2rem, 9.5vw, 2.85rem);
    line-height: 1.08;
  }

  .hero__title-accent {
    white-space: normal;
  }

  .hero__text {
    font-size: 1rem;
    max-width: none;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-bottle,
  .hero__bottle {
    width: min(280px, 72vw);
  }

  .hero__visual {
    min-height: 360px;
    padding: 2.5rem 1.5rem 1.75rem;
  }

  .section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .products__header {
    margin-bottom: 2rem;
  }

  .fab-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .header {
    padding: 0 0.65rem;
  }

  .smelo-logo-img--compact {
    width: 112px;
  }

  .btn-icon,
  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8.8vw, 2.35rem);
  }

  .hero__eyebrow {
    letter-spacing: 0.32em;
    font-size: 0.62rem;
  }

  .container {
    padding: 0 0.85rem;
  }

  .section__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .mobile-nav a {
    font-size: 1.65rem;
  }

  .product-feature__media {
    margin: 0.85rem 0.85rem 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
