@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==============================
   FARAH - ESTILOS GENERALES
   Puedes editar colores aquí.
================================= */

:root {
  --bg: #070504;
  --bg-2: #120c08;
  --cream: #fff3db;
  --muted: #cbb995;
  --gold: #d7a84b;
  --gold-2: #f7d98a;
  --rose: #a8503b;
  --line: rgba(247, 217, 138, .22);
  --card: rgba(255, 243, 219, .075);
  --shadow: 0 30px 90px rgba(0, 0, 0, .55);
  --radius: 30px;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', "Segoe UI", system-ui, -apple-system, sans-serif;
  --nav-height: 82px;
  --nav-retract: -62px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 8%, rgba(215,168,75,.2), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(168,80,59,.18), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(117,72,27,.28), transparent 40%),
    linear-gradient(135deg, var(--bg), var(--bg-2) 50%, #050302);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(7,5,4,.82), rgba(7,5,4,.42));
  border-bottom: 1px solid rgba(255,255,255,.06);
  /* Smooth transition for retracting and styling changes */
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Nav scroll states */
.nav.nav-scrolled {
  background: rgba(7, 5, 4, 0.96);
  border-bottom: 1px solid rgba(247, 217, 138, 0.16);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav.nav-hidden {
  transform: translateY(var(--nav-retract));
  border-bottom: 1px solid rgba(247, 217, 138, 0.28);
}

/* Reveal when hovered over the visible sliver */
.nav.nav-hidden:hover {
  transform: translateY(0);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-img {
  width: 168px;
  height: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.15) contrast(1.05) drop-shadow(0 14px 32px rgba(0,0,0,.38));
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,243,219,.78);
  font-size: .92rem;
}

.nav-links a {
  transition: .25s ease;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  transition: .25s ease;
  white-space: nowrap;
}

.nav-cta {
  padding: 12px 17px;
  border: 1px solid rgba(247,217,138,.38);
  background: rgba(255,243,219,.06);
  color: var(--gold-2);
}

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

.btn {
  border: 0;
  cursor: pointer;
  padding: 15px 22px;
  font-weight: 800;
  letter-spacing: .03em;
}

.btn-primary {
  background: linear-gradient(135deg, #fff1ad, var(--gold), #94601e);
  color: #211106;
  box-shadow: 0 18px 42px rgba(215,168,75,.22);
}

.btn-ghost {
  color: var(--cream);
  background: rgba(255,243,219,.07);
  border: 1px solid rgba(255,243,219,.13);
}

/* HOME */

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 74px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 54px;
  align-items: center;
}

.hero-logo-card {
  width: min(360px, 78vw);
  margin-bottom: 28px;
  padding: 18px 22px;
  border-radius: 26px;
  border: 1px solid rgba(247,217,138,.18);
  background: rgba(255,243,219,.06);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.26);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-card img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.15) contrast(1.05);
  mix-blend-mode: screen;
}

.eyebrow,
.kicker {
  color: var(--gold-2);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(247,217,138,.28);
  background: rgba(255,243,219,.055);
  padding: 10px 15px;
  border-radius: 999px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8.5vw, 8.8rem);
  line-height: .84;
  letter-spacing: -.075em;
  margin-bottom: 26px;
}

h1 .soft {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,217,138,.75);
  letter-spacing: -.04em;
  margin-left: 8px;
}

.hero-copy {
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: rgba(255,243,219,.78);
  max-width: 650px;
  line-height: 1.85;
  margin-bottom: 32px;
}

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

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.arch {
  position: absolute;
  width: min(500px, 90vw);
  height: 620px;
  border-radius: 260px 260px 34px 34px;
  border: 1px solid rgba(247,217,138,.32);
  background:
    linear-gradient(180deg, rgba(255,243,219,.1), rgba(255,243,219,.025)),
    radial-gradient(circle at 50% 25%, rgba(247,217,138,.16), transparent 42%),
    linear-gradient(135deg, rgba(38,20,12,.95), rgba(9,6,4,.7));
  box-shadow: var(--shadow);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease, box-shadow 0.6s ease;
}

