@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-dark: #5A0F1B; /* Wine Red */
  --primary-main: #8E1616; /* Deep Red */
  --accent: #D4AF37; /* Champagne Gold */
  --text-main: #2C2C2C;
  --text-light: #666666;
  --bg-cream: #FDF5E6;
  --bg-white: #FFFFFF;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --carousel-visible: 4; /* imágenes visibles a la vez en el carrusel (desktop) */
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', serif;
}

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

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

/* Glassmorphism utility */
.glass {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

/* Premium Button */
.btn-premium {
  background-color: var(--primary-dark);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1px solid transparent;
}

.btn-premium:hover {
  background-color: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

nav.scrolled {
  padding: 5px 5%;
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.logo img {
  height: 100px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary-main);
}

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

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav-mobile-menu.open {
  max-height: 400px;
}

.nav-mobile-menu a {
  padding: 15px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(90,15,27,0.07);
  transition: background 0.2s, color 0.2s;
}

.nav-mobile-menu a:hover {
  background: var(--bg-cream);
  color: var(--primary-main);
}

.cart-btn {
  color: var(--primary-dark);
  transition: var(--transition-smooth);
}

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

nav.scrolled .logo img {
  height: 60px;
}

/* Hero Carousel */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-section.three-col-layout {
  display: grid;
  grid-template-columns: 33% 34% 33%;
  height: 100%;
}

.hero-content-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  height: 100%;
  color: white;
}

.hero-center-logo {
  height: 220px;
  width: 220px;
  object-fit: contain;
  background-color: white;
  border-radius: 50%;
  padding: 2px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.hero-content-middle h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content-middle p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 400px;
}

.hero-image-side-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-image-side {
  height: 100%;
  margin-top: 0;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-section.three-col-layout {
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
  }
  
  .hero-image-side-container {
    height: 45vh;
  }

  .hero-image-side {
    height: 100%;
    margin-top: 0;
  }
  
  .hero-content-middle {
    padding: 40px 5%;
  }

  .hero-center-logo {
    height: 140px;
    width: 140px;
    margin-bottom: 15px;
  }

  .hero-content-middle h1 {
    font-size: 2.2rem;
  }
}

/* media query covered above */

/* Product Grid */
.section-title {
  text-align: center;
  padding: 80px 0 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 5%;
  margin-bottom: 80px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}



.product-info {
  padding: 20px;
  text-align: center;
}

.product-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.product-price {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Shopping Cart Drawer */
.cart-drawer {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: white;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
    padding: 20px;
  }
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

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

.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 5%;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 220px;
  width: 220px;
  object-fit: contain;
  background-color: white;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.social-links a {
  font-size: 2.2rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border-color: var(--accent);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Float */
/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  background-color: var(--bg-white);
  padding: 0;
  overflow: hidden;
}

.about-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #3d0a12 60%, #1a0407 100%);
  padding: 55px 8%;
  display: flex;
  justify-content: center;
}

.about-hero-content {
  max-width: 780px;
  text-align: center;
}

.about-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-hero-content h2 {
  font-size: 4rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-hero-content h2 em {
  color: var(--accent);
  font-style: italic;
}

.about-divider {
  width: 55px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 30px;
}

.about-hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
}

.about-inline-quote {
  margin-top: 40px;
  padding: 28px 35px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.about-inline-quote i {
  font-size: 1.3rem;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 10px;
  display: block;
}

.about-inline-quote blockquote {
  font-size: 1.3rem;
  color: white;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.about-quote-author {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  background: var(--bg-cream);
  padding: 45px 8%;
}

.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.about-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(90, 15, 27, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.about-pillar-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(90, 15, 27, 0.35);
}

.about-pillar-icon i {
  font-size: 1.5rem;
  color: var(--accent);
}

.about-pillar-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 16px;
}

.about-pillar-header .about-pillar-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.about-pillar-header h3,
.about-pillar-header h3.serif {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.2;
  flex: 1;
}

.about-pillar > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
}

.about-pillar-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  margin: 20px 40px;
}

@media (max-width: 900px) {
  .about-hero-content h2 { font-size: 2.8rem; }
  .about-pillars {
    grid-template-columns: 1fr;
    padding: 55px 5%;
    gap: 25px;
  }
  .about-pillar-divider { display: none; }
  .about-pillar { padding: 30px; }
}

@media (max-width: 600px) {
  .about-hero { padding: 70px 7%; }
  .about-hero-content h2 { font-size: 2.2rem; }
  .about-inline-quote { padding: 22px; }
  .about-inline-quote blockquote { font-size: 1.1rem; }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: #FFF;
}

/* ===========================
   PRODUCT CARD EXTRAS
   =========================== */
