:root {
  --bg: #f4ece3;
  --ink: #16110e;
  --muted: #6d625a;
  --rose: #c45c7a;
  --gold: #c18e42;
  --bar: #120e0c;
  --surface: #fffaf4;
  --hours-h: 42px;
  --header-h: 192px;
  --logo-size: 158px;
  --chrome-h: calc(var(--hours-h) + var(--header-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  padding-top: var(--chrome-h);
  line-height: 1.55;
}
body.admin-body, body.login-body { padding-top: 0; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 94vw); margin-inline: auto; }

.hours-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  min-height: var(--hours-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bar);
}
.hours-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.22rem 0.4rem 0.22rem 0.9rem;
  background: #1c1613;
  color: #f7efe6;
  font-size: 0.82rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.hours-status {
  border: 0;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.hours-status.open { background: #15925a; }
.hours-status.closed { background: #b33a3a; }

.header {
  position: fixed;
  top: var(--hours-h);
  left: 0; right: 0;
  z-index: 1100;
  overflow: visible;
  background: transparent;
  border-bottom: 0;
}
.header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(100% + 96px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    #fffaf4 0%,
    rgba(255, 250, 244, 0.98) 42%,
    rgba(255, 250, 244, 0.65) 62%,
    rgba(255, 250, 244, 0.28) 78%,
    rgba(255, 250, 244, 0.06) 90%,
    transparent 100%
  );
}
.nav {
  display: grid;
  grid-template-columns: minmax(11rem, auto) 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  position: relative;
  width: 100%;
  padding: 0.5rem 2.4cm 0.55rem 0;
  column-gap: 0.55rem;
  overflow: visible;
}
.nav-hearts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
}
.nav-hearts::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(196, 92, 122, 0.08) 50%, transparent 62%);
  animation: navShine 8s ease-in-out infinite;
}
@keyframes navShine {
  0%, 100% { transform: translateX(-18%); opacity: 0.35; }
  50% { transform: translateX(18%); opacity: 0.85; }
}
.nav-hearts i {
  position: absolute;
  bottom: 4px;
  line-height: 1;
  pointer-events: none;
}
.nav-hearts i.heart {
  color: var(--rose);
  text-shadow: 0 0 10px rgba(196, 92, 122, 0.45);
  animation: floatHeart 8.4s ease-in-out infinite;
}
.nav-hearts i.kiss {
  animation: floatKiss 6.8s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(196, 92, 122, 0.35));
}
@keyframes floatHeart {
  0% { transform: translateY(6px) scale(0.72) rotate(-10deg); opacity: 0; }
  14% { opacity: 0.58; }
  55% { transform: translateY(-56px) scale(1.12) rotate(8deg); opacity: 0.38; }
  100% { transform: translateY(-118px) scale(1.28) rotate(-6deg); opacity: 0; }
}
@keyframes floatKiss {
  0% { transform: translate(0, 8px) scale(0.78) rotate(-20deg); opacity: 0; }
  16% { opacity: 0.78; }
  100% { transform: translate(22px, -108px) scale(1.22) rotate(24deg); opacity: 0; }
}
.page-hearts {
  position: fixed;
  top: var(--hours-h);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.page-hearts i {
  position: absolute;
  bottom: 2vh;
  line-height: 1;
  pointer-events: none;
}
.page-hearts i.heart {
  color: var(--rose);
  text-shadow: 0 0 10px rgba(196, 92, 122, 0.45);
  animation: floatHeartPage 11s ease-in-out infinite;
}
.page-hearts i.kiss {
  animation: floatKissPage 9.2s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(196, 92, 122, 0.35));
}
@keyframes floatHeartPage {
  0% { transform: translateY(8px) scale(0.72) rotate(-10deg); opacity: 0; }
  12% { opacity: 0.52; }
  70% { opacity: 0.28; }
  100% { transform: translateY(-88vh) scale(1.32) rotate(10deg); opacity: 0; }
}
@keyframes floatKissPage {
  0% { transform: translate(0, 10px) scale(0.78) rotate(-20deg); opacity: 0; }
  14% { opacity: 0.72; }
  100% { transform: translate(28px, -82vh) scale(1.28) rotate(22deg); opacity: 0; }
}
body.has-page-hearts .section,
body.has-page-hearts .legal-page,
body.has-page-hearts .store-section,
body.has-page-hearts .store-hero-inner,
body.has-page-hearts .about-card,
body.has-page-hearts .gallery-hero h1,
body.has-page-hearts .site-footer,
body.has-page-hearts .dom-hero,
body.has-page-hearts .home-deliver-grid {
  position: relative;
  z-index: 2;
}
.logo, .nav-center, .nav-right, .nav-cart, .menu-toggle {
  position: relative;
  z-index: 2;
}
.logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  justify-self: start;
  flex-shrink: 0;
  height: calc(var(--header-h) - 48px);
  width: auto;
  overflow: hidden;
  padding: 8px 0.5rem 22px 2.4cm;
  margin: 0 0.6rem 0 0;
}
.logo-stack {
  position: relative;
  display: block;
  height: 100%;
  min-width: 12.2rem;
  margin-inline: auto;
}
.logo-mark {
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  margin-inline: auto;
  transform: none;
}
.logo-word {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  line-height: 1;
  width: max-content;
  z-index: 1;
  pointer-events: none;
}
.logo-word::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: 118%;
  height: 160%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 250, 244, 0.78) 0%,
    rgba(255, 250, 244, 0.48) 42%,
    rgba(255, 250, 244, 0.12) 68%,
    transparent 82%
  );
  z-index: -1;
  pointer-events: none;
}
.logo-name,
.logo-tag {
  font-family: Georgia, "Palatino Linotype", Palatino, "Times New Roman", Times, serif;
  font-weight: 700;
  color: #6e4010;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 8px #fffaf4, 0 0 14px #fffaf4, 0 1px 0 #fffaf4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}
.logo-name {
  font-size: 1.95rem;
  letter-spacing: 0.14em;
}
.logo-tag {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  padding-left: 0.12em;
}
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.7rem;
  justify-self: center;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  justify-self: end;
  margin-right: 2.2cm;
  padding-right: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 46px;
  background: #efe4d8;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.is-on { background: linear-gradient(135deg, var(--rose), var(--gold)); color: #fff; }
.nav-fb { background: #1877f2; color: #fff; }
.nav-ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b 52%, #8134af);
  color: #fff;
}
.nav-link.nav-fb:hover,
.nav-link.nav-fb.is-on { background: #1877f2; color: #fff; }
.nav-link.nav-ig:hover,
.nav-link.nav-ig.is-on {
  background: linear-gradient(45deg, #f58529, #dd2a7b 52%, #8134af);
  color: #fff;
}
.menu-toggle, .nav-cart-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-cart { flex-shrink: 0; margin-left: 0; margin-right: 0.95rem; }
.menu-toggle {
  margin-left: 0;
  background: var(--bar);
  color: #fff;
  border-radius: 999px;
  padding: 0.62rem 1.05rem 0.62rem 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.menu-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68em;
  line-height: 1;
  transform: none;
  border: 0;
  width: auto;
  height: auto;
  margin: 0;
  transition: transform 0.18s ease;
  flex-shrink: 0;
}
.menu-toggle[aria-expanded="true"] .menu-chevron,
.menu-acc.open .menu-chevron,
.menu-acc[aria-expanded="true"] .menu-chevron {
  transform: rotate(180deg);
  margin-top: 0;
}
.menu-acc .menu-chevron { margin-top: 0; font-size: 0.75em; }
.nav-cart-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.nav-cart-btn svg { width: 26px; height: 26px; }
.nav-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.nav-cart-badge[hidden] { display: none !important; }

.menu-overlay {
  position: fixed;
  top: var(--chrome-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  background: rgba(148, 206, 238, 0.4);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 0.2rem 0.8rem 0.8rem;
}
.menu-overlay.open { display: flex; }
.menu-panel {
  width: min(920px, 100%);
  height: min(62dvh, calc(100dvh - var(--chrome-h) - 12px));
  max-height: min(62dvh, calc(100dvh - var(--chrome-h) - 12px));
  background: rgba(148, 206, 238, 0.6);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.2fr);
  grid-template-rows: minmax(0, 1fr);
  column-gap: 0;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 16px 40px rgba(70, 110, 140, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.menu-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
}
.menu-nurse-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  height: 100%;
  padding: 2.4rem 0.45rem 0.45rem 0.7rem;
  background: none;
  position: sticky;
  top: 0;
  align-self: stretch;
  overflow: hidden;
}
.menu-nurse {
  width: auto;
  height: min(80%, 440px);
  max-width: 240px;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: 50% 36%;
  background: transparent;
  mix-blend-mode: screen;
  margin: 0;
  filter: contrast(1.08) saturate(1.12);
}
.menu-cols {
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 3.4rem 3.6rem 1.6rem 0.55rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 16px;
  scroll-behavior: smooth;
}
.menu-cols::-webkit-scrollbar { width: 8px; }
.menu-cols::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.18); border-radius: 8px; }
.menu-cols::-webkit-scrollbar-thumb { background: rgba(193, 142, 66, 0.75); border-radius: 8px; }
.menu-block { border-bottom: 1px solid rgba(22, 17, 14, 0.12); }
.menu-acc, .menu-plain, .menu-sub a {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0.75rem 0.2rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}
.menu-acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding-right: 0.55rem;
}
.menu-acc .menu-chevron {
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-sub { display: none; padding: 0 0 0.55rem 0.85rem; }
.menu-sub.open {
  display: block;
  margin: 0 0.15rem 0.45rem 0;
  padding: 0.2rem 0.7rem 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 12px;
}
.menu-sub[hidden] { display: none !important; }
.menu-sub a { font-weight: 500; text-transform: none; opacity: 0.95; }

.hero { position: relative; background: #0b0612; overflow: hidden; }
.hero-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(88vh, 920px);
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.78) 0%, rgba(255, 250, 244, 0.38) 42%, rgba(255, 250, 244, 0.08) 68%, transparent 86%);
}
.hero-copy {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(72rem, 92%);
  max-width: 72rem;
  padding: 1.6rem 1.2rem;
  transform: translateX(-50%);
  color: var(--ink);
  text-align: center;
}
.hero-kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.05rem;
}
.hero-copy h1 {
  font-family: Georgia, "Palatino Linotype", Palatino, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(3.1rem, 7.6vw, 6.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 1.15rem;
  text-align: center;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 700;
  color: #e56b90;
}
.hero-copy .hero-lead {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.22rem, 2.15vw, 1.72rem);
  font-weight: 400;
  color: #3d342e;
  max-width: 38rem;
  margin: 0 auto 1.7rem;
  text-align: center;
  line-height: 1.45;
}
.hero-cta {
  width: auto;
  min-width: 0;
  min-height: 58px;
  padding: 1.05rem 2.15rem;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#categorias,
#contacto {
  scroll-margin-top: calc(var(--chrome-h) + 10px);
}
.section { padding: 2.6rem 0 3rem; }
.section h2, .legal-page h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  text-align: center;
}
.manifesto {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.02rem;
  color: #3d342e;
  text-align: center;
}
.manifesto p { margin-bottom: 1rem; }
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 17, 14, 0.1);
  flex: 0 1 calc((100% - 3.4rem) / 5);
  max-width: calc((100% - 3.4rem) / 5);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; }
