/* ============================================================
   BROKEN CHAINS APPAREL PLUS — theme.css
   ============================================================ */

/* ---- CSS Variable defaults (overridden by inline style from PHP) ---- */
:root {
  --color-primary:      #b91c1c;
  --color-background:   #ffffff;
  --color-foreground:   #141414;
  --color-secondary-bg: #f0f0f0;
  --color-muted:        #666666;
  --color-accent:       #c9a227;
  --color-border:       #e0e0e0;
  --color-card-bg:      #f5f5f5;
  --color-button-text:  #ffffff;
  --logo-height:        60px;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --shadow-soft:     0 4px 20px -4px rgba(20,20,20,0.06);
  --shadow-elevated: 0 8px 40px -8px rgba(20,20,20,0.14);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --btn-height:         48px;
  --btn-padding:        0 2rem;
  --btn-radius:         0.375rem;
  --btn-font-size:      0.9375rem;
  --btn-font-weight:    600;
  --btn-letter-spacing: 0.04em;
  --btn-text-transform: uppercase;
  --btn-icon-padding:   0.5rem;

  --header-height:      80px;
  --card-radius:        0.75rem;
  --section-padding:    2rem;
  --checkout-gap:       2rem;
  /* Márgenes laterales (Lovable: px-6 → 1.5rem, lg:px-8 → 2rem; tablet con más aire) */
  --page-gutter:        1.5rem;
  --page-gutter-tablet: 2rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--color-background);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

/* ---- Layout Utilities ---- */
.container-wide {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: calc(10px + env(safe-area-inset-left, 0px));
  padding-right: calc(10px + env(safe-area-inset-right, 0px));
}

/* Vertical only — evita pisar padding lateral de .container-wide */
.py-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.6s var(--transition-smooth) forwards; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  border: 2px solid transparent;
}
.btn:hover { opacity: 0.88; }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-button-text);
  border-color: var(--color-primary);
}
.btn-primary:hover { opacity: 0.88; background-color: var(--color-primary); }

.btn-outline {
  background: transparent;
  color: var(--color-foreground);
  border-color: var(--color-foreground);
}
.btn-outline:hover { background-color: var(--color-foreground); color: var(--color-background); }

.btn-outline-light {
  background: transparent;
  color: var(--color-background);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background-color: rgba(255,255,255,0.12); }

.btn-secondary {
  background-color: var(--color-background);
  color: var(--color-foreground);
  border-color: var(--color-background);
}
.btn-secondary:hover { opacity: 0.9; }

.btn-full { width: 100%; }

.btn-lg {
  min-height: 56px;
  padding: 0 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-input, .form-textarea, .shop-search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-muted); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.15);
}
.form-textarea { resize: none; }

.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.25rem; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

/* ============================================================
   BACK LINK
   ============================================================ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.2s;
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--color-foreground); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.5s ease, border-color 0.5s ease;
  color: var(--color-background);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background-color: var(--color-foreground);
  border-bottom-color: rgba(255,255,255,0.1);
}
.site-header .container-wide { position: relative; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (min-width: 1024px) {
  .site-nav { height: 96px; }
}

/* Logo */
.site-logo-link { display: flex; align-items: center; }
.site-logo-img  {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
body.home .site-header:not(.is-solid) .site-logo-img,
body.home .site-header:not(.is-solid) .site-logo-text {
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
}
body.home .site-header.is-solid .site-logo-img,
body.home .site-header.is-solid .site-logo-text {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-background);
  line-height: var(--logo-height);
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Desktop Nav */
.nav-desktop { display: none; }
@media (min-width: 1024px) { .nav-desktop { display: flex; align-items: center; gap: 2rem; } }

.theme-nav-list, .mobile-nav-list { list-style: none; }
@media (min-width: 1024px) {
  .theme-nav-list { display: flex; gap: 2rem; }
}

.theme-nav-list li a,
.mobile-nav-list li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
}
.theme-nav-list li a {
  display: inline-block;
}
.theme-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition-smooth);
}
.theme-nav-list li a:hover { color: rgba(255,255,255,1); }
.theme-nav-list li a:hover::after { transform: scaleX(1); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.nav-socials { display: none; }
@media (min-width: 1024px) {
  .nav-socials { display: flex; align-items: center; gap: 0.5rem; }
}

.nav-social-link {
  padding: 0.375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-social-link:hover { color: rgba(255,255,255,1); }

/* Cart button */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-background);
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.cart-btn:hover { opacity: 0.65; }

.theme-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-cart-count:empty { display: none; }

/* Mobile toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-background);
  transition: opacity 0.2s;
}
.mobile-menu-toggle:hover { opacity: 0.65; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.hamburger-icon { display: flex; align-items: center; }
.icon-close { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-menu  { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0 1.25rem; /* py-4 lateral en Lovable */
  animation: fadeIn 0.3s ease;
}
.mobile-menu.is-open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-nav-links {
  padding-top: 0.25rem;
}