.arch.moving {
  transition: transform 0.15s ease-out, border-color 0.6s ease, box-shadow 0.6s ease;
}


.hero-product {
  position: relative;
  width: min(430px, 84vw);
  border-radius: 35px;
  overflow: hidden;
  border: 1px solid rgba(247,217,138,.22);
  box-shadow: var(--shadow);
  animation: float 5.4s ease-in-out infinite;
}

.hero-product img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.section {
  padding: 92px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.045em;
  max-width: 780px;
}

.section-text {
  color: rgba(255,243,219,.68);
  line-height: 1.8;
  max-width: 440px;
}

/* MARCAS */

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

.brand-card {
  min-height: 156px;
  border-radius: 24px;
  border: 1px solid rgba(247,217,138,.14);
  background:
    radial-gradient(circle at 80% 20%, rgba(247,217,138,.12), transparent 36%),
    rgba(255,243,219,.055);
  padding: 20px;
  transition: .28s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 80% 20%, rgba(247,217,138,.21), transparent 36%),
    rgba(255,243,219,.095);
  border-color: rgba(247,217,138,.34);
}

.brand-card small {
  color: rgba(247,217,138,.75);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .68rem;
}

.brand-card strong {
  display: block;
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  letter-spacing: -.03em;
}

.brand-card span {
  display: block;
  color: rgba(255,243,219,.58);
  margin-top: 6px;
  font-size: .88rem;
}

/* PRODUCTOS */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  border: 1px solid rgba(247,217,138,.18);
  background:
    radial-gradient(circle at 72% 16%, rgba(247,217,138,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,243,219,.1), rgba(255,243,219,.035));
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-rows: 1.08fr auto;
  box-shadow: var(--shadow);
  transition: .32s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(247,217,138,.38);
}

.product-media {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #160d07;
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .7s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.055);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 48%, rgba(7,5,4,.78)),
    radial-gradient(circle at 50% 14%, transparent 0 42%, rgba(7,5,4,.26) 72%);
  pointer-events: none;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #251307;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff1ad, var(--gold), #94601e);
}

.product-info {
  padding: 28px;
}

.product-brand {
  color: var(--gold-2);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-info h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: .95;
  letter-spacing: -.045em;
  margin-bottom: 16px;
}

.product-info p {
  color: rgba(255,243,219,.72);
  line-height: 1.78;
  margin-bottom: 18px;
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.product-note {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(0,0,0,.2);
  color: rgba(255,243,219,.76);
  font-size: .86rem;
}

.occasion {
  color: rgba(247,217,138,.82);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product-price {
  display: grid;
  gap: 4px;
}

.product-price small {
  color: rgba(255,243,219,.5);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-price strong {
  color: var(--gold-2);
  font-size: 1.18rem;
}

/* CATALOGO */

.catalog-hero {
  padding: 76px 0 42px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,243,219,.66);
  border: 1px solid rgba(247,217,138,.18);
  background: rgba(255,243,219,.045);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .9rem;
  margin-bottom: 28px;
}

.hero-panel {
  border: 1px solid rgba(247,217,138,.18);
  background:
    radial-gradient(circle at 75% 12%, rgba(247,217,138,.18), transparent 32%),
    linear-gradient(135deg, rgba(255,243,219,.105), rgba(255,243,219,.035));
  border-radius: 38px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,243,219,.78);
  line-height: 1.8;
  max-width: 720px;
}

.brand-count {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(247,217,138,.3);
  background: radial-gradient(circle, rgba(247,217,138,.15), rgba(7,5,4,.62));
}

.brand-count strong {
  display: block;
  color: var(--gold-2);
  font-size: 3.2rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.brand-count span {
  color: rgba(255,243,219,.62);
  font-size: .86rem;
  line-height: 1.4;
}

.brand-tabs {
  padding: 10px 0 34px;
}

.tab-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  /* Firefox Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(247, 217, 138, 0.05);
}

/* Chrome, Safari, Edge, Opera Scrollbars for brand tab row */
.tab-row::-webkit-scrollbar {
  height: 6px;
}

.tab-row::-webkit-scrollbar-track {
  background: rgba(247, 217, 138, 0.05);
  border-radius: 999px;
}

.tab-row::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--gold), #94601e);
  border-radius: 999px;
  border: 1px solid rgba(247, 217, 138, 0.1);
}