.cat-card span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.7rem;
  background: linear-gradient(transparent, rgba(18, 14, 12, 0.82));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
}

.gallery-hero {
  min-height: 38vh;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: end center;
  padding: 2rem 6vw 2.2rem;
  color: #fff;
  text-align: center;
}
.gallery-hero h1 { width: 100%; }
.gallery-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
}
.gallery-subnav a {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #efe4d8;
  font-weight: 700;
  font-size: 0.82rem;
}
.gallery-subnav a.is-on,
.gallery-subnav a:hover {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff;
}
.home-deliver {
  padding: 1.2rem 0 3.4rem;
  overflow: visible;
}
.home-deliver-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.95fr) minmax(18rem, 1fr);
  grid-template-areas:
    "copy girl"
    "shots shots";
  gap: 1.4rem 2rem;
  align-items: center;
}
.home-deliver-copy {
  grid-area: copy;
  text-align: left;
  max-width: 40rem;
  justify-self: start;
}
.home-deliver-copy h2 {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 0.85rem;
  font-size: clamp(2.15rem, 4.4vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.home-kicker {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.7rem;
}
.home-lead {
  color: #3d342e;
  font-size: clamp(1.18rem, 2.1vw, 1.38rem);
  line-height: 1.55;
  margin-bottom: 1.15rem;
  font-weight: 500;
}
.home-points {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}
.home-points li {
  position: relative;
  padding: 0.58rem 0 0.58rem 1.55rem;
  color: #3d342e;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  line-height: 1.45;
  font-weight: 600;
  border-bottom: 1px solid rgba(22, 17, 14, 0.08);
}
.home-points li::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: 0.62rem;
  color: var(--rose);
  font-size: 0.92rem;
}
.home-deliver-copy .age-note {
  margin: 0.45rem 0 1.15rem;
  font-size: 1.05rem;
}
.home-deliver-copy .btn {
  width: auto;
  min-width: 14rem;
  font-size: 1.08rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
}
.home-deliver-stage {
  grid-area: girl;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: none;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  box-shadow: none;
}
.home-deliver-girl {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.home-deliver-girl img {
  width: min(100%, 400px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
}
.home-deliver-shots {
  grid-area: shots;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 24rem));
  justify-content: center;
  align-items: start;
  gap: 1.25rem;
}
.home-shot {
  margin: 0;
  flex: 1 1 17rem;
  max-width: 24rem;
  background: #fffaf4;
  padding: 0.55rem 0.55rem 0.2rem;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(18, 14, 12, 0.1);
}
.home-shot img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 10px;
  display: block;
}
.home-shot figcaption {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5a4a3a;
  padding: 0.55rem 0.2rem 0.45rem;
}
.cart-qty button {
  width: 28px; height: 28px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.cart-clear {
  margin-top: 0.5rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}
.menu-acc.open { color: var(--gold); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.product-card, .product-ph {
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem;
  box-shadow: 0 10px 24px rgba(22,17,14,.08);
}
.product-card img, .product-ph {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: #efe4d8;
}
.product-ph { display: grid; place-items: center; font-size: 2rem; color: var(--rose); padding: 0; }
.product-card h3 { margin: 0.65rem 0 0.3rem; font-size: 1rem; text-align: center; }
.product-card p { color: var(--muted); font-size: 0.88rem; min-height: 2.6em; text-align: center; }
.price { display: block; margin: 0.4rem 0 0.7rem; color: var(--gold); text-align: center; }
.store-section .gallery-empty {
  background: rgba(255, 250, 244, 0.94);
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  background: #efe4d8;
  color: var(--ink);
  text-decoration: none;
}
.age-note { color: var(--muted); font-size: 0.9rem; margin-top: 0.6rem; }
.btn-primary { background: linear-gradient(135deg, var(--rose), var(--gold)); color: #fff; width: 100%; }
.hero .hero-cta { width: auto; margin-inline: auto; }

.dom-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
}
.dom-hero > div { text-align: center; }
.dom-hero .btn { margin-inline: auto; }
.dom-hero img { width: 100%; object-fit: contain; background: transparent; border-radius: 0; }
.slogan {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.85rem;
}
.dom-pics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.4rem; }
.dom-pics img { width: 100%; border-radius: 16px; aspect-ratio: 4/5; object-fit: cover; }

.site-footer {
  background: var(--bar);
  color: #f7efe6;
  padding: 2rem 0 1.2rem;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}
.footer-grid h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin: 0.28rem 0; }
.footer-brand {
  justify-self: start;
  text-align: left;
  padding-left: 0;
}
.footer-brand p {
  margin: 0.28rem 0;
  opacity: 0.92;
  text-align: left;
}
.footer-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: calc(var(--header-h) - 48px);
  width: auto;
  overflow: visible;
  padding: 8px 1.1rem 22px 0.35rem;
  margin: 0 0 0.55rem;
}
.footer-logo .logo-stack {
  margin-inline: 0;
  min-width: 13.6rem;
  overflow: visible;
}
.footer-logo .logo-word {
  left: 51%;
  padding: 0 0.4em 0 0.28em;
}
.footer-logo .logo-word::before {
  display: none;
}
.footer-logo .logo-name,
.footer-logo .logo-tag {
  text-shadow: none;
}
.footer-logo .logo-name {
  padding-left: 0.08em;
  padding-right: 0.2em;
}
.footer-arrive {
  width: min(1200px, 94vw);
  margin: 1.7rem auto 0;
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) 1.45fr;
  gap: 1.2rem;
  align-items: stretch;
  background: #1c1613;
  border: 1px solid rgba(255, 250, 244, 0.1);
  border-radius: 20px;
  padding: 1.15rem;
}
.footer-arrive-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.footer-arrive-copy h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}
.footer-arrive-copy p { color: #f4ece3; margin-bottom: 0.45rem; }
.footer-arrive-copy .btn {
  width: auto;
  align-self: flex-start;
  margin: 0.45rem 0 0.7rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
}
.footer-maps-link {
  color: #e8c58a;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 0.55rem;
}
.footer-route-status {
  font-size: 0.82rem;
  opacity: 0.8;
  margin: 0;
}
.footer-map iframe { width: 100%; height: 320px; border: 0; border-radius: 14px; }
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 0.55rem 0.4rem;
}
.pay-chip {
  flex: 1 1 5.4rem;
  max-width: 7.4rem;
  margin: 0;
  text-align: center;
}
.pay-chip img,
.payments-grid img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
}
.pay-chip figcaption,
.pay-chip-btn span {
  font-size: 0.68rem;
  margin-top: 0.22rem;
  opacity: 0.88;
  line-height: 1.2;
  display: block;
}
.footer-copy { width: min(1200px, 94vw); margin: 1.2rem auto 0; opacity: 0.75; }

