/* ===================================
   MiMamáRegala - Estilos Principales
   Día de la Madre 2026 · España
   =================================== */

:root {
  --primary: #C4603A;
  --primary-dark: #9E4A2A;
  --primary-light: #F2DDD4;
  --gold: #B8915A;
  --gold-light: #F0E2CC;
  --text: #1E1A18;
  --text-light: #7A6E68;
  --bg: #FAF6F0;
  --bg-2: #F5EDE2;
  --white: #ffffff;
  --border: #E5D9CF;
  --shadow: 0 2px 16px rgba(196, 96, 58, 0.06);
  --shadow-lg: 0 8px 48px rgba(196, 96, 58, 0.14);
  --radius: 6px;
  --radius-sm: 3px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* necesario en iOS además de body */
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  padding-top: 194px; /* compensar elementos fixed */
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

em { font-style: italic; color: var(--primary); }

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

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--text);
  color: rgba(255,255,255,0.88);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 103;
}

.announcement-bar .bar-separator {
  margin: 0 12px;
  opacity: 0.4;
}

.countdown-section {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 102;
  background: linear-gradient(135deg, var(--primary), #e07098);
  padding: 24px 20px;
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 134px;
  left: 0;
  right: 0;
  z-index: 104;
  background: rgba(253, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
}

.logo-icon { font-size: 1.5rem; }

.logo strong { color: var(--primary); }

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

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

.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  transition: var(--transition);
  border-radius: 50%;
}

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

.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 84, 122, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-white:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-add {
  background: var(--primary);
  color: white;
  border: 1.5px solid var(--primary);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-add:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

.btn-full { width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(196, 96, 58, 0.07) 0%, transparent 55%),
    radial-gradient(circle at 15% 70%, rgba(184, 145, 90, 0.07) 0%, transparent 55%);
}

/* Split layout */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 108px);
  padding: 60px 20px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 20px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.hero-carousel-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  padding: 28px 28px 24px;
  border-radius: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 32px 100px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.1);
  transition: var(--transition);
}

.hero-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding-bottom: 6px;
}

.hero-carousel::-webkit-scrollbar {
  display: none;
}

.hero-carousel-item {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(229,217,207,0.3);
}

.hero-carousel-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 80px rgba(0,0,0,0.15);
}

.hero-carousel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  z-index: 2;
}

.hero-carousel-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
}