.product-img-wrap { position: relative; overflow: hidden; width: 100%; height: 320px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: var(--transition-smooth); cursor: zoom-in; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.btn-add-card {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-main);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.btn-add-card:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-add-card.agotado-btn {
  background: #ccc;
  color: #888;
  cursor: not-allowed;
  transform: none;
}

.btn-add-card.agotado-btn:hover {
  background: #ccc;
  transform: none;
}

.agotado-badge {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.62);
  color: white;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 8px 0;
}

.btn-add-wrap {
  position: relative;
  width: 100%;
}

.agotado-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #2c2c2c;
  color: white;
  font-size: 0.78rem;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  text-align: center;
  line-height: 1.5;
  max-width: 240px;
  white-space: normal;
}

.agotado-tooltip a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
}

.agotado-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #2c2c2c;
}

.btn-add-wrap:hover .agotado-tooltip { display: block; }

/* ===========================
   ZOOM OVERLAY
   =========================== */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.zoom-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.zoom-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.zoom-overlay.open img { transform: scale(1); }

.zoom-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.6rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10;
}

.zoom-close:hover { opacity: 1; }

.product-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.product-card:hover .product-zoom-icon { opacity: 1; }

.product-price-original {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.discount-badge {
  background: var(--primary-main);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-left: 6px;
  vertical-align: middle;
}

.loading-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
  font-size: 1.1rem;
}

.loading-products i { font-size: 2rem; margin-bottom: 15px; display: block; color: var(--primary-main); }

/* ===========================
   PRODUCT MODAL
   =========================== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.product-modal-overlay.open .product-modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.3rem;
  color: var(--text-light);
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-image-wrap {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  max-height: 85vh;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-info {
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-price-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }

.modal-price-original {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin: 0;
}

.selector-group { display: flex; flex-direction: column; gap: 8px; }
.selector-group label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); font-weight: 600; }

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

.color-btn {
  padding: 6px 16px;
  border-radius: 50px;
  border: 2px solid #eee;
  font-size: 0.85rem;
  cursor: pointer;
  background: white;
  transition: var(--transition-smooth);
}

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

.talla-rows { display: flex; flex-direction: column; gap: 10px; }

.talla-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: var(--bg-cream);
  border-radius: 10px;
}

.talla-label { font-weight: 600; font-size: 0.95rem; color: var(--primary-dark); }

.qty-control { display: flex; align-items: center; gap: 12px; }

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  font-size: 1.1rem;
  cursor: pointer;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.qty-btn:hover { background: var(--primary-dark); color: white; }
.qty-value { font-weight: 600; min-width: 20px; text-align: center; }

@media (max-width: 700px) {
  .modal-body { grid-template-columns: 1fr; }
  .modal-image-wrap { border-radius: 20px 20px 0 0; max-height: 50vw; }
  .modal-info { padding: 25px 20px; }
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  background: linear-gradient(160deg, #3d0a12 0%, var(--primary-dark) 50%, #2a080f 100%);
  padding: 70px 20px 80px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.faq-section .section-title {
  margin-bottom: 0;
}

.faq-section .section-title h2 {
  color: white;
}

.faq-section .section-title p {
  color: rgba(255,255,255,0.65);
}


.faq-inner {
  max-width: 1100px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
  position: relative;
}

.faq-item {
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s, transform 0.3s;
  border-left: 3px solid transparent;
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 32px rgba(0,0,0,0.32);
}

.faq-item.open {
  border-left: 3px solid var(--accent);
  box-shadow: 0 8px 36px rgba(0,0,0,0.35);
  transform: translateX(4px);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}

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

.faq-item.open .faq-question {
  color: var(--primary-dark);
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(90,15,27,0.08);
  border: 1.5px solid rgba(90,15,27,0.18);
  font-size: 0.72rem;
  color: var(--primary-main);
  transition: transform 0.35s ease, background 0.3s, border-color 0.3s, color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

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

.faq-answer p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-light);
  padding: 0 26px 24px;
  margin: 0;
  border-top: 1px solid rgba(90,15,27,0.08);
  padding-top: 14px;
}

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

/* ===========================
   BLOG INDEX PAGE
   =========================== */
.blog-hero {
  background: var(--primary-dark);
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
}

.blog-hero h1 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 14px; }
.blog-hero p { opacity: 0.8; font-size: 1rem; max-width: 500px; margin: 0 auto; }

.blog-grid-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 35px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.blog-card-cover {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}

.blog-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-card-cover-label {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text-main);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.blog-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ===========================
   BLOG POST PAGE
   =========================== */
.blog-nav {
  background: var(--primary-dark);
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 500;
}

.blog-nav img {
  height: 45px;
  filter: brightness(0) invert(1);
}

.blog-nav-links { display: flex; align-items: center; gap: 25px; }

.blog-nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-nav-links a:hover { color: white; }

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

.blog-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.blog-nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.blog-nav-hamburger.active span:nth-child(2) { opacity: 0; }
.blog-nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.blog-nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.blog-nav-mobile-menu.open {
  max-height: 400px;
  padding: 8px 0 16px;
}