/* Menú hamburguesa: igual que Lovable (flex flex-col gap-4 + enlaces py-2 text-left) */
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
  width: 100%;
}
.mobile-nav-list > li {
  width: 100%;
  margin: 0;
  padding: 0;
}
.mobile-nav-list li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0; /* py-2 → filas ~36px de alto como en Lovable */
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
}
.mobile-nav-list li a:hover {
  color: rgba(255,255,255,1);
}

.mobile-socials {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.75rem;
  align-items: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-foreground);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.hero-inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}
.hero-logo {
  height: clamp(8rem, 12vw, 10rem);
  width: auto;
  margin: 0 auto 2rem;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--color-background);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px) {
  .hero-buttons { flex-direction: row; }
}

/* ============================================================
   VALUE BAR
   ============================================================ */
.value-bar { background-color: var(--color-primary); }
.value-bar-inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 480px) {
  .value-bar-inner { flex-direction: row; justify-content: center; gap: 2rem; }
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-button-text);
  font-family: var(--font-body);
}
.value-bar-icon-wrap {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.value-sep { opacity: 0.4; display: none; }
@media (min-width: 480px) { .value-sep { display: inline; } }

/* ============================================================
   BREAKING CHAINS BANNER
   ============================================================ */
.breaking-chains-banner {}
.breaking-chains-img { width: 100%; height: auto; display: block; }

/* ============================================================
   FEARLESS PILLARS
   ============================================================ */
.fearless-section {
  background-color: var(--color-background);
  padding: 6rem 0;
}
@media (min-width: 1024px) { .fearless-section { padding: 8rem 0; } }

.fearless-layout {
  display: block;
}
@media (min-width: 1024px) {
  .fearless-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
  }
}

.fearless-sidebar {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .fearless-sidebar {
    position: sticky;
    top: 8rem;
    align-self: start;
    text-align: left;
    margin-bottom: 0;
  }
}

.fearless-main-title {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .fearless-main-title {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin: 0 auto;
  }
}

.fearless-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 1rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .fearless-subtitle { margin-left: 0; margin-top: 1.5rem; writing-mode: horizontal-tb; }
}

.fearless-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .fearless-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fearless-grid { grid-template-columns: repeat(4, 1fr); } }

.fearless-card {
  background-color: var(--color-card-bg);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: none;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s var(--transition-smooth);
  cursor: default;
}
.fearless-card:hover {
  box-shadow: var(--shadow-elevated);
}

.fearless-card-letter-wrap {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 0.75rem;
}
.fearless-card-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-foreground);
  transition: color 0.3s;
  line-height: 1;
}
.fearless-card:hover .fearless-card-letter { color: var(--color-primary); }

.fearless-card-icon {
  position: absolute;
  top: -0.25rem;
  right: -1.25rem;
  color: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}
.fearless-card-icon-svg { display: block; }
.fearless-card:hover .fearless-card-icon { opacity: 1; }

