/* ==========================================================================
   ALEXANDRA BUTIK - ESTILOS PRINCIPALES DE LA LANDING DE VENTAS
   Identidad: Artesanía Colombiana en Palma de Iraca y Fibras Naturales
   Cartagena de Indias, Colombia
   ========================================================================== */

:root {
  --primary: #C89D7C;
  --primary-hover: #B58866;
  --primary-dark: #966744;
  --primary-light: #F3E9D2;
  --secondary: #D8C3A5;
  --accent: #8C533E;
  --accent-light: #FBF0EB;
  --dark: #2D2319;
  --dark-soft: #4A3C2F;
  --text-muted: #7A6C5D;
  --light: #FAF7F2;
  --light-alt: #F4EFEA;
  --white: #FFFFFF;
  --green-artisan: #3B5A42;
  --green-light: #EBF3ED;
  --border: #E8DDD0;
  --border-light: #F0E8DD;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(45, 35, 25, 0.05);
  --shadow-md: 0 8px 24px rgba(45, 35, 25, 0.08);
  --shadow-lg: 0 16px 40px rgba(45, 35, 25, 0.12);
  --shadow-card: 0 6px 20px rgba(45, 35, 25, 0.06);
  --shadow-card-hover: 0 14px 32px rgba(45, 35, 25, 0.12);
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container-max: 1200px;
}

/* Reset y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Tipografía de Encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background-color: var(--accent-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(140, 83, 62, 0.15);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ==========================================================================
   BARRA DE ANUNCIO SUPERIOR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--primary-light);
  font-size: 0.84rem;
  padding: 0.55rem 1rem;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}

.announcement-bar i {
  color: var(--secondary);
}

/* ==========================================================================
   HEADER Y NAVEGACIÓN
   ========================================================================== */
.site-header {
  background-color: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-soft);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--green-artisan);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(59, 90, 66, 0.25);
}

.btn-header-wa:hover {
  background-color: #2F4835;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59, 90, 66, 0.35);
  color: var(--white);
}

.btn-cart-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--light-alt);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border);
}

.btn-cart-toggle:hover {
  background-color: var(--primary-light);
  color: var(--accent);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.4rem;
  color: var(--dark);
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(216, 195, 165, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(200, 157, 124, 0.2) 0%, transparent 50%),
              var(--light);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-artisan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.hero-badge-artisan i {
  color: var(--accent);
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title span.text-highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--dark-soft);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(140, 83, 62, 0.3);
}

.btn-primary-hero:hover {
  background-color: #733F2E;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(140, 83, 62, 0.4);
  color: var(--white);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--border);
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn-secondary-hero:hover {
  background-color: var(--light-alt);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-soft);
}

.trust-item i {
  color: var(--green-artisan);
  font-size: 1.1rem;
}

/* Hero Showcase Image */
.hero-visual-card {
  position: relative;
}

.hero-main-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  background-color: var(--white);
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-img-wrapper:hover .hero-main-img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background-color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--border-light);
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-badge-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
}