.tab-row::-webkit-scrollbar-thumb:hover {
  background: var(--gold-2);
}

/* Estilos globales de la barra de desplazamiento (Scrollbar) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), #94601e);
  border-radius: 999px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-2);
}

.brand-tab {
  border: 1px solid rgba(247,217,138,.18);
  background: rgba(255,243,219,.055);
  color: rgba(255,243,219,.76);
  padding: 12px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: .25s ease;
}

.brand-tab:hover,
.brand-tab.active {
  background: rgba(215,168,75,.16);
  color: var(--gold-2);
  border-color: rgba(247,217,138,.38);
}

.empty-state {
  border: 1px solid rgba(247,217,138,.18);
  background:
    radial-gradient(circle at 78% 12%, rgba(247,217,138,.14), transparent 30%),
    rgba(255,243,219,.055);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
  min-height: 360px;
  display: grid;
  align-items: center;
  box-shadow: var(--shadow);
}

.empty-state h3 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

.empty-state p {
  color: rgba(255,243,219,.7);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 24px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(247,217,138,.13);
  padding: 30px 0;
  color: rgba(255,243,219,.58);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .92rem;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 72px;
    --nav-retract: -57px; /* Leaves 15px visible on mobile */
  }

  .nav-inner {
    height: var(--nav-height);
  }

  .logo-img {
    width: 128px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: .82rem;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-stage {
    min-height: 420px;
  }

  .arch {
    height: 430px;
  }

  .hero-product img {
    height: 390px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .product-media,
  .product-media img {
    min-height: 330px;
  }

  .product-info {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* =========================================================
   FARAH BOUTIQUE - NUEVAS SECCIONES: ROPA Y ACCESORIOS
   ========================================================= */

.boutique-hero .hero-copy {
  max-width: 720px;
}

.boutique-stage {
  min-height: 610px;
}

.boutique-stack {
  position: relative;
  width: min(520px, 90vw);
  height: 560px;
}

.boutique-stack.moving {
  transition: transform 0.15s ease-out;
}

.boutique-tile {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(247,217,138,.16);
  box-shadow: 0 15px 45px rgba(0,0,0,.45);
  background: rgba(255,243,219,.06);
}

.boutique-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.boutique-tile:hover img {
  transform: scale(1.08);
}

.boutique-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(7,5,4,.82));
}

.boutique-tile span {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tile-perfume {
  width: 320px;
  height: 420px;
  left: 0;
  top: 40px;
  transform: rotate(-5deg);
  z-index: 1;
}

.tile-fashion {
  width: 300px;
  height: 390px;
  right: 0;
  bottom: 20px;
  transform: rotate(6deg);
  z-index: 3;
}

.tile-accessories {
  width: 290px;
  height: 380px;
  left: 110px;
  top: 90px;
  transform: rotate(-1deg);
  z-index: 2;
}

/* =========================================================
   ESTILOS PREMIUM 3D (Solo para dispositivos de alto rendimiento)
   ========================================================= */

.boutique-stage.animations-enabled {
  perspective: 1200px;
}

.boutique-stage.animations-enabled .boutique-stack {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.boutique-stage.animations-enabled .boutique-tile {
  border-color: rgba(247,217,138,.22);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: 
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.boutique-stage.animations-enabled .tile-perfume {
  transform: rotate(-5deg) translateZ(30px);
}

.boutique-stage.animations-enabled .tile-fashion {
  transform: rotate(6deg) translateZ(60px);
}

.boutique-stage.animations-enabled .tile-accessories {
  transform: rotate(-1deg) translateZ(90px);
}

/* Efectos de Hover interactivos (Solo para dispositivos que soportan hover de mouse) */
@media (hover: hover) {
  .boutique-stage.animations-enabled .boutique-stack:hover .tile-perfume {
    transform: translate(-40px, -20px) rotate(-9deg) translateZ(40px);
  }

  .boutique-stage.animations-enabled .boutique-stack:hover .tile-fashion {
    transform: translate(40px, 20px) rotate(9deg) translateZ(80px);
  }

  .boutique-stage.animations-enabled .boutique-stack:hover .tile-accessories {
    transform: translate(0, -10px) rotate(2deg) translateZ(120px);
  }

  /* Hover individual tile */
  .boutique-stage.animations-enabled .boutique-stack .boutique-tile:hover {
    z-index: 10;
    border-color: rgba(247, 217, 138, 0.6);
    opacity: 1 !important;
    filter: none !important;
  }

  .boutique-stage.animations-enabled .tile-perfume:hover {
    transform: translate(-20px, -25px) rotate(-3deg) translateZ(140px) scale(1.05) !important;
    box-shadow: 0 40px 90px rgba(247, 217, 138, 0.45), 0 0 30px rgba(247, 217, 138, 0.15);
  }

  .boutique-stage.animations-enabled .tile-fashion:hover {
    transform: translate(20px, 25px) rotate(3deg) translateZ(160px) scale(1.05) !important;
    box-shadow: 0 40px 90px rgba(168, 80, 59, 0.4), 0 0 30px rgba(168, 80, 59, 0.15);
  }

  .boutique-stage.animations-enabled .tile-accessories:hover {
    transform: translate(0, -25px) rotate(0deg) translateZ(180px) scale(1.05) !important;
    box-shadow: 0 40px 90px rgba(150, 120, 190, 0.45), 0 0 30px rgba(150, 120, 190, 0.15);
  }

  /* Blur & fade non-hovered items */
  .boutique-stage.animations-enabled .boutique-stack:has(.boutique-tile:hover) .boutique-tile:not(:hover) {
    opacity: 0.45;
    filter: blur(4px) grayscale(25%);
  }
}


.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 360px;
  border-radius: 34px;
  border: 1px solid rgba(247,217,138,.18);
  padding: 30px;
  background:
    radial-gradient(circle at 80% 16%, rgba(247,217,138,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,243,219,.1), rgba(255,243,219,.035));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,217,138,.2), transparent 68%);
}

.category-card:hover {
  transform: translateY(-7px);
  border-color: rgba(247,217,138,.38);
}

.category-card small {
  display: block;
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

.category-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: .94;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

.category-card p {
  color: rgba(255,243,219,.7);
  line-height: 1.75;
}

.category-card > span {
  color: var(--gold-2);
  font-weight: 900;
  margin-top: 30px;
}

.category-fashion {
  background:
    radial-gradient(circle at 78% 18%, rgba(168,80,59,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,243,219,.1), rgba(255,243,219,.035));
}

.category-accessories {
  background:
    radial-gradient(circle at 78% 18%, rgba(150,120,190,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,243,219,.1), rgba(255,243,219,.035));
}

.category-sprays {
  background:
    radial-gradient(circle at 78% 18%, rgba(38, 166, 154, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 243, 219, 0.1), rgba(255, 243, 219, 0.035));
}

.split-brand-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.mini-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  color: var(--gold-2);
}

.fashion-card .product-brand {
  color: var(--gold-2);
}

.detail-label {
  color: rgba(255,243,219,.52);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.fashion-card .product-notes {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .category-grid,
  .split-brand-layout {
    grid-template-columns: 1fr;
  }

  .boutique-stage {
    min-height: 500px;
  }

  .boutique-stack {
    height: 480px;
  }

  .tile-perfume {
    width: 280px;
    height: 360px;
  }

  .tile-fashion {
    width: 260px;
    height: 340px;
  }

  .tile-accessories {
    width: 250px;
    height: 330px;
    left: 95px;
    top: 70px;
  }
}

@media (max-width: 640px) {
  .category-card {
    min-height: 280px;
  }

  .boutique-stack {
    width: 100%;
    height: 450px;
  }

  .tile-perfume {
    width: 210px;
    height: 290px;
    left: 0;
    top: 10px;
    transform: rotate(-5deg) translateZ(20px);
  }

  .tile-accessories {
    width: 200px;
    height: 280px;
    left: calc(50% - 100px);
    top: 70px;
    transform: rotate(2deg) translateZ(40px);
  }

  .tile-fashion {
    width: 190px;
    height: 270px;
    right: 0;
    bottom: 10px;
    transform: rotate(6deg) translateZ(60px);
  }
}

/* =========================================================
   FARAH BOUTIQUE - CARRITO DE CONSULTAS Y SELECTORES
   ========================================================= */

/* Botón flotante */
.cart-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1ad, var(--gold), #94601e);
  border: 1px solid rgba(247, 217, 138, 0.4);
  box-shadow: 0 10px 30px rgba(215, 168, 75, 0.35);
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 35px rgba(215, 168, 75, 0.5);
}

.cart-float-btn:active {
  transform: scale(0.95);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #a8503b; /* --rose */
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #070504; /* --bg */
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Drawer / Panel lateral */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  transition: opacity 0.4s ease;
}

.cart-drawer-content {
  position: absolute;
  top: 0;
  right: -450px;
  width: min(450px, 100vw);
  height: 100%;
  background: linear-gradient(180deg, #120c08, #070504);
  border-left: 1px solid rgba(247, 217, 138, 0.15);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open .cart-drawer-content {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(247, 217, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold-2);
  letter-spacing: -0.02em;
}

.cart-close-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.cart-close-btn:hover {
  color: var(--gold-2);
}

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

.cart-empty-message {
  text-align: center;
  color: var(--muted);
  margin-top: 40px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Item de Carrito */
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  background: rgba(255, 243, 219, 0.04);
  border: 1px solid rgba(247, 217, 138, 0.08);
  padding: 12px;
  border-radius: 16px;
  transition: border-color 0.2s;
}

.cart-item:hover {
  border-color: rgba(247, 217, 138, 0.2);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(247, 217, 138, 0.15);
  background: #160d07;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}

.cart-item-brand {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-2);
}

.cart-item-meta {
  font-size: 0.8rem;
  color: rgba(255, 243, 219, 0.6);
}

.cart-item-meta span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-remove {
  background: transparent;
  border: 0;
  color: rgba(168, 80, 59, 0.7); /* --rose semi-transparent */
  cursor: pointer;
  padding: 8px;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.cart-item-remove:hover {
  color: #a8503b;
  transform: scale(1.15);
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-2);
  margin-top: 2px;
}

.cart-total-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed rgba(247, 217, 138, 0.2);
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 0.95rem;
}

.cart-total-container strong {
  color: var(--gold-2);
  font-size: 1.25rem;
  font-family: Georgia, serif;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(247, 217, 138, 0.1);
  background: rgba(7, 5, 4, 0.5);
}

.btn-full {
  width: 100%;
  font-size: 1rem;
}

/* Selectores interactivos en las tarjetas */
.size-select-btn,
.color-select-btn {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 243, 219, 0.76);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin: 3px;
  display: inline-block;
}

.size-select-btn:hover,
.color-select-btn:hover {
  border-color: rgba(247, 217, 138, 0.5);
  color: var(--gold-2);
}

.size-select-btn.active,
.color-select-btn.active {
  background: rgba(215, 168, 75, 0.16);
  color: var(--gold-2);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(215, 168, 75, 0.2);
  font-weight: bold;
}

/* =========================================================
   FARAH BOUTIQUE - SOBREESCRITURAS DE TIPOGRAFÍA Y CARRUSEL
   ========================================================= */

/* Override general para títulos elegantes */
h1, h2, h3, .mini-title, .brand-card strong, .brand-count strong, .empty-state h3, .cart-drawer-header h3 {
  font-family: var(--font-title);
}

/* Carrusel de imágenes en tarjetas */
.product-media-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-media-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-media-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botones de navegación del carrusel */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(7, 5, 4, 0.75);
  border: 1px solid rgba(247, 217, 138, 0.2);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: monospace;
  font-size: 1.2rem;
  user-select: none;
}