.fearless-card-word {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.fearless-card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ============================================================
   FEATURED PRODUCT STRIP
   ============================================================ */
.featured-strip {
  background-color: var(--color-foreground);
  color: var(--color-background);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .featured-inner {
    grid-template-columns: 280px 1fr;
    padding: 0;
  }
}

.featured-image-wrap {
  aspect-ratio: 3/4;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .featured-image-wrap {
    max-width: none;
    margin-top: -1rem;
    margin-bottom: -1rem;
    margin-left: 0;
  }
}
.featured-img { width: 100%; height: 100%; object-fit: cover; }

.featured-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .featured-body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.featured-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
  color: var(--color-background);
}
@media (min-width: 768px) { .featured-title { font-size: 1.875rem; } }
.featured-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 28rem;
}
.featured-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.featured-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview { padding: 5rem 0; }
.about-preview .section-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-preview-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-body { font-family: var(--font-body); color: var(--color-muted); line-height: 1.7; margin-bottom: 1rem; }

.about-quote-card {
  background-color: var(--color-secondary-bg);
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
}
.quote-icon { color: var(--color-primary); margin: 0 auto 1.5rem; }
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}
.about-quote-attr {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
  background-color: var(--color-secondary-bg);
  padding: 5rem 0;
}
.shop-header { text-align: center; margin-bottom: 3rem; }
.shop-header .section-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.shop-search-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}
.shop-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
}
.shop-search-input {
  height: 40px;
  border-radius: 9999px;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
}
.shop-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.2);
}
.shop-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  padding: 0.25rem;
  display: flex;
  align-items: center;
}
.shop-search-clear:hover { color: var(--color-foreground); }

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.shop-filter-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  background-color: var(--color-background);
  color: var(--color-foreground);
}
.shop-filter-btn.is-active {
  background-color: var(--color-primary);
  color: var(--color-button-text);
}
.shop-filter-btn:not(.is-active):hover { background-color: hsl(0, 0%, 90%); color: var(--color-foreground); }

/* Product grid */
.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px)  { .theme-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.theme-product-card-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Product card — contenedor + enlaces imagen/cuerpo (botón rápido fuera del <a>) */
a.theme-product-card__media-link,
a.theme-product-card__body-link {
  color: inherit;
  text-decoration: none;
}
.theme-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.theme-product-card__media-link:focus-visible,
.theme-product-card__body-link:focus-visible {
  outline: 2px solid var(--color-foreground);
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.add_to_cart_button.ajax_add_to_cart:not(.theme-product-card__quick-add) { position: relative; z-index: 2; }

.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--color-secondary-bg);
}
.theme-product-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}
.theme-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease-out;
  display: block;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.05); }

/* Botón + / ir al producto (Lovable) */
a.theme-product-card__quick-add {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 9999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.92) !important;
  background-color: color-mix(in srgb, var(--color-background) 92%, transparent) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--color-foreground) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, opacity 0.2s !important;
}
a.theme-product-card__quick-add:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
  transform: scale(1.1) !important;
  opacity: 1 !important;
}
a.theme-product-card__quick-add.theme-product-card__quick-add--added {
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
  transform: scale(1.1) !important;
}
.theme-product-card__quick-add-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-product-card__quick-add-icon--check {
  display: none;
}
.theme-product-card__quick-add--added .theme-product-card__quick-add-icon--plus {
  display: none;
}
.theme-product-card__quick-add--added .theme-product-card__quick-add-icon--check {
  display: flex;
}
a.theme-product-card__body-link {
  display: block;
  flex: 1;
}
.product-sold-out-img { opacity: 0.6; }

/* Swatches de color en tarjeta (estilo Lovable) */
.theme-product-card__color-swatches {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  max-width: calc(100% - 1.5rem);
  pointer-events: none;
}
.theme-product-card__color-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.theme-product-card__color-dot.is-fallback {
  background-color: var(--color-secondary-bg);
  border-color: var(--color-border);
}

.theme-product-card__info { flex: 1; }

.card-category {
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}
.card-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
  transition: opacity 0.2s;
}
.theme-product-card:hover .card-title { opacity: 0.7; }
.card-price { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted); }

