/* ==========================================================================
   CEU'ORIGEN - STYLESHEET OFICIAL
   Identidad: Lujo Botánico, Dorado Noble (#C5A059), Marfil (#FDFBF7), Espresso (#1B1612)
   Tipografía: Outfit & Plus Jakarta Sans | 100% Responsivo | Cero Emojis
   ========================================================================== */

:root {
  --primary: #C5A059;
  --primary-light: #E2C284;
  --primary-dark: #9A7730;
  --primary-gradient: linear-gradient(135deg, #DFBA73 0%, #C5A059 50%, #9A7730 100%);
  --primary-glow: rgba(197, 160, 89, 0.25);
  
  --secondary: #FFFFFF;
  --bg-page: #FDFBF7;
  --bg-card: #FFFFFF;
  --bg-alt: #F7F3EB;
  --bg-dark: #16120E;
  --bg-dark-card: #211B15;
  
  --text-main: #231C16;
  --text-muted: #6B5E52;
  --text-light: #F7F3EB;
  --text-gold: #C5A059;
  
  --border-color: #E8DFD1;
  --border-gold: rgba(197, 160, 89, 0.35);
  
  --accent-green: #3A5A40;
  --accent-green-light: #EBF2EC;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE5D;
  
  --shadow-sm: 0 2px 8px rgba(35, 28, 22, 0.05);
  --shadow-md: 0 6px 20px rgba(35, 28, 22, 0.08);
  --shadow-lg: 0 12px 36px rgba(35, 28, 22, 0.12);
  --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  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, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.text-gold {
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
}

/* Announcement Bar */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top-bar i {
  color: var(--primary);
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-gold);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-slogan {
  font-size: 0.72rem;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn-trigger {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition);
}

.cart-btn-trigger:hover {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-nav-whatsapp {
  background: var(--primary-gradient);
  color: #16120E;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-nav-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #FDFBF7 0%, #F5EFE3 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, rgba(253, 251, 247, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #16120E;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(197, 160, 89, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

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

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}

.hero-floating-tag {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(22, 18, 14, 0.88);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-floating-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16120E;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-floating-text h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-floating-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

/* Hair Pattern Guide (2A to 4C) */
.hair-guide {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.guide-card:hover::before {
  opacity: 1;
}

.guide-type-pill {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.guide-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.guide-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.guide-features {
  list-style: none;
}

.guide-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.guide-features li i {
  color: var(--primary-dark);
}

/* Products Catalog Section */
.catalog-section {
  padding: 90px 0;
  background: var(--bg-page);
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.category-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-tab-btn {
  padding: 10px 22px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.cat-tab-btn i {
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.cat-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--bg-alt);
}

.cat-tab-btn.active {
  background: var(--bg-dark);
  color: var(--primary);
  border-color: var(--bg-dark);
  box-shadow: var(--shadow-md);
}

.cat-tab-btn.active i {
  color: var(--primary);
}

.search-box {
  position: relative;
  min-width: 260px;
}

.search-box input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-box i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Product Grid Compact */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 22px;
}

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

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

.product-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.product-badge {
  background: var(--primary-gradient);
  color: #16120E;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.4px;
  box-shadow: var(--shadow-sm);
}

.product-img-wrap {
  width: 100%;
  height: 200px;
  background: #FAF7F0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s ease;
}

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

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 14, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .quick-view-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: white;
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.original-price {
  font-size: 0.85rem;
  color: #9C8E80;
  text-decoration: line-through;
  font-weight: 500;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.btn-add-cart {
  background: var(--bg-dark);
  color: var(--primary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-quick-wa {
  background: #E8F7EE;
  color: var(--whatsapp-dark);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-quick-wa:hover {
  background: var(--whatsapp);
  color: white;
  transform: scale(1.05);
}

/* Botanical Ingredients Section */
.ingredients-section {
  padding: 85px 0;
  background: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ingredient-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.ingredient-icon-wrap {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  background: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.ingredient-name {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.ingredient-benefit {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Story / About Section */
.story-section {
  padding: 95px 0;
  background: var(--bg-alt);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 50px;
}

.story-visual-wrap {
  position: relative;
}

.story-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.story-quote-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--bg-dark);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}

.story-quote-card p {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
  color: #E8DFD1;
  margin-bottom: 8px;
}

.story-quote-card span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-tabs-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.story-tab-btn {
  background: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.story-tab-btn.active {
  background: var(--bg-dark);
  color: var(--primary);
}

.story-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.story-pane.active {
  display: block;
}

.story-body {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.75;
}

.story-body p {
  margin-bottom: 16px;
}

.story-sign {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 16px;
}

.sign-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.sign-info h4 {
  font-size: 1rem;
  color: var(--text-main);
}

.sign-info p {
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Commitments / Benefits Banner */
.commitments-section {
  padding: 60px 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.commitment-icon {
  width: 50px;
  height: 50px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.commitment-info h4 {
  color: white;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.commitment-info p {
  color: #B5A89B;
  font-size: 0.82rem;
}

/* FAQ Section */
.faq-section {
  padding: 85px 0;
  background: white;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--primary-dark);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* CTA WhatsApp Banner */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, #1B1612 0%, #2A2118 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-gradient);
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: #D6C8B8;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.btn-whatsapp-cta {
  background: var(--whatsapp);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-whatsapp-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #B5A89B;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand-title {
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #B5A89B;
  transition: var(--transition);
}

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

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-contact-list i {
  color: var(--primary);
  margin-top: 4px;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* Cart Drawer (Shopping Bag) */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 18, 14, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer-overlay.active .cart-drawer {
  right: 0;
}

.cart-drawer-header {
  padding: 20px 24px;
  background: var(--bg-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  color: white;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-header h3 i {
  color: var(--primary);
}

.cart-close-btn {
  background: none;
  color: #B5A89B;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-close-btn:hover {
  color: white;
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: var(--bg-alt);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cart-empty-state h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.cart-empty-state p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  padding: 4px;
  border: 1px solid var(--border-color);
}

.cart-item-details h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
  line-height: 1.25;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  color: #C28E80;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 6px;
}

.cart-item-remove:hover {
  color: #D32F2F;
}

.cart-drawer-footer {
  padding: 20px 24px;
  background: var(--bg-page);
  border-top: 1px solid var(--border-color);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-total-row span {
  font-size: 1rem;
  color: var(--text-muted);
}

.cart-total-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.cart-customer-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.cart-customer-inputs input {
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.cart-customer-inputs input:focus {
  border-color: var(--primary);
}

.btn-checkout-wa {
  width: 100%;
  background: var(--whatsapp);
  color: white;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-checkout-wa:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Modal Quick View */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 18, 14, 0.65);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: var(--transition);
}

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

.modal-card {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalScale 0.3s ease;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.modal-media {
  background: var(--bg-alt);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-media img {
  max-height: 320px;
  object-fit: contain;
}

.modal-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.modal-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: #16120E;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  align-self: flex-start;
}

.modal-title {
  font-size: 1.45rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.modal-current-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.modal-original-price {
  font-size: 0.95rem;
  color: #9C8E80;
  text-decoration: line-through;
}

.modal-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal-spec-block {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.modal-spec-block strong {
  color: var(--text-main);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-dark);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInLeft 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE FIRST / COMPACT 2-COLUMN E-COMMERCE)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-row {
    justify-content: center;
  }
  .hero-card {
    max-width: 520px;
    margin: 0 auto;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-quote-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
  .ingredients-grid,
  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-whatsapp {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  
  /* Mobile Navigation Menu */
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  
  .hero {
    padding: 40px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .guide-grid {
    grid-template-columns: 1fr;
  }
  
  /* STRICT RULE: 2 COLUMNS COMPACT ON MOBILE (<768px) */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .product-img-wrap {
    height: 155px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-name {
    font-size: 0.9rem;
    height: 38px;
  }
  
  .product-desc {
    display: none; /* Hide long text on mobile cards for strict leveling */
  }
  
  .current-price {
    font-size: 1.05rem;
  }
  
  .original-price {
    font-size: 0.75rem;
  }
  
  .product-actions {
    grid-template-columns: 1fr auto;
    gap: 6px;
  }
  
  .btn-add-cart {
    padding: 8px 6px;
    font-size: 0.75rem;
  }
  
  .btn-add-cart span {
    display: none; /* Icon only on tight mobile */
  }
  
  .btn-quick-wa {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
  
  .modal-card {
    grid-template-columns: 1fr;
  }
  
  .modal-media {
    padding: 20px;
  }
  
  .modal-media img {
    max-height: 200px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