.pay-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: rgba(12, 8, 6, 0.62);
  display: none;
  place-items: center;
  padding: 1rem;
}
.pay-modal.open { display: grid; }
.pay-sheet {
  position: relative;
  width: min(760px, 96vw);
  background: #fffaf4;
  color: var(--ink);
  border-radius: 24px;
  padding: 1.6rem 1.3rem 1.4rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.pay-sheet h2 { font-size: 1.35rem; margin-bottom: 0.45rem; }
.pay-sheet p { color: var(--muted); margin-bottom: 1rem; }
.pay-close {
  position: absolute;
  top: 0.45rem;
  right: 0.7rem;
  border: 0;
  background: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--ink);
}
.pay-chip-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}
.pay-chip-btn:hover img {
  box-shadow: 0 0 0 2px var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.cart-overlay:not(.open), .cart-drawer:not(.open) { display: none !important; }
.cart-overlay.open {
  position: fixed; inset: 0;
  background: rgba(5,8,16,.5);
  z-index: 1500;
  display: block !important;
}
.cart-drawer.open {
  position: fixed; top: 0; right: 0;
  z-index: 1510;
  width: min(380px, 94vw);
  height: 100%;
  background: #fffaf4;
  display: flex !important;
  flex-direction: column;
  padding: 1rem;
}
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; }
.cart-close { border: 0; background: none; font-size: 1.6rem; cursor: pointer; }
.cart-list { flex: 1; overflow: auto; margin: 0.7rem 0; }
.cart-row { display: grid; grid-template-columns: 54px 1fr auto; gap: 0.5rem; align-items: center; margin-bottom: 0.65rem; }
.cart-row img, .cart-ph { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; background: #efe4d8; display: grid; place-items: center; }
.cart-qty { display: flex; gap: 0.25rem; align-items: center; }
.cart-qty button { width: 24px; height: 24px; }
.cart-toast {
  position: fixed; top: calc(var(--chrome-h) + 0.5rem); right: 1rem;
  z-index: 1600; background: var(--gold); color: #fff; font-weight: 800;
  padding: 0.5rem 0.85rem; border-radius: 999px; opacity: 0; pointer-events: none;
}
.cart-toast.show { opacity: 1; }
.cart-empty { color: var(--muted); }

.legal-page { padding: 2rem 0 3rem; max-width: 760px; margin-inline: auto; text-align: center; }
.legal-page p, .legal-page li { margin-bottom: 0.7rem; color: #3d342e; }

.about-hero,
.store-hero {
  min-height: calc(100dvh - var(--chrome-h));
  display: grid;
  place-items: center;
  padding: 2.4rem 1rem 3.2rem;
  background-color: #1a1411;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-hero {
  background-image:
    linear-gradient(180deg, rgba(18, 14, 12, 0.46), rgba(18, 14, 12, 0.64)),
    url("../nosostros.jpg");
}
.store-hero {
  min-height: auto;
  padding: 2.6rem 1rem 2.2rem;
  background-image:
    linear-gradient(180deg, rgba(18, 14, 12, 0.4), rgba(18, 14, 12, 0.62)),
    url("../tienda%20en%20linea.jpg");
}
.about-card,
.store-hero-inner {
  width: min(760px, 94vw);
  margin-inline: auto;
  text-align: center;
  color: #fffaf4;
  background: rgba(18, 14, 12, 0.42);
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: 24px;
  padding: 2rem 1.4rem 1.8rem;
  backdrop-filter: blur(8px);
}
.about-card h1,
.store-hero-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.9rem;
}
.about-card p,
.store-hero-inner p {
  margin: 0 auto 0.85rem;
  max-width: 38rem;
  color: #f4ece3;
  text-align: center;
}
.about-card .lead { font-size: 1.08rem; }
.about-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
}
.about-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  background: #efe4d8;
  color: var(--ink);
}
.about-social a.wa { background: #25d366; color: #fff; }
.about-social a.fb { background: #1877f2; color: #fff; }

.store-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.1rem 0 0.4rem;
}
.store-tools input[type="search"] {
  width: min(28rem, 100%);
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font: inherit;
}
.store-tools button {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff;
  min-height: 48px;
}
.store-gallery-label { font-size: 0.95rem; opacity: 0.92; }
.store-section {
  padding-top: 1.4rem;
  padding-bottom: 3rem;
  background:
    linear-gradient(180deg, rgba(18, 14, 12, 0.5), rgba(18, 14, 12, 0.62)),
    url("../tienda%20en%20linea.jpg") center/cover no-repeat;
}
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  width: min(780px, 94vw);
  margin-inline: auto;
}
.store-card {
  background: rgba(255, 250, 244, 0.96);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 14, 12, 0.16);
  text-align: center;
  padding-bottom: 1.3rem;
}
.store-card > img,
.store-card > .product-ph {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 0;
}
.store-card h2 {
  font-size: 1.35rem;
  margin: 1rem 1rem 0.35rem;
}
.store-card p {
  color: var(--muted);
  margin: 0 auto 0.4rem;
  max-width: 36rem;
  padding: 0 1.1rem;
}
.store-card .price { font-size: 1.25rem; }
.store-card .btn {
  width: min(22rem, calc(100% - 2rem));
  margin-inline: auto;
  min-height: 52px;
  font-size: 1.05rem;
}