/* Badges */
.sold-out-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}
.new-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* Coming soon cards */
.coming-soon-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  background-color: var(--color-secondary-bg) !important;
}
.coming-soon-lock { color: rgba(102,102,102,0.4); margin-bottom: 0.75rem; flex-shrink: 0; }
.coming-soon-label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(102,102,102,0.6);
}

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 5rem 0;
}
.shop-empty-text { font-family: var(--font-body); color: var(--color-muted); margin-bottom: 1rem; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background-color: var(--color-primary);
  color: var(--color-button-text);
  padding: 5rem 0;
}
.newsletter-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.newsletter-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  letter-spacing: -0.02em;
}
.newsletter-body { font-family: var(--font-body); color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.7; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 480px) { .newsletter-form { flex-direction: row; } }

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-button-text);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.5); box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background-color: var(--color-background); padding: 5rem 0; }
.reviews-inner { max-width: 56rem; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header .section-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

.reviews-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }

.review-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.review-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: none; letter-spacing: 0; }
.review-date { font-family: var(--font-body); font-size: 0.75rem; color: var(--color-muted); }
.review-stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; }
.star-icon { color: var(--color-muted); opacity: 0.3; }
.star-filled { color: var(--color-primary); opacity: 1; }
.review-comment { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; }

/* Review form */
.review-form-wrap {
  background-color: var(--color-secondary-bg);
  border-radius: 0.5rem;
  padding: 2rem;
}
.review-form-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}
.review-form { display: flex; flex-direction: column; gap: 1.25rem; }

.star-rating-input { display: flex; gap: 0.25rem; }
.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: rgba(102, 102, 102, 0.3);
  transition: color 0.2s ease, fill 0.2s ease;
}
.star-btn svg {
  display: block;
  fill: none;
  stroke: currentColor;
  transition: fill 0.2s ease;
}
.star-btn.is-active,
.star-btn.is-hover {
  color: var(--color-primary);
}
.star-btn.is-active svg,
.star-btn.is-hover svg {
  fill: var(--color-primary);
}

/* ============================================================
   CONTACT BANNER
   ============================================================ */
.contact-banner-section {}
.contact-banner-img { width: 100%; height: auto; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
@media (min-width: 1024px) { .footer-grid { padding: 4rem 0; gap: 3rem; } }

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  max-width: 24rem;
  line-height: 1.7;
}
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1.5rem; align-items: center; }
.footer-social-link {
  padding: 0.5rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover { color: rgba(255,255,255,1); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--color-background);
}

.theme-footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-nav-list li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.theme-footer-nav-list li a:hover { color: rgba(255,255,255,1); }

.footer-newsletter-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer-newsletter-form { display: flex; gap: 0.5rem; }
.footer-newsletter-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-background);
  outline: none;
  min-width: 0;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 2px rgba(185,28,28,0.3); }
.footer-newsletter-btn {
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.footer-newsletter-btn:hover { opacity: 0.85; }

.footer-contact-block { margin-top: 1.5rem; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  margin-bottom: 0.5rem;
  word-break: break-all;
}
.footer-contact-link:hover { color: rgba(255,255,255,1); }

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-copy, .footer-motto, .footer-credit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer-credit a:hover { color: rgba(255,255,255,1); }

/* ============================================================
   CART DRAWER
   ============================================================ */
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open #theme-cart-drawer  { transform: translateX(0); }

#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(20,20,20,0.2);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#theme-cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  height: 100dvh;
  width: 100%;
  max-width: min(28rem, 100%);
  background-color: var(--color-background);
  z-index: 101;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-elevated);
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-smooth);
  padding-top: env(safe-area-inset-top, 0px);
  box-sizing: border-box;
}
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer-title-row { display: flex; align-items: center; gap: 0.75rem; }
.cart-drawer-title { font-size: 1.125rem; font-weight: 700; }
.cart-empty-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cart-empty-btn:hover { color: #dc2626; }
.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--color-foreground);
  transition: opacity 0.2s;
}
.cart-close-btn:hover { opacity: 0.6; }

