/**
 * TEMA AZUL PARA PÁGINAS
 * Asegura que todas las páginas tengan estilos coherentes en tonos azules
 */

/* ========================================
   ESTILOS COMUNES PARA PÁGINAS
   ======================================== */

/* Hero de página */
.page-hero {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--theme-muted);
}

.page-hero-title {
  color: var(--theme-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  color: var(--gray-600);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Cabeceras de sección */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: var(--theme-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--theme-primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* Fondos de sección */
.bg-light-theme {
  background-color: var(--theme-light);
}

.bg-alt {
  background-color: var(--gray-50);
}

/* ========================================
   PÁGINA HOME
   ======================================== */

/* Hero principal */
.home-hero {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 70%, var(--gray-50) 100%);
  min-height: 600px;
  padding: 4rem 0;
}

.home-hero-title {
  color: var(--theme-dark);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.home-hero-subtitle {
  color: var(--gray-600);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Secciones home */
.home-section {
  padding: 4rem 0;
}

/* Sección destacados */
.home-featured {
  background: linear-gradient(180deg, white 0%, var(--theme-light) 100%);
  padding: 4rem 0;
}

.featured-title {
  color: var(--theme-dark);
}

/* Sección servicios */
.home-services {
  padding: 4rem 0;
}

/* ========================================
   PÁGINA DE PRODUCTOS
   ======================================== */

.products-header {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.products-title {
  color: var(--theme-dark);
  font-weight: 700;
}

.products-filters {
  background-color: white;
  border: 1px solid var(--theme-muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.filter-title {
  color: var(--theme-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-label {
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

/* ========================================
   PÁGINAS DE CATEGORÍAS DE PRODUCTOS
   ======================================== */

/* Estilo común para páginas de categoría */
.category-page-header {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  padding: 3rem 0;
  margin-bottom: 3rem;
  text-align: center;
}

.category-title {
  color: var(--theme-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-description {
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Iconos de categoría */
.category-icon {
  font-size: 3rem;
  color: var(--theme-primary);
  margin-bottom: 1.5rem;
}

/* ========================================
   PÁGINA DE CONTACTO
   ======================================== */

.contact-page {
  background-color: var(--gray-50);
  padding: 3rem 0;
}

.contact-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 15px var(--theme-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-method-item {
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--theme-muted);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method-item:hover {
  border-color: var(--theme-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--theme-shadow);
}

.contact-method-icon {
  font-size: 2rem;
  color: var(--theme-primary);
  margin-bottom: 1rem;
}

.contact-method-title {
  color: var(--theme-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ========================================
   PÁGINAS DE FECHAS ESPECIALES
   ======================================== */

/* General para todas las fechas especiales */
.special-date-page {
  position: relative;
}

.special-date-header {
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Variantes temáticas - usando colores base azul */
.special-date-header.valentine {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  border-bottom: 3px solid var(--theme-primary);
}

.special-date-header.mother {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  border-bottom: 3px solid var(--theme-primary);
}

.special-date-header.father {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  border-bottom: 3px solid var(--theme-primary);
}

.special-date-header.children {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  border-bottom: 3px solid var(--theme-primary);
}

.special-date-header.christmas {
  background: linear-gradient(135deg, var(--theme-light) 0%, white 100%);
  border-bottom: 3px solid var(--theme-primary);
}

/* Productos especiales */
.special-product {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--theme-muted);
  background-color: white;
  transition: all 0.3s ease;
}

.special-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--theme-shadow);
}

.special-product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.special-product-content {
  padding: 1.5rem;
}

.special-product-title {
  color: var(--theme-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.special-product-price {
  color: var(--theme-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ========================================
   PÁGINA DE PREGUNTAS FRECUENTES
   ======================================== */

.faq-page {
  background-color: var(--gray-50);
  padding: 3rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px var(--theme-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: white;
  color: var(--theme-dark);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.faq-item.active .faq-question {
  border-bottom-color: var(--theme-muted);
  color: var(--theme-primary);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .page-hero {
    padding: 2rem 0;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
  
  .home-hero-title {
    font-size: 2rem;
  }
  
  .category-page-header {
    padding: 2rem 0;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}