.login-wrap, .admin-wrap { min-height: 100vh; display: grid; place-items: center; padding: 2rem; }
.login-card, .admin-card {
  width: min(520px, 94vw);
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.admin-wrap { display: block; padding: 1.2rem; }
.admin-card { width: min(980px, 96vw); margin: 0 auto; }
label { display: block; font-weight: 700; margin: 0.7rem 0 0.25rem; }
input, textarea, select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font: inherit;
}
.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}
.admin-toolbar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.admin-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.admin-top h1 { margin: 0 0 0.25rem; font-size: 1.55rem; }
.admin-top p { margin: 0; color: var(--muted); }
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.admin-gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eadfd3;
  border-radius: 14px;
  padding: 1rem;
}
.admin-gallery-card:hover { box-shadow: 0 12px 24px rgba(18, 14, 12, 0.1); }
.admin-gallery-card strong { display: block; margin-bottom: 0.35rem; }
.admin-gallery-card span { color: var(--muted); font-size: 0.85rem; }
.admin-field { display: block; margin-bottom: 0.9rem; font-weight: 700; font-size: 0.9rem; }
.admin-field input, .admin-field textarea, .admin-field select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
}
.admin-alert {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.admin-alert.error { background: #fde8e8; color: #8a1f1f; }
.admin-alert.ok { background: #e6f8ef; color: #0d6a45; }
.admin-preview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.admin-preview-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eadfd3;
}
.admin-progress {
  height: 8px;
  background: #efe4d8;
  border-radius: 999px;
  overflow: hidden;
  margin: 0.5rem 0 1rem;
}
.admin-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}
.admin-images { display: grid; gap: 1rem; }
.admin-image-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid #eadfd3;
  border-radius: 14px;
  padding: 0.85rem;
}
.admin-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.admin-thumb {
  position: relative;
  width: 88px;
  height: 88px;
}
.admin-thumb img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  background: #efe4d8;
}
.admin-thumb-del {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: #cf3b3b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.admin-image-meta { display: grid; gap: 0.35rem; }
.admin-image-actions { display: flex; flex-direction: column; gap: 0.4rem; }
.admin-image-actions .btn { width: auto; }
.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0 0.2rem;
  justify-content: center;
}
.product-thumbs img, .store-card .product-thumbs img {
  width: 44px;
  height: 44px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}