.cart-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  text-align: center;
  gap: 1.5rem;
}
.cart-empty-state svg { color: var(--color-muted); }
.cart-empty-text { font-family: var(--font-body); color: var(--color-muted); }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item { display: flex; gap: 1rem; }
.cart-item-img-link {
  display: block;
  flex-shrink: 0;
  width: 5rem;
  height: 6rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background-color: var(--color-secondary-bg);
}
.cart-item-img-link img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: opacity 0.2s;
}
.cart-item-name:hover { opacity: 0.7; }
.cart-item-price { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted); margin-top: 0.125rem; }
.cart-item-attrs { font-family: var(--font-body); font-size: 0.75rem; color: var(--color-muted); margin-top: 0.25rem; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.cart-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--color-foreground);
  transition: background-color 0.2s;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
}
.cart-qty-btn:hover { background-color: var(--color-secondary-bg); }
.cart-qty-display { font-family: var(--font-body); font-size: 0.875rem; min-width: 1.5rem; text-align: center; }
.cart-remove-btn {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cart-remove-btn:hover { color: var(--color-foreground); }

.cart-drawer-footer {
  padding: 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.cart-subtotal-label { color: var(--color-muted); }
.cart-subtotal-value { font-weight: 500; }
.cart-shipping-note { font-family: var(--font-body); font-size: 0.75rem; color: var(--color-muted); }
.cart-checkout-btn { width: 100%; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-page { padding-top: var(--header-height); min-height: 100vh; }
@media (min-width: 1024px) { .inner-page { padding-top: 96px; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-hero { text-align: center; margin-bottom: 5rem; }
.about-page-h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  margin: 0.5rem 0 1.5rem;
}
.about-page-intro { font-family: var(--font-body); max-width: 40rem; margin: 0 auto; font-size: 1.125rem; line-height: 1.7; color: var(--color-muted); }

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) { .about-values-grid { grid-template-columns: repeat(3, 1fr); } }

.about-value-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}
.about-value-icon { color: var(--color-primary); margin: 0 auto 1rem; }
.about-value-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.about-value-desc { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; }

.about-story-section {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2.5rem;
  margin-bottom: 5rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: var(--color-secondary-bg);
}
@media (min-width: 1024px) { .about-story-section { padding: 4rem; } }
.about-story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.5);
}
.about-story-content { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; }
.about-story-title { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; text-align: center; margin-bottom: 2rem; color: var(--color-foreground); }
.about-story-body { display: flex; flex-direction: column; gap: 1.5rem; font-family: var(--font-body); color: rgba(20,20,20,0.8); line-height: 1.7; }

.about-tagline-section {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 5rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: var(--color-foreground);
}
@media (min-width: 1024px) { .about-tagline-section { padding: 4rem; } }
.about-collage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-tagline-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(20,20,20,0.7);
}
.about-tagline-content { position: relative; z-index: 1; width: 100%; }
.about-tagline-title { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-background); margin-bottom: 1rem; }
.about-tagline-body { font-family: var(--font-body); color: rgba(255,255,255,0.8); max-width: 40rem; margin: 0 auto 1rem; line-height: 1.7; }
.about-tagline-services { font-family: var(--font-body); font-size: 0.875rem; color: rgba(255,255,255,0.7); max-width: 48rem; margin: 0 auto; line-height: 1.7; }
.about-tagline-cta { margin-top: 2rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-max { max-width: 48rem; margin: 0 auto; }
.contact-page-header { text-align: center; margin-bottom: 2.5rem; }
.contact-h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.contact-intro { font-family: var(--font-body); color: var(--color-muted); }

.contact-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.contact-tab-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  background-color: var(--color-secondary-bg);
  color: var(--color-foreground);
}
.contact-tab-btn.is-active { background-color: var(--color-primary); color: var(--color-button-text); }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 2fr; } }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-sidebar-card {
  background-color: var(--color-secondary-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.contact-sidebar-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-body); font-size: 0.875rem; }
.contact-info-item svg { color: var(--color-primary); flex-shrink: 0; }
.contact-info-link { word-break: break-all; transition: color 0.2s; }
.contact-info-link:hover { color: var(--color-primary); }

.contact-follow-links { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-primary);
  transition: opacity 0.2s;
}
.contact-social-link:hover { text-decoration: underline; opacity: 0.8; }

.contact-forms .contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-submit-btn { align-self: flex-start; }