.blog-nav-mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 13px 24px;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s;
}

.blog-nav-mobile-menu a:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

.blog-post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.blog-post-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(90,15,27,0.12);
}

.blog-category-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-post-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--text-main);
}

.blog-post-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

.blog-post-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  font-style: italic;
  border-left: 3px solid var(--primary-main);
  padding-left: 20px;
  margin: 0 0 40px;
}

.blog-post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 48px 0 16px;
}

.blog-post-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 32px 0 10px;
}

.blog-post-body p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0 0 20px;
}

.blog-post-body ul, .blog-post-body ol {
  padding-left: 22px;
  margin: 0 0 24px;
}

.blog-post-body li {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-post-body strong { color: var(--text-main); }

.blog-cta-box {
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-cream);
  border: 1px solid rgba(90,15,27,0.15);
  border-radius: 16px;
  text-align: center;
}

.blog-cta-box p.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 20px;
}

.blog-cta-box .cta-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 14px 0 0;
}

.blog-cta-box .cta-sub a { color: var(--primary-main); }

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.blog-back-link:hover { color: var(--primary-main); }

@media (max-width: 600px) {
  .blog-grid-section { grid-template-columns: 1fr; }
  .blog-post-wrap { padding: 40px 16px 80px; }
  .blog-cta-box { padding: 28px 20px; }
}

/* ===========================
   RESPONSIVE MÓVIL GENERAL
   =========================== */
@media (max-width: 600px) {

  /* Navbar */
  #navbar {
    padding: 10px 16px;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }

  /* Hero */
  .hero { height: auto; }
  .hero-section.three-col-layout {
    grid-template-columns: 1fr;
  }
  .hero-image-side-container {
    height: 55vw;
    max-height: 280px;
  }
  .hero-content-middle {
    padding: 32px 20px;
  }
  .hero-center-logo {
    height: 100px;
    width: 100px;
    margin-bottom: 16px;
  }
  .hero-content-middle h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  /* Grid de productos: 2 columnas en móvil */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px;
  }

  /* Foto de producto más corta en móvil */
  .product-img-wrap {
    height: 44vw;
    max-height: 200px;
  }

  .product-info {
    padding: 12px 10px;
  }

  .product-name {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 0.9rem;
  }

  .btn-add-card {
    font-size: 0.75rem;
    padding: 8px 10px;
    gap: 5px;
  }

  /* Sección títulos */
  .section-title h2 {
    font-size: 1.8rem;
  }

  /* About */
  .about-hero-content {
    padding: 40px 20px;
  }
  .about-inline-quote blockquote {
    font-size: 1.1rem;
  }
  .about-pillars {
    flex-direction: column;
  }
  .about-pillar-divider { display: none; }

  /* FAQ */
  .faq-section { padding: 50px 16px 60px; }
  .faq-inner { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
  .faq-question { font-size: 0.95rem; }

  /* Blog nav móvil */
  .blog-nav { padding: 10px 16px; }
  .blog-nav img { height: 34px; }
  .blog-nav-links { display: none; }
  .blog-nav-hamburger { display: flex; }
  .blog-nav-mobile-menu { display: flex; }

  /* Footer */
  footer { padding: 40px 16px; }
}

@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .product-img-wrap {
    height: 72vw;
    max-height: 280px;
  }
}

/* ========== CARRUSEL DESTACADO (SEO-friendly, multi-imagen) ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.carousel-section {
  width: 100%;
  padding: 20px 0 60px;
  background: var(--bg-cream);
  position: relative;
}

.carousel-wrap {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(100% / var(--carousel-visible));
  box-sizing: border-box;
  padding: 8px;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(90, 15, 27, 0.12);
  transition: var(--transition-smooth);
}

.carousel-slide img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(90, 15, 27, 0.22);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.carousel-arrow:hover {
  background: var(--primary-dark);
  color: var(--accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 25px rgba(90, 15, 27, 0.3);
}

.carousel-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.carousel-arrow-prev { left: 5px; }
.carousel-arrow-next { right: 5px; }

.carousel-arrow i { font-size: 1.05rem; }

/* Tablet: 3 visibles */
@media (max-width: 1024px) {
  :root { --carousel-visible: 3; }
}

/* Móvil: 1 sola foto, cuadrada estilo post de Instagram, swipe horizontal */
@media (max-width: 768px) {
  :root { --carousel-visible: 1; }
  .carousel-wrap { padding: 0 12px; }
  .carousel-slide { padding: 4px; }
  .carousel-slide img {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
  }
  .carousel-arrow-prev { left: 16px; }
  .carousel-arrow-next { right: 16px; }
  .carousel-arrow i { font-size: 0.95rem; }
}

/* Respeta el "reduce motion" del usuario (accesibilidad) */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
}
