/* ===== Reset básico ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.5;
}

/* ===== Layout genérico ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid #e5e5e5;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  font-weight: 700;
}

.brand-secondary {
  font-weight: 300;
  color: #666666;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: #333333;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #111111;
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

/* Botón destacado en nav */
.main-nav .nav-btn {
  background-color: #111111;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.main-nav .nav-btn::after {
  display: none;
}

.main-nav .nav-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

/* Logo rectangular en el header */
.logo-rect {
  height: 48px;      /* controla la altura del logo */
  width: auto;       /* mantiene proporción original */
  object-fit: contain;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
}


/* ===== Hero ===== */
.hero {
  padding: 4rem 0 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: #555555;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
/* HERO en dos columnas */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

/* Contenedor de la imagen */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 360px;   /* tamaño máximo del logo */
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    max-width: 260px;
    margin: 0 auto;
  }
}


/* ===== Botones ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background-color: #111111;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: #111111;
  border-color: #cccccc;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  border-color: #bbbbbb;
}

/* ===== Tags hero ===== */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  border: 1px solid #e0e0e0;
  font-size: 0.8rem;
  color: #666666;
}

/* ===== Secciones ===== */
.section {
  padding: 3.5rem 0;
  border-top: 1px solid #f0f0f0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.section-header p {
  margin: 0;
  color: #666666;
  max-width: 520px;
}

/* ===== Grid genérica ===== */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* 2 columnas en pantallas medianas, 4 en grandes si se quiere */
.servicios-grid,
.eventos-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .servicios-grid,
  .eventos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .servicios-grid,
  .eventos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* Grid del catálogo */
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

/* Cada item */
.catalogo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Iconos */
.catalogo-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 1;
}

/* Nombre del artículo */
.catalogo-item span {
  font-size: 0.9rem;
  color: #333333;
}

/* Link ver galería */
.catalogo-galeria-link {
  margin-top: 2.5rem;
  text-align: center;
}
/* Sección de colores */
.catalogo-colores {
  margin-top: 2.5rem;
  text-align: center;
}

.catalogo-colores-label {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

/* Grid de colores */
.color-wheel {
  width: 180px;        /* puedes subir a 220px o 260px si lo quieres más grande */
  height: 180px;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid #eeeeee;
  background: conic-gradient(
    red,
    orange,
    yellow,
    #ffeb3b,
    #cddc39,
    #4caf50,
    #00bcd4,
    #2196f3,
    #3f51b5,
    #673ab7,
    #9c27b0,
    #e91e63,
    red
  );
}



/* ===== Cards ===== */
.card {
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  padding: 1.25rem;
  background-color: #ffffff;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555555;
}

/* Cards con gatitos */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

/* Card 1: gato 1 */
.servicios-grid .card:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 55px;
  height: 55px;
  background-image: url("img/cat1.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Card 2: gato 2 */
.servicios-grid .card:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 55px;
  height: 55px;
  background-image: url("img/cat2.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Card 3: gato 3 */
.servicios-grid .card:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 55px;
  height: 55px;
  background-image: url("img/cat3.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Card 4: gato 4 */
.servicios-grid .card:nth-child(4)::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 55px;
  height: 55px;
  background-image: url("img/cat4.png");
  background-size: contain;
  background-repeat: no-repeat;
}


/* ===== Sección Nuestra Oferta ===== */
.section-oferta {
  background-color: #ffffff;
}

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

@media (min-width: 640px) {
  .oferta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Cards oscuras */
.oferta-card {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333333;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oferta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.oferta-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.oferta-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.6;
}

/* ===== Proceso (lista ordenada) ===== */
.proceso-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.proceso-list li {
  border-left: 2px solid #e0e0e0;
  padding-left: 1rem;
}

.proceso-list h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555555;
}

.proceso-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #555555;
}

/* ===== Galería placeholder ===== */
.galeria-placeholder {
  border-radius: 0.75rem;
  border: 1px dashed #cccccc;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999999;
}

/* Grid de la sección de precios honestos */
.precios-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
}

/* Imagen del gatito */
.precios-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Texto */
.precios-text {
  max-width: 600px;
}

.precios-text h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.precios-text p {
  margin: 0 0 0.9rem;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .precios-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .precios-image img {
    max-width: 260px;
  }
}


/* ===== Formulario de contacto ===== */
.contact-form {
  max-width: 520px;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555555;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 0.5rem;
  border: 1px solid #dddddd;
  padding: 0.6rem 0.7rem;
  font: inherit;
  background-color: #ffffff;
  color: #111111;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #111111;
}
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row select {
  font-size: 1rem;
}

/* Botón WhatsApp */
.btn-whatsapp {
  width: 100%;
}

/* Alternativas de contacto */
.contact-alternatives {
  margin-top: 2rem;
  text-align: center;
}

.contact-alternatives p {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-link {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background-color: #111111;
  border: 1px solid #111111;
  border-radius: 2rem;
  transition: all 0.2s ease;
}

.contact-link:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Info de correo */
.email-info {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.email-info.active {
  display: block;
}

.email-info p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.email-info ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.email-info li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Sección FAQs */
.section-faqs .faqs-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

/* Cada pregunta */
.faq-item {
  border-radius: 0.75rem;
  border: 1px solid #e5e5e5;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
}

/* Título de la pregunta */
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222222;
}

/* Quitamos el triángulo feo por defecto (en la mayoría de navegadores) */
.faq-item > summary::-webkit-details-marker {
  display: none;
}

/* Indicador + / - con pseudo-elemento */
.faq-item > summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: #888888;
}

/* Cuando está abierto, cambiamos el símbolo */
.faq-item[open] > summary::after {
  content: "−";
}

/* Texto de la respuesta */
.faq-item p {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
}

/* Sección clientes satisfechos */
.section-clientes .clientes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Card de cliente */
.cliente-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  border: 1px solid #eeeeee;
  padding: 1.25rem;
  background-color: #ffffff;
  aspect-ratio: 1 / 1;
}