.prayer-notice {
  background-color: var(--color-secondary-bg);
  border-radius: 0.5rem;
  padding: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.contact-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact-success-title { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 1rem; }
.contact-success-body { font-family: var(--font-body); color: var(--color-muted); margin-bottom: 2rem; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page-max { max-width: 48rem; margin: 0 auto; }
.faq-page-header { text-align: center; margin-bottom: 3.5rem; }
.faq-icon { color: var(--color-primary); margin: 0 auto 1rem; }
.faq-h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.faq-intro { font-family: var(--font-body); color: var(--color-muted); }

.faq-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.faq-category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.faq-category-icon { color: var(--color-primary); display: flex; align-items: center; }
.faq-category-title { font-size: 1.25rem; font-weight: 700; }
.faq-items { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  transition: background-color 0.2s;
  gap: 1rem;
}
.faq-question:hover { background-color: rgba(240,240,240,0.5); }
.faq-chevron { flex-shrink: 0; display: flex; align-items: center; color: var(--color-muted); }
.icon-chevron-up { display: none; }
.faq-item.is-open .icon-chevron-down { display: none; }
.faq-item.is-open .icon-chevron-up   { display: block; }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
}
.faq-item.is-open .faq-answer { display: block; animation: fadeIn 0.3s ease; }
.faq-answer p { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; }

.faq-cta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.faq-cta-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.faq-cta-body { font-family: var(--font-body); color: var(--color-muted); margin-bottom: 1.5rem; }

/* ============================================================
   PODCAST PAGE
   ============================================================ */
.podcast-header { text-align: center; margin-bottom: 3.5rem; }
.podcast-icon { color: var(--color-primary); margin: 0 auto 1rem; }
.podcast-h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.podcast-intro { font-family: var(--font-body); color: var(--color-muted); max-width: 40rem; margin: 0 auto; }

.podcast-platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; }
.podcast-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  min-width: 10rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.podcast-platform-link:hover { border-color: var(--color-primary); box-shadow: var(--shadow-soft); }
.podcast-platform-logo { height: 1.75rem; width: auto; }

.podcast-episodes { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.podcast-episode-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth);
}
.card-hover:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }

.podcast-play-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}
a.podcast-play-btn { color: var(--color-button-text); }
.podcast-play-btn:hover:not(.podcast-play-btn--inactive) { opacity: 0.88; }
.podcast-play-btn--inactive {
  cursor: default;
  opacity: 0.45;
  pointer-events: none;
}
.podcast-episode-info { flex: 1; min-width: 0; }
.podcast-episode-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.podcast-episode-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.podcast-episode-dur { font-family: var(--font-body); font-size: 0.75rem; color: var(--color-muted); white-space: nowrap; margin-top: 0.25rem; }
.podcast-episode-desc { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted); margin-top: 0.25rem; line-height: 1.6; }

.podcast-footer { text-align: center; margin-top: 3.5rem; }
.podcast-coming-soon { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted); margin-bottom: 1rem; }

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found-wrap {
  text-align: center;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.not-found-code { font-family: var(--font-display); font-size: 6rem; font-weight: 700; color: var(--color-primary); line-height: 1; }
.not-found-title { font-size: clamp(1.5rem, 4vw, 2.25rem); }
.not-found-body { font-family: var(--font-body); color: var(--color-muted); margin-bottom: 1rem; }

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product .theme-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .single-product .theme-product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.single-product .theme-product-layout > * { min-width: 0; }

.theme-product-gallery { display: flex; flex-direction: column; gap: 0.75rem; }

.theme-product-main-img-wrap {
  aspect-ratio: 3/4;
  background-color: var(--color-secondary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}
.product-main-image { width: 100%; height: 100%; object-fit: cover; }

.theme-product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 100%;
  flex-wrap: wrap;
}
.product-thumb-btn {
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 0.375rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-secondary-bg);
  transition: border-color 0.2s;
  padding: 0;
}
.product-thumb-btn.is-active { border-color: var(--color-foreground); }
.product-thumb-btn:hover   { border-color: var(--color-muted); }
.product-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { padding-top: 2.5rem; } }