.floating-badge-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.hero-location-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(45, 35, 25, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-location-pill i {
  color: var(--primary-light);
}

/* ==========================================================================
   SECCIÓN DE CATEGORÍAS Y FILTROS
   ========================================================================== */
.catalog-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.category-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background-color: var(--light-alt);
  color: var(--dark-soft);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.filter-btn:hover {
  background-color: var(--primary-light);
  color: var(--accent);
  border-color: var(--secondary);
}

.filter-btn.active {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 4px 14px rgba(45, 35, 25, 0.2);
}

.filter-btn .filter-count {
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
}

.filter-btn:not(.active) .filter-count {
  background-color: var(--border);
  color: var(--dark);
}

/* ==========================================================================
   CUADRÍCULA DE PRODUCTOS PROPORCIONADA
   (Regla: minmax 220px-260px escritorio, 2 columnas móvil)
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
  gap: 1.75rem;
  justify-content: center;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--secondary);
}

.product-media {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: var(--light-alt);
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--dark);
  color: var(--primary-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.product-badge.badge-bestseller {
  background-color: var(--accent);
  color: var(--white);
}

.product-badge.badge-tradicion {
  background-color: var(--green-artisan);
  color: var(--white);
}

.product-quickview-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: var(--white);
  color: var(--dark);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-quickview-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-quickview-btn:hover {
  background-color: var(--accent);
  color: var(--white);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.product-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.55rem;
}

.product-material-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--green-artisan);
  background-color: var(--green-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.product-price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.btn-buy-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: var(--green-artisan);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(59, 90, 66, 0.2);
}

.btn-buy-wa:hover {
  background-color: #2F4835;
  transform: scale(1.03);
  color: var(--white);
}

/* ==========================================================================
   SECCIÓN HISTORIA / QUIÉNES SOMOS
   ========================================================================== */
.about-section {
  padding: 5.5rem 0;
  background-color: var(--light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-media-box {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-experience-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 1.35rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-experience-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.about-experience-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content .section-title {
  text-align: left;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.about-text {
  font-size: 0.98rem;
  color: var(--dark-soft);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background-color: var(--white);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.value-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.value-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.value-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   SECCIÓN BENEFICIOS / VENTAJAS COMPETITIVAS
   ========================================================================== */
.benefits-section {
  padding: 4.5rem 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.benefit-card {
  background-color: var(--light);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
  background-color: var(--accent);
  color: var(--white);
}

.benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.benefit-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SECCIÓN DE TESTIMONIOS
   ========================================================================== */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--light-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #D4A373;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.94rem;
  color: var(--dark-soft);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
  color: var(--dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.review-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}

.review-author-loc {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECCIÓN FAQ (PREGUNTAS FRECUENTES)
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--secondary);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.92rem;
  color: var(--dark-soft);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 200px;
}

/* ==========================================================================
   SECCIÓN CTA BANNER FINAL
   ========================================================================== */
.cta-banner-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-card {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner-subtitle {
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-cta-banner-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--green-artisan);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(59, 90, 66, 0.4);
}

.btn-cta-banner-wa:hover {
  background-color: #2F4835;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 90, 66, 0.5);
  color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #1F1710;
  color: #BDB3A7;
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-copy {
  color: #8C8276;
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  background-color: #25D366;
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.08);
  background-color: #20BA5A;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.floating-wa-tooltip {
  position: absolute;
  right: 74px;
  background-color: var(--dark);
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   MODAL DE VISTA RÁPIDA / DETALLES DE PRODUCTO
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(45, 35, 25, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-backdrop.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: var(--light-alt);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--accent);
  color: var(--white);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.modal-img-wrap {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--light-alt);
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
}

.modal-product-name {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.modal-product-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.modal-product-desc {
  font-size: 0.95rem;
  color: var(--dark-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
  padding: 1rem;
  background-color: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.modal-meta-item strong {
  color: var(--dark);
}

.modal-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--green-artisan);
  color: var(--white);
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(59, 90, 66, 0.3);
  margin-top: auto;
}

.modal-action-btn:hover {
  background-color: #2F4835;
  color: var(--white);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MÓVILES Y TABLETS)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-row {
    justify-content: center;
  }
  
  .hero-main-img {
    height: 380px;
  }
  
  .hero-floating-badge {
    left: 10px;
    bottom: 10px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 70px;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 1.25rem;
  }
  
  .main-nav.mobile-active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .btn-header-wa span {
    display: none;
  }
  
  .btn-header-wa {
    padding: 0.65rem;
    border-radius: var(--radius-full);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  /* REGLA: 2 COLUMNAS EN MÓVIL PARA PRODUCTOS */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .product-media {
    height: 155px;
  }
  
  .product-body {
    padding: 0.85rem;
  }
  
  .product-name {
    font-size: 0.92rem;
    height: 2.4rem;
    overflow: hidden;
  }
  
  .product-desc {
    display: none;
  }
  
  .product-material-pill {
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
    margin-bottom: 0.5rem;
  }
  
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .product-price {
    font-size: 1.05rem;
  }
  
  .btn-buy-wa {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.76rem;
  }
  
  .modal-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .modal-img-wrap {
    height: 240px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary-hero, .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}