.product-thumbs img.is-on { border-color: var(--gold); }
@media (max-width: 720px) {
  .admin-image-row { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  :root { --header-h: 176px; }
  .nav-link, .menu-toggle { font-size: 0.86rem; padding: 0.5rem 0.8rem; }
}
@media (max-width: 980px) {
  :root { --header-h: 168px; --logo-size: 118px; }
  .nav { padding: 0.35rem 1.1cm 0.4rem 0; column-gap: 0.3rem; }
  .nav-right { margin-right: 0.9cm; }
  .logo { padding-left: 1.1cm; margin-right: 0.35rem; height: calc(var(--header-h) - 20px); }
  .logo-stack { min-width: 9.2rem; }
  .logo-name { font-size: 1.28rem; letter-spacing: 0.12em; }
  .logo-tag { font-size: 0.56rem; letter-spacing: 0.36em; }
  .nav-center { gap: 0.4rem 0.95rem; }
  .nav-link, .menu-toggle {
    padding: 0.48rem 0.72rem;
    font-size: 0.8rem;
    min-height: 42px;
  }
  .nav-cart-btn { width: 48px; height: 48px; }
  .menu-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    justify-items: center;
    align-items: stretch;
  }
  .menu-nurse-wrap {
    position: relative;
    height: auto;
    width: 100%;
    padding: 0.35rem 0 0.15rem;
  }
  .menu-nurse {
    height: 150px;
    max-height: 150px;
    min-height: 0;
    max-width: 150px;
    margin: 0 auto;
    object-position: center center;
  }
  .menu-cols { padding: 3.1rem 3.2rem 1.5rem 0.85rem; width: 100%; max-height: min(52dvh, 430px); }
  .cat-card {
    flex-basis: calc((100% - 0.85rem) / 2);
    max-width: calc((100% - 0.85rem) / 2);
  }
  .footer-grid, .footer-arrive, .dom-hero, .dom-pics, .home-deliver-grid { grid-template-columns: 1fr; }
  .home-deliver-grid { grid-template-areas: "copy" "girl" "shots"; }
  .home-deliver-copy { max-width: 42rem; text-align: center; justify-self: center; }
  .home-deliver-copy h2 { text-align: center; }
  .home-deliver-copy .btn { margin-inline: auto; }
  .home-points li { text-align: left; }
  .home-deliver-stage { min-height: 0; }
  .home-deliver-shots { grid-template-columns: minmax(0, 24rem); }
  .footer-map iframe { height: 260px; }
  .hours-btn { font-size: 0.7rem; max-width: 96vw; }
}
@media (max-width: 720px) {
  :root { --header-h: 142px; }
  .hero {
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: #0b0612;
  }
  .hero-media {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center center;
    background: #0b0612;
  }
  .hero::after {
    display: none;
  }
  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    transform: none;
    padding: 1.15rem 1rem 1.55rem;
    justify-content: flex-start;
    background: #fffaf4;
  }
  .hero-copy h1 { font-size: clamp(1.9rem, 8.4vw, 2.55rem); }
  .hero-kicker { font-size: 0.82rem; margin-bottom: 0.7rem; }
  .hero-copy .hero-lead { font-size: 1rem; margin-bottom: 1.1rem; }
  .hero-cta { font-size: 0.9rem; min-height: 48px; padding: 0.65rem 1.2rem; }
  .nav {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 0.2rem 0.4rem 0.28rem 0;
    column-gap: 0.25rem;
  }
  .logo {
    grid-column: 1;
    grid-row: 1;
    padding-left: 0.55cm;
    padding-bottom: 10px;
    height: 72px;
  }
  .nav-right {
    grid-column: 2;
    grid-row: 1;
    gap: 0.28rem;
    margin-right: 0.35rem;
  }
  .nav-center {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.22rem;
    padding: 0 0.4rem 0.22rem;
  }
  .nav-wide { display: none; }
  .nav-link, .menu-toggle {
    padding: 0.22rem 0.42rem;
    font-size: 0.64rem;
    min-height: 30px;
    letter-spacing: 0.01em;
  }
  .menu-toggle { padding-left: 0.48rem; padding-right: 0.42rem; gap: 0.18rem; }
  .nav-fb, .nav-ig {
    font-size: 0.6rem;
    padding: 0.2rem 0.42rem;
    min-height: 30px;
  }
  .nav-cart { margin-right: 0.15rem; }
  .nav-cart-btn { width: 34px; height: 34px; }
  .nav-cart-btn svg { width: 16px; height: 16px; }
  .home-shot { max-width: 28rem; }
}
@media (max-width: 520px) {
  :root { --header-h: 132px; --logo-size: 92px; }
  .cat-card {
    flex-basis: min(22rem, 100%);
    max-width: min(22rem, 100%);
  }
  .logo { margin-right: 0.2rem; padding-left: 0.45cm; height: 64px; }
  .logo-stack { min-width: 6.6rem; }
  .logo-name { font-size: 0.92rem; letter-spacing: 0.1em; }
  .logo-tag { font-size: 0.42rem; letter-spacing: 0.28em; }
  .nav-center { gap: 0.16rem; padding: 0 0.28rem 0.18rem; }
  .nav-link, .menu-toggle {
    padding: 0.18rem 0.34rem;
    font-size: 0.58rem;
    min-height: 28px;
  }
  .nav-fb, .nav-ig {
    font-size: 0.56rem;
    padding: 0.16rem 0.34rem;
    min-height: 28px;
  }
  .nav-cart-btn { width: 32px; height: 32px; }
}