.product-categories {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.product-categories a { color: var(--color-muted); transition: color 0.2s; }
.product-categories a:hover { color: var(--color-primary); }

.product-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.product-price .woocommerce-Price-amount { font-size: inherit; }
.product-price del { opacity: 0.5; }
.product-price ins { text-decoration: none; color: var(--color-primary); }

.product-sold-out-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-secondary-bg);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.product-description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 2rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Variaciones — estilo Lovable (bloques + swatches / píldoras) */
.theme-variations {
  width: 100%;
  margin-bottom: 1.5rem;
}
.theme-variation-row {
  margin-bottom: 1.5rem;
}
.theme-variation-row:last-child {
  margin-bottom: 0;
}
.theme-variation-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--color-foreground);
}
.theme-variation-name {
  margin-right: 0.25rem;
}
.theme-variation-value {
  font-weight: 500;
  color: var(--color-foreground);
}
/* Select nativo oculto pero enfocable (WC + accesibilidad) */
.theme-attr-select-hidden,
.theme-variation-select.theme-attr-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
}
.theme-variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.theme-variation-btn {
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  color: var(--color-foreground);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}
.theme-variation-btn--size {
  min-width: 3rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.theme-variation-btn--size:hover:not(:disabled) {
  border-color: var(--color-foreground);
}
.theme-variation-btn--size.is-selected {
  border-color: var(--color-foreground);
  background-color: var(--color-foreground);
  color: var(--color-background);
}
.theme-variation-btn--color {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  padding: 0;
  flex-shrink: 0;
  border-width: 2px;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.12);
}
.theme-variation-btn--color:hover:not(:disabled) {
  transform: scale(1.05);
}
.theme-variation-btn--color.is-selected {
  border-color: var(--color-foreground);
  transform: scale(1.1);
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.12), 0 0 0 1px var(--color-background);
}
.theme-variation-btn:disabled,
.theme-variation-btn.is-unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.theme-variation-btn:focus-visible {
  outline: 2px solid var(--color-foreground);
  outline-offset: 2px;
}
.theme-variation-btn--color.theme-variation-btn--color-fallback {
  background-color: var(--color-secondary-bg);
  box-shadow: inset 0 0 0 1px var(--color-border);
}

/* Qty + Add to cart — fila tipo Lovable (flex gap-3, cantidad compacta, botón flex-1) */
.theme-add-to-cart-area {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.single-product .theme-add-to-cart-area {
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: stretch;
}
@media (max-width: 479px) {
  .single-product .theme-add-to-cart-area { flex-wrap: wrap; }
}
.single-product .theme-add-to-cart-area .theme-quantity-wrapper {
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  min-height: var(--btn-height);
  align-self: stretch;
}
.single-product .theme-add-to-cart-area .single_add_to_cart_button {
  flex: 1 1 0%;
  min-width: 0;
  align-self: stretch;
}

.theme-quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  overflow: hidden;
}
.theme-qty-minus, .theme-qty-plus {
  background: none;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-secondary-bg); }
.theme-qty-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 0;
  background: none;
  color: var(--color-foreground);
  -moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-processing-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 1rem;
}

.product-details-section { border-top: 1px solid var(--color-border); padding-top: 2rem; margin-top: 1rem; }
.product-details-title { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; text-transform: none; letter-spacing: 0; margin-bottom: 1rem; }
.woocommerce-product-details__short-description {
  font-family: var(--font-body);
  overflow-wrap: break-word;
  word-break: break-word;
}
.woocommerce-product-details__short-description ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.woocommerce-product-details__short-description li {
  font-size: 0.875rem;
  color: var(--color-muted);
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.woocommerce-product-details__short-description li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* Single variation wrap */
.single_variation_wrap { margin-top: 1rem; }
.single_variation_wrap .woocommerce-variation-price { margin-bottom: 1rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.single_variation_wrap .theme-add-to-cart-area {
  margin-top: 0;
}

/* Related products */
.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 2.5rem; }
.related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1024px) {
  .related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================================
   ADD TO CART BUTTON OVERRIDES (MANDATORY §11.4.1)
   ============================================================ */
.single_add_to_cart_button.button,
.add_to_cart_button.button:not(.theme-product-card__quick-add),
a.single_add_to_cart_button,
a.add_to_cart_button:not(.theme-product-card__quick-add),
.theme-btn-primary {
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  text-decoration: none !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:not(.theme-product-card__quick-add):hover,
a.single_add_to_cart_button:hover,
a.add_to_cart_button:not(.theme-product-card__quick-add):hover {
  opacity: 0.85 !important;
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
}

/* Disabled state */
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:not(.theme-product-card__quick-add):disabled,
.add_to_cart_button.button:not(.theme-product-card__quick-add).disabled,
.single_add_to_cart_button.button.wc-variation-is-unavailable,
.theme-btn-primary.disabled,
.theme-btn-primary:disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--color-primary) !important;
}

