/* ═══════════════════════════════════════
   Beautiful by Denisse — Main Styles
   Palette: Noir + Rose Gold + Blush Cream
═══════════════════════════════════════ */

:root {
  --noir: #0D0A0B;
  --noir-soft: #1A1318;
  --rose-gold: #C4956A;
  --rose-gold-light: #D4AA86;
  --rose-gold-pale: #E8D4C0;
  --blush: #FADADD;
  --blush-deep: #EDD9CC;
  --cream: #FDE8EC;
  --white: #FFF5F7;
  --pink-accent: #D4557A;
  --pink-light: #F0C0D0;
  --text-dark: #1A1318;
  --text-mid: #5A4A44;
  --text-light: #8C7A74;
  --border: rgba(196,149,106,0.2);
  --border-strong: rgba(196,149,106,0.4);
  --shadow-sm: 0 2px 12px rgba(13,10,11,0.06);
  --shadow-md: 0 8px 32px rgba(13,10,11,0.10);
  --shadow-lg: 0 20px 60px rgba(13,10,11,0.14);
  --radius: 2px;
  --radius-lg: 8px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Bodoni Moda', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.3rem; font-weight: 500; }
em { font-style: italic; color: var(--rose-gold); }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { color: var(--text-light); margin-top: 0.75rem; font-size: 1.05rem; }
.section-tag {
  display: block; margin: 0 auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
  position: relative;
  padding: 0 1rem;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--rose-gold);
  transform: translateY(-50%);
}
.section-tag::before { right: 100%; margin-right: -0.5rem; }
.section-tag::after { left: 100%; margin-left: -0.5rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--noir);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--noir);
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--noir);
  color: var(--cream);
  padding: 1.25rem 2rem;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-banner.show { display: flex; }
.cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
}
.cookie-content p { font-size: 0.85rem; flex: 1; min-width: 200px; }
.cookie-content a { color: var(--rose-gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 0.5rem 1.5rem;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid var(--rose-gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--rose-gold-light); }
.btn-cookie-reject {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.5); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(253,251,249,0.96);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 3rem;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--white);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--text-dark); }
.logo-beautiful {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
}
.logo-by {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--rose-gold-light);
  margin: 0 0.15rem;
}
.logo-denisse {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--rose-gold-light); }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--rose-gold); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.9);
  padding: 0.4rem;
  transition: color var(--transition);
}
#navbar.scrolled .cart-btn { color: var(--text-dark); }
.cart-btn:hover { color: var(--rose-gold); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink-accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,10,11,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-header button { color: var(--text-mid); transition: color var(--transition); }
.cart-header button:hover { color: var(--text-dark); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 1rem;
  color: var(--text-light);
}
.cart-empty svg { opacity: 0.3; }
.cart-empty p { font-size: 0.9rem; }
.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.25rem; font-family: 'Jost', sans-serif; }
.cart-item-info .price { font-size: 0.85rem; color: var(--rose-gold); font-weight: 500; }
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.qty-num { font-size: 0.85rem; width: 24px; text-align: center; }
.cart-item-remove { color: var(--text-light); font-size: 0.75rem; margin-left: auto; transition: color var(--transition); }
.cart-item-remove:hover { color: var(--pink-accent); }
.cart-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.cart-total span:last-child { font-weight: 600; font-size: 1.1rem; color: var(--rose-gold); }
.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: #003087;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.btn-checkout:hover:not(:disabled) { background: #0040B0; transform: translateY(-1px); }
.btn-checkout:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── HERO ── */
  .hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #d63384 0%, #e91e8c 40%, #f06292 70%, #f48fb1 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 3rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(196,149,106,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(212,85,122,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rose-gold);
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em { color: var(--rose-gold-light); }
.hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-ctas .btn-ghost { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.hero-ctas .btn-ghost:hover { color: var(--rose-gold-light); border-color: var(--rose-gold); }
.hero-image {
  position: relative;
  flex-shrink: 0;
  margin-left: 4rem;
}
.hero-img-frame {
  width: 420px;
  height: 580px;
  overflow: hidden;
  position: relative;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  right: 40px; bottom: 40px;
  border: 1px solid rgba(196,149,106,0.25);
  z-index: 1;
  pointer-events: none;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--rose-gold);
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(196,149,106,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rose-gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ── SERVICIOS ── */
.servicios { background: var(--cream); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.servicio-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.servicio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.servicio-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #F5EDE6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicio-img img {
  width: 290px !important;
  height: 280px !important;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}
.servicio-card:hover .servicio-img img { transform: scale(1.03); }
.servicio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,11,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.servicio-body { padding: 1.75rem; }
.servicio-body h3 { margin-bottom: 0.75rem; }
.servicio-body p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.servicio-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  transition: var(--transition);
}
.servicio-link:hover { letter-spacing: 0.2em; }

/* ── TIENDA ── */
.tienda { background: var(--white); }
.tienda-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  color: var(--text-mid);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}
.productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.producto-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.producto-card:hover { transform: translateY(-4px); }
.producto-card:hover .producto-img img { transform: scale(1.05); }
.producto-img {
  height: 500px;
  overflow: hidden;
  background: var(--blush);
  position: relative;
}
.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.producto-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-nuevo { background: var(--noir); color: var(--white); }
.badge-oferta { background: var(--pink-accent); color: var(--white); }
.producto-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--noir);
  color: var(--white);
  padding: 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.producto-card:hover .producto-add-btn { transform: translateY(0); }