.gallery-nav:hover {
  background: rgba(215, 168, 75, 0.85);
  color: #211106;
  border-color: var(--gold);
}

.gallery-nav.prev {
  left: 12px;
}

.gallery-nav.next {
  right: 12px;
}

/* Mostrar botones al pasar el cursor sobre la tarjeta */
.product-card:hover .gallery-nav {
  opacity: 1;
  visibility: visible;
}

/* Puntos indicadores */
.gallery-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  background: rgba(7, 5, 4, 0.5);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 243, 219, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-dot:hover {
  background: rgba(247, 217, 138, 0.8);
}

.gallery-dot.active {
  background: var(--gold-2);
  width: 18px;
  border-radius: 4px;
}

/* =========================================================
   FARAH BOUTIQUE - MENÚ MÓVIL RESPONSIVO (HAMBURGUESA)
   ========================================================= */

/* Botón Hamburguesa */
.menu-toggle-btn {
  display: none; /* Oculto por defecto en desktop */
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 25;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(247, 217, 138, 0.15);
  background: rgba(255, 243, 219, 0.04);
  transition: all 0.25s ease;
}

.menu-toggle-btn:hover {
  border-color: rgba(247, 217, 138, 0.4);
  background: rgba(255, 243, 219, 0.08);
}

.menu-toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--gold-2);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animación de aspas al abrir el menú */
.menu-toggle-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer del Menú Móvil */
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 150; /* Mayor que sticky nav y cart float */
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-menu-drawer.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  transition: opacity 0.4s ease;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: -320px;
  width: min(320px, 85vw);
  height: 100%;
  background: linear-gradient(180deg, #120c08, #070504);
  border-right: 1px solid rgba(247, 217, 138, 0.15);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 30px 24px;
}