/* Loading state */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* Hide "View cart" link after AJAX add (§11.4.2) */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward {
  display: none !important;
}

/* ============================================================
   WOOCOMMERCE NOTICES (§14.1)
   ============================================================ */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.woocommerce-error {
  background-color: #fef2f2;
  border-left: 4px solid var(--color-primary);
  color: #991b1b;
}
.woocommerce-message {
  background-color: #f0fdf4;
  border-left: 4px solid #16a34a;
  color: #166534;
}
.woocommerce-info {
  background-color: #eff6ff;
  border-left: 4px solid #2563eb;
  color: #1d4ed8;
}
.woocommerce-error a,
.woocommerce-message a,
.woocommerce-info a { color: inherit; text-decoration: underline; }

/* ============================================================
   WOOCOMMERCE CHECKOUT (§13)
   ============================================================ */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout {
  display: block;
}

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--checkout-gap);
    align-items: start;
  }
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
  width: 100%;
  max-width: none;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--color-card-bg);
  border-radius: var(--card-radius);
  padding: var(--section-padding);
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important;
  max-width: none !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  color: var(--color-foreground) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 0.375rem !important;
  background-color: var(--color-background) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(185,28,28,0.15) !important;
  outline: none !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-primary) !important;
  color: var(--color-button-text) !important;
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  opacity: 0.85 !important;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

/* ============================================================
   WOOCOMMERCE THANK YOU PAGE (§22.8)
   ============================================================ */
body.theme-thankyou-page .site-main {
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}
body.theme-thankyou-page .thankyou-wrap { max-width: 800px; margin: 0 auto; padding: 2rem 0; }

body.theme-thankyou-page .woocommerce-order {}
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0 1rem 0;
}

body.theme-thankyou-page .woocommerce-order-overview {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--color-card-bg);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
}
body.theme-thankyou-page .woocommerce-order-overview li strong { color: var(--color-foreground); }

body.theme-thankyou-page .woocommerce-customer-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-customer-details address {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 480px;
  overflow-wrap: break-word;
}

body.theme-thankyou-page .woocommerce-order-details table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
}
body.theme-thankyou-page .woocommerce-order-details table th {
  font-weight: 600;
  color: var(--color-foreground);
  text-align: left;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

body.theme-thankyou-page { overflow-x: hidden; }

/* ============================================================
   PAGE — inner page generic
   ============================================================ */
.inner-page-content {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
.entry-content { font-family: var(--font-body); line-height: 1.7; }
.entry-content h1, .entry-content h2, .entry-content h3 { margin-bottom: 1rem; margin-top: 2rem; }
.entry-content p { margin-bottom: 1rem; color: var(--color-muted); }

/* ============================================================
   RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 639px) {
  .hero-buttons { align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
  .featured-inner { gap: 1.5rem; }
  .about-preview-grid { gap: 2rem; }
  /* FAQ: más aire lateral dentro del acordeón en móvil */
  .faq-question { padding: 1.25rem 1.5rem; }
  .faq-answer { padding: 0 1.5rem 1.25rem; }
  .podcast-episode-card { padding: 1.5rem 1.625rem; }
  .contact-sidebar-card { padding: 1.625rem; }
  .review-card { padding: 1.5rem 1.625rem; }
  .review-form-wrap { padding: 2rem 1.625rem; }
}