.producto-body { padding: 1.1rem; }
.producto-cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.35rem;
}
.producto-body h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.producto-price { font-weight: 600; font-size: 1rem; color: var(--text-dark); }
.producto-price .original {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.85rem;
  margin-right: 0.35rem;
}

/* ── SOBRE MÍ ── */
.sobre-mi { background: var(--blush); }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-image {
  position: relative;
}
.sobre-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
}
.sobre-years {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--noir);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}
.years-num {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.years-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.4;
}
.sobre-content { padding: 2rem 0; }
.sobre-content h2 { margin-bottom: 1rem; }
.sobre-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.sobre-content > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; color: var(--text-mid); text-transform: uppercase; }

/* ── GALERÍA ── */
.galeria { background: var(--white); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: var(--border);
}
.galeria-item {
  overflow: hidden;
  position: relative;
  height: 280px;
}
.galeria-item.grande {
  grid-row: span 2;
  height: auto;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galeria-item:hover img { transform: scale(1.06); }
.galeria-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 0.75rem;
  background: linear-gradient(to top, rgba(13,10,11,0.7) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.galeria-item:hover .galeria-label { opacity: 1; transform: translateY(0); }

/* ── RESEÑAS ── */
.resenas { background: var(--cream); }
.resenas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.resena-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.resena-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars { color: var(--rose-gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.resena-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.resena-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blush-deep);
  color: var(--rose-gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resena-author strong { display: block; font-size: 0.85rem; font-weight: 600; font-family: 'Jost', sans-serif; }
.resena-author span { font-size: 0.75rem; color: var(--text-light); }
.resenas-cta { text-align: center; }

/* ── CONTACTO ── */
.contacto { background: var(--white); }
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contacto-info h2 { margin-bottom: 1rem; }
.contacto-info > p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 2.5rem; }
.contacto-detalles { display: flex; flex-direction: column; gap: 1.5rem; }
.detalle {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detalle-icon {
  width: 44px;
  height: 44px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-gold);
}
.detalle div { display: flex; flex-direction: column; gap: 0.2rem; }
.detalle strong { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.detalle span, .detalle a { font-size: 0.92rem; color: var(--text-dark); transition: color var(--transition); }
.detalle a:hover { color: var(--rose-gold); }
.contacto-form-wrap {
  background: var(--cream);
  padding: 3rem;
}
.contacto-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-strong);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-legal {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}
.form-legal a { color: var(--rose-gold); text-decoration: underline; }

/* ── MAPA ── */
.mapa-section iframe { display: block; filter: grayscale(20%) contrast(1.05); }

/* ── FOOTER ── */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.footer-links h4, .footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--rose-gold-light); }
.footer-contact p, .footer-contact a {
  display: block;
  font-size: 0.85rem;
  line-height: 1.7;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--rose-gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── LEGAL PAGES ── */
.legal-page { padding: 8rem 0 5rem; min-height: 80vh; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page .updated { color: var(--text-light); font-size: 0.82rem; margin-bottom: 2.5rem; }
.legal-page h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.legal-page p, .legal-page li { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ── ADMIN LINK (hidden) ── */
.admin-link {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  color: transparent;
  z-index: 1;
}
.admin-link:hover { color: var(--text-light); }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1100px) {
  .productos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #navbar { padding: 1rem 1.5rem; }
  #navbar.scrolled { padding: 0.85rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--noir);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; color: var(--white); }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding: 8rem 1.5rem 4rem; text-align: center; min-height: auto; }
  .hero-image { margin-left: 0; margin-top: 3rem; }
  .hero-img-frame { width: 100%; max-width: 360px; height: 440px; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-scroll { display: none; }
  .servicios-grid { grid-template-columns: 1fr; }
  .sobre-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-years { right: 1rem; bottom: 1rem; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contacto-form-wrap { padding: 2rem; }
  .resenas-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .galeria-item.grande { grid-row: span 1; height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.25rem 1.5rem; }
}
@media (max-width: 600px) {
  .section { padding: 5rem 0; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .sobre-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-badge { right: 0; bottom: 1rem; padding: 1rem; }
}

/* ── FARMASI BUTTONS ── */
.hero-farmasi {
  display: block !important;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,149,106,0.3);
}
.farmasi-label {
  display: block !important;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}
.hero-farmasi-btns {
  display: flex !important;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.btn-farmasi {
  display: inline-flex !important;
  align-items: center;
  padding: 0.8rem 1.8rem;
  background: var(--rose-gold);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--rose-gold);
  text-decoration: none;
  transition: var(--transition);
}
.btn-farmasi:hover {
  background: var(--rose-gold-light);
  transform: translateY(-1px);
}
.btn-farmasi-outline {
  display: inline-flex !important;
  align-items: center;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(196,149,106,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.btn-farmasi-outline:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold-light) !important;
  transform: translateY(-1px);
}

/* ── FIX HERO HEIGHT ── */
.hero {
  min-height: 100vh !important;
  height: auto !important;
  overflow: visible !important;
  padding-bottom: 5rem !important;
}
.hero-content {
  overflow: visible !important;
}

/* ── HERO ROSA ── */
.hero {
  background: linear-gradient(135deg, #c2185b 0%, #e91e8c 35%, #f06292 65%, #f8bbd0 100%) !important;
}
.hero-title { color: #fff !important; }
.hero-title em { color: #fff !important; }
.hero-subtitle { color: rgba(255,255,255,0.85) !important; }
.hero-tag { color: #fff !important; }
.hero-tag::before { background: #fff !important; }
.hero-scroll { color: rgba(255,255,255,0.6) !important; }
.scroll-line { background: rgba(255,255,255,0.4) !important; }
.scroll-line::after { background: #fff !important; }

/* ── SECCIONES ROSA MÁS INTENSO ── */
:root {
  --white: #FFD6E0 !important;
  --cream: #FFB3C6 !important;
  --blush: #FF8FAB !important;
}

/* ── BOTÓN RESEÑAS GOOGLE ── */
.btn-resenas {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: #fff;
  color: #c2185b;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #c2185b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(194,24,91,0.15);
}
.btn-resenas:hover {
  background: #c2185b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,24,91,0.3);
}