.hero-carousel-info {
  padding: 20px 18px 22px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-carousel-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-carousel-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero-carousel-cta {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: center;
}

.hero-carousel-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(229,217,207,0.5);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-carousel-container {
    max-width: 100%;
    padding: 20px 20px 16px;
    border-radius: 24px;
  }

  .hero-carousel {
    gap: 16px;
  }

  .hero-carousel-item {
    flex: 0 0 280px;
    min-height: 320px;
  }

  .hero-carousel-img {
    height: 180px;
  }

  .hero-carousel-info {
    padding: 16px;
  }

  .hero-carousel-name {
    font-size: 1rem;
  }

  .hero-carousel-price {
    font-size: 1.1rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: -20px;
  }

  .carousel-next {
    right: -20px;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 24px; height: 38px;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.5; }
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- COUNTDOWN ---- */
.countdown-section {
  background: linear-gradient(135deg, var(--primary), #e07098);
  padding: 32px 20px;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.countdown-label {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.countdown-block span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: white;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  min-width: 64px;
  text-align: center;
}

.countdown-block small {
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown-sep {
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 0;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag.light {
  background: transparent;
  color: rgba(255,255,255,0.75);
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 300;
}

.section-header p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ---- PRODUCTS ---- */
.products-section { padding: 80px 0; }

.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 4px 24px rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
  border: none;
}

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

.product-card.hidden { display: none; }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-badge.bestseller { background: var(--gold); color: white; }
.product-badge.new { background: #4caf50; color: white; }
.product-badge.offer { background: var(--primary); color: white; }
.product-badge.premium { background: linear-gradient(135deg, #c9974a, #e8b86a); color: white; }

.product-img-wrap { position: relative; }

.product-img {
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-emoji { font-size: 4rem; }

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  background: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.product-wishlist:hover,
.product-wishlist.active { color: var(--primary); transform: scale(1.1); }

.product-info { padding: 20px; }

.product-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 8px 0 8px;
  color: var(--text);
}

.stock-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: #b03a2e;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.stars { color: #f5a623; font-size: 0.85rem; }

.rating-count { font-size: 0.8rem; color: var(--text-light); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.price-current {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
}

.price-old {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* ---- PERSONALIZATION BANNER ---- */
.personalization-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #e07098 100%);
  padding: 80px 0;
  overflow: hidden;
}

.personalization-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.personalization-text h2 { color: white; margin-bottom: 16px; }
.personalization-text p { color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.7; }

.personalization-visual {
  position: relative;
  height: 200px;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.fc1 { top: 0; left: 0; animation: float1 3s ease-in-out infinite; }
.fc2 { top: 50%; left: 30%; animation: float2 3.5s ease-in-out infinite; }
.fc3 { bottom: 0; right: 0; animation: float3 4s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(5px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 80px 0; background: var(--bg-2); }

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

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, white, var(--gold-light));
}

.review-verified {
  font-size: 0.72rem;
  color: #27ae60;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.review-product {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
  font-style: normal;
}

.testimonial-stars { color: #f5a623; margin-bottom: 12px; }

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ---- VALUES ---- */
.values { padding: 80px 0; }

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

.value-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: white;
  text-align: center;
  transition: var(--transition);
}

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

.value-icon { font-size: 2.2rem; margin-bottom: 14px; }

.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ---- FAQ ---- */
.faq { padding: 80px 0; background: var(--bg-2); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: white;
  overflow: hidden;
}

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

.faq-question:hover { color: var(--primary); }

.faq-question span {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 400;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question span { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  background: var(--gold-light);
  border-top: 1px solid #e8d4b0;
  border-bottom: 1px solid #e8d4b0;
  padding: 64px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h2 { font-size: 1.6rem; margin-bottom: 8px; }
.newsletter-text p { color: var(--text-light); font-size: 0.95rem; }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 440px;
  min-width: 280px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  background: white;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus { border-color: var(--primary); }

/* ---- FOOTER ---- */
.footer { background: #2d2424; padding: 60px 0 0; color: rgba(255,255,255,0.8); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.logo-light { color: white; }
.logo-light strong { color: var(--primary-light); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 16px 0;
  color: rgba(255,255,255,0.6);
}

.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }

.payment-badge {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-links h4 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ---- CART SIDEBAR ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.active { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 { font-size: 1.1rem; }

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-light);
  padding: 4px;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover { background: var(--primary-light); color: var(--primary); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: var(--text-light);
}

.cart-empty span { font-size: 3rem; }
.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-img {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cart-item-details { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 0.9rem; color: var(--primary); font-weight: 700; }

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

.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover { border-color: var(--primary); color: var(--primary); }

.qty-num { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.1rem;
  padding: 4px;
  transition: var(--transition);
}

.cart-item-remove:hover { color: var(--primary); }

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

.cart-subtotal, .cart-shipping {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cart-subtotal strong, .cart-shipping strong { color: var(--text); font-weight: 700; }

.cart-free-shipping {
  text-align: center;
  font-size: 0.82rem;
  color: #4caf50;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-footer .btn-primary { margin-top: 16px; }

.cart-payment-methods {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1E1A18;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 400;
  z-index: 999;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100vw - 40px);
  white-space: normal;
  text-align: center;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #2d2424;
  color: white;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 500;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.8); flex: 1; }
.cookie-banner a { color: var(--primary-light); }
.cookie-actions { display: flex; gap: 8px; }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightboxIn 0.25s ease;
}

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

.lightbox-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-align: center;
  max-width: 500px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.product-img-wrap { cursor: zoom-in; }

/* ---- RESPONSIVE ---- */
/* ---- BUNDLE SECTION ---- */
.bundle-section { padding: 80px 0; background: var(--bg-2); }

.bundle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 52px;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}

.bundle-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2.8rem;
}

.bundle-product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border);
}

.bundle-plus {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 300;
}

.bundle-save-badge {
  display: block;
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 20px;
}

.bundle-info h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.bundle-info p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.bundle-price-row .price-old {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.bundle-price-row .price-current {
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text);
}

.bundle-note {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ---- STICKY CTA (mobile) ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--text);
  color: rgba(255,255,255,0.9);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 150;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  gap: 12px;
}

.sticky-cta span {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ---- FOOTER PAYMENTS ---- */
.payment-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.payment-logo-svg {
  height: 22px;
  width: 22px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.payment-logo-svg:hover { opacity: 0.9; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .personalization-inner { grid-template-columns: 1fr; text-align: center; }
  .personalization-visual { display: none; }
  .bundle-card { gap: 40px; padding: 40px; }
  .hero-split { gap: 40px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 108px;
    background: white;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    z-index: 99;
    font-size: 1.1rem;
  }

  .nav.open { display: flex; }
  .hamburger { display: flex; }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 20px;
  }
  .hero-right { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .countdown-inner { flex-direction: column; gap: 16px; }
  .bundle-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .sticky-cta.visible { display: flex; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 12px; }
  .cart-sidebar { width: 100%; }

  .countdown-block span {
    font-size: 1.4rem;
    padding: 6px 10px;
    min-width: 48px;
  }
  .countdown-sep { font-size: 1.3rem; }
  .countdown { gap: 4px; }

  .announcement-bar { font-size: 0.72rem; padding: 8px 12px; }
  .personalization-banner { padding: 48px 0; }
  .hero-title { font-size: 2.2rem; }
}
