@font-face {
  font-family: "PartyDecorV Titulos";
  src: url("/assets/fonts/TitulosPartyDecorv.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PartyDecorV Titulos";
  src: url("/assets/fonts/TitulosTipoItalyPartyDecorv.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PartyDecorV Subtitulos";
  src: url("/assets/fonts/Gitaluevo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cocogoose Pro";
  src: url("/assets/fonts/Cocogoose-Pro-Regular-trial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cocogoose Pro";
  src: url("/assets/fonts/Cocogoose-Pro-Semilight-trial.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cocogoose Pro";
  src: url("/assets/fonts/Cocogoose-Pro-Bold-trial.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cocogoose Pro";
  src: url("/assets/fonts/Cocogoose-Pro-Italic-trial.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cocogoose Pro";
  src: url("/assets/fonts/poppins-regular-digits.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+30-39;
  font-display: swap;
}
@font-face {
  font-family: "Cocogoose Pro";
  src: url("/assets/fonts/poppins-bold-digits.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  unicode-range: U+30-39;
  font-display: swap;
}
@font-face {
  font-family: "Cocogoose Pro";
  src: url("/assets/fonts/poppins-regular-digits.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  unicode-range: U+30-39;
  font-display: swap;
}
@font-face {
  font-family: "PartyDecorV Subtitulos";
  src: url("/assets/fonts/TitulosPartyDecorv.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+00A0-00FF;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-text: #2f2f35;
  --color-text-soft: #6b6b72;
  --color-accent: #d26a8d;
  --color-accent-dark: #b14a72;
  --color-accent-light: #e9a0b8;
  --color-gold: #c99a2f;
  --color-gold-dark: #8a631c;
  --color-logo: #a68b5b;
  --color-border: #e8e8ee;
  --color-card-bg: #faf7f8;
  --font-titulos: "PartyDecorV Titulos", Georgia, serif;
  --font-subtitulos: "PartyDecorV Subtitulos", "Cocogoose Pro", cursive;
  --font-texto: "Cocogoose Pro", "Libre Franklin", -apple-system, "Segoe UI", sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-texto);
  font-weight: 300;
  scroll-behavior: smooth;
}

h1, h2, h3, .site-logo { font-family: var(--font-titulos); }
h1, h2, h3, .section-title, .card-title, .item-title { text-transform: uppercase; letter-spacing: 0.02em; }
.section-subtitle, .hero p { font-family: var(--font-texto); text-transform: uppercase; font-weight: 700; letter-spacing: 0.01em; }

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  z-index: 100;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.site-logo { display: flex; align-items: center; }
.site-logo img {
  width: 230px;
  height: 68px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .site-logo img { width: 175px; height: 54px; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.15s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-accent); }

.nav-item-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
  min-width: 300px;
  z-index: 50;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: color-mix(in srgb, var(--color-accent-light) 30%, white); color: var(--color-accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.btn-cart, .btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(233, 160, 184, 0.22));
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: var(--color-accent-dark);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 6px 20px -10px rgba(210, 106, 141, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-cart:hover, .btn-primary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(233, 160, 184, 0.34));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(210, 106, 141, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.btn-primary { display: inline-flex; padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-cart:disabled {
  background: rgba(220, 220, 220, 0.25);
  border-color: rgba(220, 220, 220, 0.5);
  color: #999999;
  box-shadow: none;
  cursor: not-allowed;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 18, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-cerrar {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-soft);
}
.modal-cerrar:hover { color: var(--color-text); }

.lang-toggle {
  border: 1.5px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent-dark);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  margin-left: 0.75rem;
}
.lang-toggle:hover { background: var(--color-accent); color: #fff; }

@media (max-width: 860px) {
  .main-nav ul {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .main-nav.open ul { display: flex; }
  .main-nav ul li { width: 100%; }
  .main-nav ul a { display: block; padding: 0.85rem 24px; }
  .nav-dropdown { position: static; box-shadow: none; border: none; display: block; padding-left: 1rem; }
  .nav-item-dropdown:hover .nav-dropdown { display: none; }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
  .nav-toggle { display: block; }
}


.founder-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
}
.founder-photo {
  flex: 0 0 380px;
}
.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}
.founder-text { flex: 1; }

@media (max-width: 700px) {
  .founder-section { flex-direction: column; text-align: center; }
  .founder-photo { flex-basis: auto; width: min(320px, 80vw); }
}


.cover-gallery {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.cover-gallery.cover-gallery--activa {
  height: min(70vh, 560px);
}
.cover-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.cover-gallery-img.is-active { opacity: 1; }


.hero {
  padding: 3rem 0 4rem;
  text-align: center;
}

.home-media { padding: 1.5rem 0; }

.home-intro-text {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 1.4rem auto;
}

.carrusel { overflow: hidden; width: 100%; }
.carrusel.carrusel--activo { margin: 1.5rem 0; }
.carrusel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: carrusel-mover 40s linear infinite;
}
.carrusel:hover .carrusel-track { animation-play-state: paused; }
.carrusel-img {
  height: 230px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}

@keyframes carrusel-mover {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (max-width: 600px) {
  .carrusel-img { height: 160px; }
}

.foto-unica-wrap { text-align: center; }
.foto-unica {
  max-width: 100%;
  width: 720px;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto;
}

.resenas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 1.4rem;
}
.resena-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 22px;
  text-align: left;
}
.resena-estrellas { color: var(--color-gold); font-size: 1.15rem; letter-spacing: 2px; }
.resena-texto { color: var(--color-text); font-size: 0.95rem; line-height: 1.6; margin: 10px 0; }
.resena-nombre { color: var(--color-text-soft); font-weight: 700; font-size: 0.9rem; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;

  white-space: pre-line;
}
.hero p {
  color: var(--color-text-soft);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}


section { padding: 3.5rem 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--color-gold);
  margin: 0.85rem auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-soft);
  max-width: 600px;
  margin: 0 auto 3rem;
}


.grid-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.grid-cards .card {
  flex: 1 1 260px;
  max-width: min(100%, 380px);
}


.grid-cards.grid-cards--apilado {
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin-top: 0.5rem;
}
.grid-cards.grid-cards--apilado .card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  align-items: center;
}


.card {
  display: flex;
  flex-direction: column;
}
.card:hover .card-title { color: var(--color-accent-dark); }

.card-img { aspect-ratio: 4/3; object-fit: cover; background: #f6f6f6; border-radius: 10px; margin-bottom: 1rem; }

.card-body { padding: 0; display: flex; flex-direction: column; flex: 1; }
.card-title { font-weight: 700; font-size: 1.05rem; margin: 0 0 0.4rem; transition: color 0.15s ease; }
.card-desc { color: var(--color-text-soft); font-size: 0.9rem; line-height: 1.65; flex: 1; }

.grid-cards .card:not(:has(.card-img)) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}


.item-page { padding: 3rem 0 5rem; }
.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}
.item-title { font-family: var(--font-texto); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; }
.item-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-gold-dark);
  white-space: nowrap;
}

.item-content { line-height: 1.7; }
.item-content h2 { font-size: 1.15rem; margin: 1.6rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.02em; }
.item-content ul { margin: 0.3rem 0 1rem; padding-left: 1.2rem; }

.pdv-numero {
  font-weight: 700;
  font-size: 1.12em;
  color: var(--color-gold-dark);
}

.item-actions {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}


.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0;
  color: var(--color-logo);
  font-size: 0.9rem;
  text-align: center;
}
.site-footer strong { color: var(--color-logo); }

.footer-logo {
  width: 360px;
  max-width: 80%;
  height: 108px;
  object-fit: cover;
  margin: 0 auto 1.4rem;
}
@media (max-width: 600px) {
  .footer-logo { width: 280px; height: 88px; margin-bottom: 1rem; }
}
.site-footer a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: 1rem; justify-content: center; margin: 0.75rem 0; }
.made-by { font-size: 0.78rem; opacity: 0.7; margin-top: 0.5rem; color: var(--color-text-soft); }
.made-by span { color: var(--color-text-soft); }
.made-by a { color: var(--color-text-soft); text-decoration: underline; }
.made-by a:hover { color: var(--color-accent); }


.catalog-status {
  text-align: center;
  color: var(--color-text-soft);
  padding: 3rem 0;
}

.google-reviews { display: none; }
.google-reviews.google-reviews--activo {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.8rem;
}
.google-reviews-caja {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 8px 22px -14px rgba(0, 0, 0, 0.35);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  max-width: 100%;
}
a.google-reviews-caja { transition: box-shadow 0.15s ease, transform 0.15s ease; }
a.google-reviews-caja:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.4); }
.google-reviews-marca { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.g-azul { color: #4285f4; }
.g-rojo { color: #ea4335; }
.g-amarillo { color: #fbbc05; }
.g-verde { color: #34a853; }
.google-reviews-texto { font-size: 1.05rem; font-weight: 700; color: #1f1f1f; margin-right: 0.15rem; }
.google-reviews-nota { font-size: 1.05rem; font-weight: 800; color: var(--color-text); }
.google-reviews-estrellas { color: #fbbc05; font-size: 1.05rem; letter-spacing: 1px; }
.google-reviews-cantidad { font-size: 0.85rem; color: var(--color-text-soft); }
@media (max-width: 480px) {
  .google-reviews-caja { padding: 0.6rem 1rem; gap: 0.4rem; }
  .google-reviews-marca, .google-reviews-texto, .google-reviews-nota, .google-reviews-estrellas { font-size: 0.95rem; }
}
.google-reviews-logo { display: inline-flex; align-items: center; gap: 0.28rem; }

.lista-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 940px;
  margin: 0 auto;
}
.item-fila {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.item-fila:last-child { border-bottom: none; padding-bottom: 0; }
.item-fila-img {
  flex: 0 0 300px;
  width: 300px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #f6f6f6;
}
.item-fila-cuerpo {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.item-fila-titulo {
  font-family: var(--font-texto);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.item-fila-precio {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gold-dark);
  margin-bottom: 0.85rem;
}
.item-fila-precio--consultar {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-soft);
}
.item-fila-desc {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.item-fila-desc p { margin: 0 0 0.6rem; }
.item-fila-desc p:last-child { margin-bottom: 0; }
.item-fila-desc ul { margin: 0.3rem 0 0.6rem; padding-left: 1.2rem; }
.item-fila-acciones { margin-top: auto; padding-top: 0.25rem; }

@media (max-width: 760px) {
  .item-fila { flex-direction: column; gap: 1.1rem; }
  .item-fila-img { flex-basis: auto; width: 100%; }
  .item-fila-acciones { width: 100%; }
  .item-fila-acciones .btn-cart { width: 100%; justify-content: center; }
}