/* Responsive: en móvil vuelven a ser verticales */
@media (max-width: 768px) {
  .section-clientes .clientes-grid {
    grid-template-columns: 1fr;
  }
}

/* Imagen */
.cliente-image {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f5f5f5;
  flex: 1;
  min-height: 0;
}

.cliente-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder cuando aún no hay foto */
.cliente-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed #cccccc;
}

.cliente-image-placeholder span {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.4;
}

/* Texto del cliente */
.cliente-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.cliente-meta {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: #777777;
}

.cliente-text {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: #555555;
}

/* Link */
.cliente-link {
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid #111111;
  padding-bottom: 0.05rem;
  color: #111111;
}

.cliente-link:hover {
  border-bottom-color: transparent;
}

/* ===== Modal Álbum ===== */
.album-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;
  box-sizing: border-box;
}

.album-modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.album-modal-content {
  background-color: #ffffff;
  border-radius: 1rem;
  max-width: 900px;
  width: 100%;
  padding: 2rem;
  position: relative;
  margin: auto;
}

.album-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333333;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.album-modal-close:hover {
  background-color: #f0f0f0;
}

.album-modal-title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  text-align: center;
}

.album-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.album-collage img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.album-collage img:hover {
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .album-modal {
    padding: 1rem;
  }

  .album-modal-content {
    padding: 1.5rem 1rem;
  }

  .album-collage {
    grid-template-columns: repeat(2, 1fr);
  }

  .album-collage img {
    height: 120px;
  }
}

/* ===== Lightbox foto ampliada ===== */
.photo-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1100;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.photo-lightbox.active {
  display: flex;
}

.photo-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #ffffff;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  z-index: 1101;
}

.photo-lightbox-close:hover {
  color: #cccccc;
}

.photo-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 0.5rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .photo-lightbox img {
    max-width: 95%;
    max-height: 80%;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .cliente-card {
    grid-template-columns: 1fr;
  }
}


/* ===== Página Tienda ===== */
.tienda-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.tienda-hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
}

/* Sección temporada */
.section-temporada .section-header {
  text-align: center;
}

.temporada-badge {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* Grid de productos */
.productos-grid {
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .productos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Card de producto */
.producto-card {
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.producto-image {
  background-color: #f9f9f9;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.producto-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.producto-body {
  padding: 1.25rem;
}

.producto-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.producto-body p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #555555;
}

.producto-precio {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
}

/* CTA de temporada */
.temporada-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Próximamente */
.proximamente-grid {
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 640px) {
  .proximamente-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proximamente-item {
  padding: 1.5rem;
  border: 1px solid #f0f0f0;
  border-radius: 0.75rem;
}

.proximamente-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.proximamente-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.proximamente-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #888888;
}

/* ===== Modal de Producto ===== */
.producto-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;
  box-sizing: border-box;
}

.producto-modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.producto-modal-content {
  background-color: #ffffff;
  border-radius: 1rem;
  max-width: 900px;
  width: 100%;
  padding: 2rem;
  position: relative;
  margin: auto;
}

.producto-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333333;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  z-index: 10;
}

.producto-modal-close:hover {
  background-color: #f0f0f0;
}

/* Grid del modal */
.producto-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .producto-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Galería */
.producto-modal-galeria {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.galeria-principal {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.galeria-principal img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.galeria-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.galeria-thumb {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.galeria-thumb:hover,
.galeria-thumb.active {
  border-color: #111111;
}

/* Info del producto */
.producto-modal-info h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.modal-descripcion {
  margin: 0 0 1rem;
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-precio {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1.5rem;
}

/* Opciones */
.modal-opciones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-opcion label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555555;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-tallas,
.modal-colores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.talla-tag,
.color-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 1px solid #dddddd;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  color: #333333;
  background-color: #ffffff;
}

/* Entrega */
.modal-entrega {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.modal-entrega h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: #333333;
}

.modal-entrega ul {
  margin: 0;
  padding-left: 1.25rem;
}

.modal-entrega li {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 0.25rem;
}

/* Botón WhatsApp en modal */
.btn-modal-whatsapp {
  width: 100%;
  text-align: center;
}

/* Hacer las cards clickeables */
.producto-card {
  cursor: pointer;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid #f0f0f0;
  padding: 1.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-content {
  text-align: center;
  font-size: 0.85rem;
  color: #777777;
}

.footer-note {
  margin-top: 0.25rem;
  font-style: italic;
}
/* Contenedor de los gatos del footer */
.footer-cats {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Imagen de gatos */
.footer-cats img {
  width: 100%;
  max-width: 480px;  /* puedes aumentar este valor si la quieres más grande */
  height: auto;
  object-fit: contain;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }
}