.mobile-menu-drawer.open .mobile-menu-content {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 26px;
  flex: 1;
}

.mobile-menu-links a {
  font-family: var(--font-title);
  font-size: 1.82rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: all 0.25s ease;
  display: inline-block;
  width: fit-content;
}

.mobile-menu-links a:hover {
  color: var(--gold-2);
  transform: translateX(5px);
}

.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid rgba(247, 217, 138, 0.1);
  padding-top: 24px;
}

/* Reglas Responsivas de Interfaz */
@media (max-width: 980px) {
  .menu-toggle-btn {
    display: flex; /* Mostrar en móviles */
  }

  .nav-inner .nav-cta {
    display: none; /* Ocultar CTA estática de la cabecera en móvil */
  }
}

/* =========================================================
   FARAH BOUTIQUE - BUSCADOR DE CATÁLOGO
   ========================================================= */

.catalog-filters {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-end;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.search-input-wrapper::before {
  content: "🔍";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.6;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px 14px 44px;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--gold-2);
  background: rgba(255, 243, 219, 0.1);
  box-shadow: 0 0 0 3px rgba(247, 217, 138, 0.1);
}

.search-input::placeholder {
  color: rgba(255, 243, 219, 0.5);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

/* =========================================================
   FARAH BOUTIQUE - SCROLL TO TOP
   ========================================================= */

.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--gold-2);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(247, 217, 138, 0.3);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
