/**
 * Salud y Vida — Main CSS
 * Estilos completos del sitio: header, footer, home, global
 * @package SaludyVida
 */

/* =====================================================
   1. CSS VARIABLES & RESET
   ===================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sv-primary:       #ee2805;
  --sv-primary-dark:  #c91f04;
  --sv-primary-light: #fff5f3;
  --sv-dark:          #000000;
  --sv-dark-soft:     #2d2d2d;
  --sv-gray-900:      #333;
  --sv-gray-600:      #666;
  --sv-gray-400:      #999;
  --sv-gray-200:      #e5e5e5;
  --sv-gray-100:      #f5f5f5;
  --sv-white:         #fff;
  --sv-green:         #22c55e;
  --sv-green-light:   #dcfce7;
  --sv-blue-light:    #dbeafe;
  --sv-shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --sv-shadow-md:     0 4px 20px rgba(0,0,0,0.1);
  --sv-shadow-lg:     0 10px 40px rgba(0,0,0,0.12);
  --sv-radius:        12px;
  --sv-radius-sm:     8px;
  --sv-transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--sv-gray-900);
  overflow-x: hidden;
  padding-top: 0 !important; /* Override Airavata main.css body padding */
  background: var(--sv-white) !important;
}

/* Contact template: fuerza ancho completo y evita layout comprimido */
body.sv-contact-template,
body.sv-contact-template #page,
body.sv-contact-template .site-wrapper,
body.sv-contact-template .site-main,
body.sv-contact-template .sv-top-banner,
body.sv-contact-template .sv-header,
body.sv-contact-template .sv-nav-mobile,
body.sv-contact-template .sv-footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.sv-contact-template {
  min-width: 100%;
  overflow-x: hidden;
}

body.sv-contact-template .sv-top-banner {
  display: block;
}

body.sv-contact-template .sv-top-banner-inner {
  min-width: max-content;
}

body.sv-contact-template .sv-header {
  padding-left: clamp(16px, 4vw, 32px) !important;
  padding-right: clamp(16px, 4vw, 32px) !important;
}

body.sv-contact-template main.page-contacto {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.sv-contact-template main.page-contacto > section {
  width: 100% !important;
  max-width: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

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

a { text-decoration: none; }

/* =====================================================
   2. ANIMATIONS
   ===================================================== */
.sv-fade-up, .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sv-fade-up.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sv-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238,40,5,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(238,40,5,0); }
}
@keyframes sv-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes sv-shake {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-3deg); }
  75%       { transform: rotate(3deg); }
}
@keyframes sv-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes sv-pulse-bg {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.05); opacity: 0.8; }
}
@keyframes sv-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes sv-stock-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.75; }
}
@keyframes sv-cart-bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.4); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
@keyframes sv-cart-item-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes sv-pop-in {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* =====================================================
   3. TOP BANNER
   ===================================================== */
.sv-top-banner {
  background: var(--sv-primary);
  color: var(--sv-white);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}
.sv-top-banner-inner {
  display: inline-flex;
  animation: sv-marquee 20s linear infinite;
}
.sv-top-banner-inner span {
  padding: 0 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =====================================================
   4. HEADER
   ===================================================== */
.sv-header {
  background: var(--sv-dark);
  padding: 12px max(20px, calc(50% - 650px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--sv-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.4s ease;
}
.sv-logo {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--sv-primary);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  text-decoration: none;
}
.sv-logo-img { height: 44px !important; width: auto !important; display: block !important; max-width: none !important; }
.sv-header-right { display: flex; align-items: center; gap: 12px; }
/* Carrito móvil: oculto en desktop, visible en móvil vía CSS (sin JS) */
.sv-cart-mobile { display: none !important; }
.sv-nav-desktop {
  display: flex;
  gap: 28px;
  align-items: center;
}
.sv-nav-desktop li { list-style: none; padding: 0; margin: 0; }
.sv-nav-mobile li { list-style: none; padding: 0; margin: 0; }
.sv-nav-desktop a {
  text-decoration: none;
  color: var(--sv-white);
  font-weight: 500;
  text-transform: capitalize;
  transition: color var(--sv-transition);
  font-size: 15px;
  position: relative;
}
.sv-nav-desktop a:not(.sv-cart-btn):not(.sv-cart-icon)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sv-primary);
  transition: width var(--sv-transition);
}
.sv-nav-desktop a:not(.sv-cart-btn):not(.sv-cart-icon):hover::after { width: 100%; }
.sv-nav-desktop a:hover { color: var(--sv-primary); }
.sv-cart-btn, .sv-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--sv-primary);
  color: var(--sv-white) !important;
  border-radius: var(--sv-radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--sv-transition);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}
.sv-cart-btn:hover, .sv-cart-icon:hover {
  background: var(--sv-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(238,40,5,0.3);
}
.sv-cart-btn svg, .sv-cart-icon svg { width: 20px; height: 20px; fill: var(--sv-white); }
.sv-cart-btn span.sv-cart-count, .sv-cart-btn span.cart-count,
.sv-cart-icon span.sv-cart-count, .sv-cart-icon span.cart-count,
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--sv-dark);
  color: var(--sv-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.sv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.sv-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--sv-primary);
  border-radius: 2px;
  transition: all var(--sv-transition);
}
.sv-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.sv-hamburger.active span:nth-child(2) { opacity: 0; }
.sv-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
.sv-nav-mobile {
  display: none;
  position: fixed;
  top: 68px; /* fallback — JS lo sobreescribe con el bottom real del header */
  left: 0;
  right: 0;
  background: var(--sv-dark);
  box-shadow: var(--sv-shadow-md);
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 999;
}
.sv-nav-mobile.active { max-height: 500px; }
.sv-nav-mobile a {
  text-decoration: none;
  color: var(--sv-white);
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
  padding: 16px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: block;
  transition: all var(--sv-transition);
}
.sv-nav-mobile a:hover {
  color: var(--sv-primary);
  background: rgba(255,255,255,0.06);
  padding-left: 8%;
}

/* =====================================================
   5. BUTTONS
   ===================================================== */
.sv-btn {
  background: var(--sv-primary);
  color: var(--sv-white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--sv-radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--sv-transition);
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.3px;
}
.sv-btn:hover {
  background: var(--sv-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238,40,5,0.35);
  color: var(--sv-white);
}
.sv-btn-lg {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--sv-radius);
}
.sv-btn-cta {
  animation: sv-pulse-glow 2s infinite;
  position: relative;
  overflow: hidden;
}
.sv-btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.sv-btn-cta:hover::after { left: 100%; }
.sv-btn-outline {
  background: var(--sv-white);
  color: var(--sv-primary);
  border: 2px solid var(--sv-primary);
}
.sv-btn-outline:hover {
  background: var(--sv-primary);
  color: var(--sv-white);
}
.sv-btn-white {
  background: var(--sv-white);
  color: var(--sv-primary);
}
.sv-btn-white:hover {
  background: var(--sv-gray-100);
  transform: translateY(-2px);
  color: var(--sv-primary);
}
.sv-btn-dark {
  background: var(--sv-dark);
  color: var(--sv-white);
  border: 2px solid rgba(255,255,255,0.3);
}
.sv-btn-dark:hover {
  background: var(--sv-dark-soft);
  color: var(--sv-white);
  border-color: rgba(255,255,255,0.5);
}
.sv-btn-outline-white {
  background: var(--sv-white);
  color: #000;
  border: 2px solid var(--sv-white);
  position: relative;
  overflow: hidden;
}
.sv-btn-outline-white::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.sv-btn-outline-white:hover::after { left: 100%; }
.sv-btn-outline-white:hover {
  background: rgba(255,255,255,0.85);
  border-color: var(--sv-white);
  color: #000;
}
.sv-btn-full { width: 100%; justify-content: center; }

/* =====================================================
   6. HERO SECTION
   ===================================================== */
.sv-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%),
              url('../images/banner-principal-ia-01.webp') center center / cover no-repeat;
  color: var(--sv-white);
  padding: 60px max(20px, calc(50% - 650px)) 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sv-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%),
                url('../images/banner-principal-ia-01.webp') center top / cover no-repeat;
  }
}
.sv-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238,40,5,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.sv-hero-grid {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.sv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sv-primary);
  color: var(--sv-white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sv-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--sv-white);
}
.sv-hero .sv-highlight, .sv-hero .highlight { color: var(--sv-primary); }
.sv-hero p {
  font-size: 22px;
  margin-bottom: 32px;
  opacity: 0.85;
  line-height: 1.8;
}
.sv-hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.sv-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
}
.sv-hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--sv-primary);
  font-family: "Raleway", sans-serif;
}
.sv-hero-stat span { font-size: 13px; opacity: 0.7; }

/* =====================================================
   7. TRUST BAR
   ===================================================== */
.sv-trust-bar {
  background: var(--sv-gray-100);
  padding: 18px max(20px, calc(50% - 650px));
  border-bottom: 1px solid var(--sv-gray-200);
}
.sv-trust-bar-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sv-trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sv-gray-600);
}
.sv-trust-bar-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* =====================================================
   8. SECTION HEADER (shared)
   ===================================================== */
.sv-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.sv-section-label {
  display: inline-block;
  background: var(--sv-primary-light);
  color: var(--sv-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.sv-section-header h2 {
  font-size: 38px;
  color: var(--sv-dark);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.sv-section-header p { font-size: 17px; color: var(--sv-gray-600); }

/* =====================================================
   9. PRODUCTS GRID
   ===================================================== */
.sv-other-products {
  padding: 80px max(20px, calc(50% - 650px));
  background: var(--sv-gray-100);
}
.sv-products-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.sv-product-card {
  background: var(--sv-white);
  border: 2px solid var(--sv-gray-200);
  border-radius: var(--sv-radius);
  padding: 30px;
  text-align: center;
  transition: all var(--sv-transition);
  position: relative;
  overflow: hidden;
}
.sv-product-card:hover {
  border-color: var(--sv-primary);
  box-shadow: var(--sv-shadow-lg);
  transform: translateY(-6px);
}
.sv-product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sv-primary);
  color: var(--sv-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.sv-product-card img {
  max-width: 220px;
  height: 280px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.sv-product-card:hover img { transform: scale(1.05); }
.sv-product-card h3 { font-size: 22px; margin-bottom: 8px; color: var(--sv-dark); }
.sv-product-card h3 a { text-decoration: none; color: inherit; }
.sv-product-card h3 a:hover { color: var(--sv-primary); }
.sv-product-card .sv-pc-price {
  font-size: 30px;
  color: var(--sv-primary);
  font-weight: 800;
  margin: 12px 0 16px;
  font-family: "Raleway", sans-serif;
}
.sv-product-card .sv-pc-price-old {
  text-decoration: line-through;
  color: var(--sv-gray-400);
  font-size: 16px;
  display: block;
  font-weight: 400;
}
.sv-product-card .sv-btn { width: 100%; }
.sv-product-link { display: block; text-decoration: none; }
.sv-product-link img { margin: 0 auto; }
.sv-tagline { font-size: 13px; color: var(--sv-gray-400); margin-bottom: 8px; }
.sv-price-old { text-decoration: line-through; color: var(--sv-gray-400); font-size: 16px; font-weight: 400; margin-right: 4px; }
.sv-price { font-size: 30px; color: var(--sv-primary); font-weight: 800; font-family: "Raleway", sans-serif; }
/* Home product selector now can render Woo cards like shop */
.sv-home-products-grid {
  margin-bottom: 30px;
}
/* Best-seller badge on pack option */
.sv-best-seller { position: relative; }
.sv-best-seller::before {
  content: attr(data-badge);
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--sv-green);
  color: var(--sv-white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.sv-view-all-btn { text-align: center; }

/* =====================================================
   10. HOW IT WORKS
   ===================================================== */
.sv-how-it-works {
  padding: 80px max(20px, calc(50% - 650px));
  background: var(--sv-white);
}
.sv-steps-grid {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sv-step-card {
  flex: 1;
  text-align: center;
  padding: 10px 24px;
}
.sv-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sv-primary);
  font-size: 36px;
  flex-shrink: 0;
  padding-top: 28px;
  opacity: 0.6;
}
.sv-step-number {
  width: 52px;
  height: 52px;
  background: var(--sv-primary);
  color: var(--sv-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(238,40,5,0.25);
}
.sv-step-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--sv-dark); }
.sv-step-card p {
  font-size: 14px;
  color: var(--sv-gray-600);
  line-height: 1.8;
  max-width: 220px;
  margin: 0 auto;
}

/* =====================================================
   11. PRODUCT SHOWCASE (Featured)
   ===================================================== */
.sv-product-showcase {
  padding: 80px max(20px, calc(50% - 650px));
  background: var(--sv-white);
}
.sv-product-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sv-product-image-section {
  position: sticky;
  top: 80px;
}
.sv-product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #ececec;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sv-product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sv-product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.sv-product-thumb {
  width: 92px;
  height: 92px;
  border: 2px solid var(--sv-gray-200);
  border-radius: var(--sv-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--sv-transition);
  background: var(--sv-gray-100);
}
.sv-product-thumb:hover, .sv-product-thumb.active {
  border-color: var(--sv-primary);
  box-shadow: 0 0 0 2px rgba(238,40,5,0.2);
}
.sv-product-thumb img { width: 100%; height: 100%; object-fit: contain; }
/* Guarantee stack */
.sv-guarantee-stack {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--sv-gray-100);
  border-radius: var(--sv-radius-sm);
  border: 1px solid var(--sv-gray-200);
  transition: all var(--sv-transition);
}
.sv-guarantee-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(238,40,5,0.12);
}
.sv-guarantee-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.sv-guarantee-icon.sv-gi-shipping { background: var(--sv-blue-light); }
.sv-guarantee-icon.sv-gi-natural  { background: var(--sv-green-light); }
.sv-guarantee-icon.sv-gi-usa      { background: #e0e7ff; }
.sv-guarantee-icon.sv-gi-fire     { background: #fee2e2; }
.sv-guarantee-text { flex: 1; text-align: left; }
.sv-guarantee-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--sv-dark); margin-bottom: 2px; }
.sv-guarantee-text span { font-size: 12px; color: var(--sv-gray-600); }
/* Urgency badge */
.sv-urgency-badge {
  background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-primary-dark) 100%);
  color: var(--sv-white);
  padding: 22px 20px;
  border-radius: var(--sv-radius);
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(238,40,5,0.3);
}
.sv-urgency-badge .sv-ub-icon,
.sv-urgency-badge .sv-urgency-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.sv-urgency-badge strong { display: block; font-size: 16px; margin-bottom: 8px; }
.sv-urgency-badge small { font-size: 12px; opacity: 0.9; }
.sv-countdown {
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: var(--sv-radius-sm);
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3px;
}
/* Product Info */
.sv-product-info h2 {
  font-size: 38px;
  margin-bottom: 8px;
  color: var(--sv-dark);
  font-weight: 900;
  letter-spacing: -1px;
}
.sv-product-tagline {
  font-size: 16px;
  color: var(--sv-gray-600);
  margin-bottom: 16px;
}
.sv-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.sv-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.sv-rating-text { font-size: 14px; color: var(--sv-gray-600); font-weight: 500; }
.sv-rating-text strong { color: var(--sv-dark); }
/* Live viewers */
.sv-live-viewers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 16px;
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: var(--sv-radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: #854d0e;
}
.sv-live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: sv-blink 1.5s ease-in-out infinite;
}
.sv-bought-today {
  font-size: 12px;
  color: var(--sv-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
/* Pack selector */
.sv-pack-selector { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.sv-pack-selector-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sv-gray-600);
  margin-bottom: 4px;
}
.sv-pack-option {
  border: 2px solid var(--sv-gray-200);
  border-radius: var(--sv-radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--sv-transition);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.sv-pack-option:hover { border-color: var(--sv-primary); }
.sv-pack-option.selected {
  border-color: var(--sv-primary);
  background: var(--sv-primary-light);
  box-shadow: 0 0 0 3px rgba(238,40,5,0.1);
}
.sv-pack-option.best-seller::before {
  content: "MAS VENDIDO";
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--sv-green);
  color: var(--sv-white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.sv-pack-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--sv-gray-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--sv-transition);
}
.sv-pack-option.selected .sv-pack-radio { border-color: var(--sv-primary); }
.sv-pack-option.selected .sv-pack-radio::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--sv-primary);
  border-radius: 50%;
}
.sv-pack-details strong { display: block; font-size: 16px; color: var(--sv-dark); margin-bottom: 2px; }
.sv-pack-details span { font-size: 13px; color: var(--sv-gray-600); }
.sv-pack-details .sv-free-ship { color: var(--sv-green); font-weight: 600; }
.sv-pack-price { text-align: right; }
.sv-pack-price .sv-pack-original { font-size: 13px; color: var(--sv-gray-400); text-decoration: line-through; display: block; }
.sv-pack-price .sv-pack-current { font-size: 24px; font-weight: 800; color: var(--sv-primary); font-family: "Raleway", sans-serif; }
.sv-pack-price .sv-pack-each { font-size: 11px; color: var(--sv-gray-600); display: block; }
/* Price box */
.sv-price-box {
  background: linear-gradient(135deg, var(--sv-primary-light) 0%, #ffe8e3 100%);
  padding: 24px;
  border-radius: var(--sv-radius);
  margin: 20px 0;
  border: 2px solid var(--sv-primary);
  position: relative;
  overflow: hidden;
}
.sv-price-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(238,40,5,0.05) 0%, transparent 70%);
  animation: sv-pulse-bg 3s ease-in-out infinite;
}
.sv-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sv-gray-600);
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.sv-price-row, .price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.sv-price-original, .price-original { font-size: 18px; color: var(--sv-gray-400); text-decoration: line-through; font-weight: 400; }
.sv-discount-badge, .discount-badge { background: var(--sv-primary); color: var(--sv-white); padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.sv-price-current { font-size: 56px; font-weight: 900; color: var(--sv-primary); display: block; font-family: "Raleway", sans-serif; letter-spacing: -3px; line-height: 1; position: relative; z-index: 1; }
.sv-price-save, .price-save { background: var(--sv-dark); color: var(--sv-white); padding: 10px 16px; border-radius: var(--sv-radius-sm); font-size: 14px; font-weight: 700; display: inline-block; position: relative; z-index: 1; margin-top: 10px; }
/* Micro urgency */
.sv-micro-urgency {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--sv-gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sv-micro-urgency strong { color: var(--sv-primary); }
.sv-ship-today {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sv-green-light);
  color: #166534;
  padding: 8px 14px;
  border-radius: var(--sv-radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  justify-content: center;
}
/* Stock bar */
.sv-stock-bar-container { margin-top: 12px; }
.sv-stock-bar-text { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.sv-stock-bar-text .sv-stock-warn { color: var(--sv-primary); }
.sv-stock-bar-text .sv-stock-total { color: var(--sv-gray-400); }
.sv-stock-bar { width: 100%; height: 8px; background: var(--sv-gray-200); border-radius: 4px; overflow: hidden; }
.sv-stock-bar-fill { height: 100%; background: linear-gradient(90deg, var(--sv-primary), #ff6b35); border-radius: 4px; transition: width 1s ease; animation: sv-stock-pulse 2s ease-in-out infinite; }
/* Payment badges */
.sv-payment-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  background: var(--sv-gray-100);
  border-radius: var(--sv-radius-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.sv-payment-badges .sv-secure-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sv-green);
}
.sv-payment-badges .sv-secure-text svg { width: 16px; height: 16px; stroke: var(--sv-green); fill: none; stroke-width: 2; }
.sv-card-logos {
  display: flex;
  align-items: center;
  gap: 7px;
}
.sv-card-logos__label {
  font-size: 11px;
  font-weight: 600;
  color: #777;
  white-space: nowrap;
  margin-right: 2px;
}
.sv-card-logo {
  width: 46px;
  height: 29px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  display: block;
  flex-shrink: 0;
}
/* Video */
.sv-video-section { margin: 28px 0; }
.sv-video-label { background: var(--sv-dark); color: var(--sv-white); padding: 10px 18px; font-size: 14px; font-weight: 600; text-align: center; border-radius: var(--sv-radius-sm) var(--sv-radius-sm) 0 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.sv-video-container { background: #000; border-radius: 0 0 var(--sv-radius-sm) var(--sv-radius-sm); overflow: hidden; box-shadow: var(--sv-shadow-lg); }
.sv-video-container video { width: 100%; height: auto; display: block; }

/* =====================================================
   12. BENEFITS
   ===================================================== */
.sv-benefits {
  padding: 80px max(20px, calc(50% - 650px));
  background: var(--sv-white);
}
.sv-benefits-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sv-benefit-card {
  background: var(--sv-white);
  padding: 36px 28px;
  border-radius: var(--sv-radius);
  text-align: center;
  box-shadow: var(--sv-shadow-sm);
  transition: all var(--sv-transition);
  border: 1px solid var(--sv-gray-200);
}
.sv-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sv-shadow-lg);
  border-color: var(--sv-primary);
}
.sv-benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sv-primary-light);
  border-radius: 16px;
}
.sv-benefit-icon svg { width: 30px; height: 30px; stroke: var(--sv-primary); fill: none; stroke-width: 2; }
.sv-benefit-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--sv-dark); }
.sv-benefit-card p { color: var(--sv-gray-600); line-height: 1.7; font-size: 14px; }

/* =====================================================
   13. CTA STRIP
   ===================================================== */
.sv-cta-strip {
  background: linear-gradient(90deg, var(--sv-dark) 0%, var(--sv-dark-soft) 100%);
  padding: 28px max(20px, calc(50% - 650px));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sv-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(238,40,5,0.03) 10px, rgba(238,40,5,0.03) 20px);
}
.sv-cta-strip-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.sv-cta-strip-text { color: var(--sv-white); font-size: 18px; font-weight: 700; font-family: "Raleway", sans-serif; }
.sv-cta-strip-text span { color: var(--sv-primary); }

/* =====================================================
   14. TESTIMONIALS
   ===================================================== */
.sv-testimonials {
  padding: 80px max(20px, calc(50% - 650px));
  background: var(--sv-gray-100);
}
.sv-testimonials-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sv-testimonial-card {
  background: var(--sv-white);
  padding: 32px 28px;
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow-sm);
  position: relative;
  transition: all var(--sv-transition);
}
.sv-testimonial-card:hover {
  box-shadow: var(--sv-shadow-md);
  transform: translateY(-4px);
}
.sv-testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  color: var(--sv-primary);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}
.sv-testimonial-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.sv-testimonial-text { font-size: 15px; color: var(--sv-gray-900); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.sv-testimonial-author { display: flex; align-items: center; gap: 12px; }
.sv-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sv-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--sv-primary);
  font-family: "Raleway", sans-serif;
  flex-shrink: 0;
}
.sv-testimonial-name { font-weight: 700; font-size: 15px; color: var(--sv-dark); }
.sv-testimonial-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--sv-green);
  font-weight: 600;
}
.sv-testimonial-verified svg { width: 14px; height: 14px; fill: var(--sv-green); }

/* =====================================================
   15. INGREDIENTS / BENEFITS CARDS
   ===================================================== */
.sv-ingredients {
  padding: 80px max(20px, calc(50% - 650px));
  background: var(--sv-white);
}
.sv-ingredients-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sv-ingredient-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--sv-radius);
  background: var(--sv-gray-100);
  transition: all var(--sv-transition);
  border: 1px solid transparent;
}
.sv-ingredient-card:hover {
  background: var(--sv-primary-light);
  border-color: rgba(238,40,5,0.2);
}
.sv-ingredient-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--sv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--sv-shadow-sm);
}
.sv-ingredient-info h4 { font-size: 16px; color: var(--sv-dark); margin-bottom: 4px; }
.sv-ingredient-info p { font-size: 13px; color: var(--sv-gray-600); line-height: 1.6; }

/* =====================================================
   16. GUARANTEE SECTION
   ===================================================== */
.sv-guarantee-section {
  padding: 60px max(20px, calc(50% - 650px));
  background: var(--sv-white);
}
.sv-guarantee-banner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid var(--sv-green);
  border-radius: var(--sv-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sv-guarantee-shield { font-size: 48px; flex-shrink: 0; }
.sv-guarantee-banner h3 { font-size: 24px; color: var(--sv-dark); margin: 0; }

/* =====================================================
   17. FAQ
   ===================================================== */
.sv-faq {
  padding: 80px max(20px, calc(50% - 650px));
  background: var(--sv-gray-100);
}
.sv-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-faq-item {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  overflow: hidden;
  box-shadow: var(--sv-shadow-sm);
  border: 1px solid var(--sv-gray-200);
  transition: all var(--sv-transition);
}
.sv-faq-item:hover { border-color: var(--sv-primary); }
.sv-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--sv-dark);
  text-align: left;
  font-family: "Open Sans", sans-serif;
}
.sv-faq-question:hover { color: var(--sv-primary); }
.sv-faq-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--sv-transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.sv-faq-item.open .sv-faq-arrow { transform: rotate(180deg); }
.sv-faq-arrow svg { width: 16px; height: 16px; stroke: var(--sv-gray-600); fill: none; stroke-width: 2.5; }
.sv-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.sv-faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--sv-gray-600); line-height: 1.7; }
.sv-faq-item.open .sv-faq-answer { max-height: 300px; }

/* =====================================================
   18. TRUST STATS
   ===================================================== */
.sv-trust-stats {
  background: var(--sv-dark);
  color: var(--sv-white);
  padding: 60px max(20px, calc(50% - 650px));
}
.sv-trust-stats-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.sv-trust-stat-item { padding: 20px; }
.sv-trust-stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238,40,5,0.1);
  border: 2px solid var(--sv-primary);
  border-radius: 50%;
}
.sv-trust-stat-icon svg { width: 24px; height: 24px; stroke: var(--sv-primary); fill: none; stroke-width: 2; }
.sv-trust-stat-item h3 { font-size: 32px; color: var(--sv-primary); margin-bottom: 6px; font-weight: 900; font-family: "Raleway", sans-serif; }
.sv-trust-stat-item p { font-size: 14px; opacity: 0.8; }

/* =====================================================
   19. FINAL CTA SECTION
   ===================================================== */
.sv-cta-section, .sv-cta-final {
  background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-primary-dark) 100%);
  color: var(--sv-white);
  padding: 80px max(20px, calc(50% - 650px));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sv-cta-section::before, .sv-cta-final::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.sv-cta-section h2, .sv-cta-final h2 { font-size: 42px; margin-bottom: 16px; font-weight: 900; letter-spacing: -1px; position: relative; z-index: 1; }
.sv-cta-section p, .sv-cta-final p { font-size: 18px; margin-bottom: 36px; opacity: 0.95; position: relative; z-index: 1; max-width: 600px; margin-left: auto; margin-right: auto; }
.sv-cta-section .sv-btn, .sv-cta-final .sv-btn { position: relative; z-index: 1; }

/* =====================================================
   20. FOOTER
   ===================================================== */
.sv-footer {
  background: var(--sv-dark);
  color: var(--sv-white);
  padding: 50px max(20px, calc(50% - 650px)) 30px;
}
.sv-footer-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.sv-footer-col h4 { font-size: 16px; margin-bottom: 16px; color: var(--sv-white); font-weight: 700; }
.sv-footer-col p { font-size: 14px; opacity: 0.7; line-height: 1.7; margin-bottom: 16px; }
.sv-footer-col a { display: block; color: var(--sv-white); opacity: 0.7; text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: all var(--sv-transition); }
.sv-footer-col a:hover { opacity: 1; color: var(--sv-primary); }
.sv-footer-col .sv-footer-logo-link { display: inline-block; margin-bottom: 16px; opacity: 1; }
.sv-footer-col .sv-footer-logo-link:hover { opacity: 1; color: inherit; }
.sv-footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 100%;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}
.sv-footer-menu { list-style: none; margin: 0; padding: 0; }
.sv-footer-menu li { list-style: none; margin: 0; padding: 0; }
.sv-footer-menu li a { text-transform: capitalize; }
.sv-footer-social { display: flex; gap: 12px; }
.sv-footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0.8;
  transition: all var(--sv-transition);
}
.sv-footer-social a:hover { background: var(--sv-primary); border-color: var(--sv-primary); opacity: 1; }
.sv-footer-social a svg { width: 18px; height: 18px; fill: var(--sv-white); }
.sv-newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.sv-newsletter-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--sv-radius-sm);
  background: rgba(255,255,255,0.05);
  color: var(--sv-white);
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  outline: none;
  transition: border-color var(--sv-transition);
}
.sv-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.sv-newsletter-form input:focus { border-color: var(--sv-primary); }
.sv-newsletter-form button {
  align-self: flex-start;
  padding: 12px 20px;
  background: var(--sv-primary);
  color: var(--sv-white);
  border: none;
  border-radius: var(--sv-radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--sv-transition);
  font-family: "Open Sans", sans-serif;
}
.sv-newsletter-form button:hover { background: var(--sv-primary-dark); }
.sv-footer-col--disclaimer h4 { font-size: 16px; color: var(--sv-white); font-weight: 700; margin-bottom: 16px; opacity: 1; }
.sv-footer-col--disclaimer p { font-size: 12px; opacity: 0.65; line-height: 1.6; }
.sv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}
.sv-footer-bottom p { font-size: 12px; opacity: 0.5; margin-bottom: 8px; line-height: 1.6; }

/* =====================================================
   21. WHATSAPP FLOAT
   ===================================================== */
.sv-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all var(--sv-transition);
  text-decoration: none;
}
.sv-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.sv-whatsapp-float svg { width: 32px; height: 32px; fill: var(--sv-white); }
.sv-whatsapp-float .sv-wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--sv-white);
  color: var(--sv-dark);
  padding: 10px 16px;
  border-radius: var(--sv-radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--sv-shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--sv-transition);
}
.sv-whatsapp-float:hover .sv-wa-tooltip { opacity: 1; }

/* =====================================================
   22. STICKY MOBILE CTA
   ===================================================== */
.sv-sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sv-white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 950;
  align-items: center;
  gap: 12px;
}
.sv-sticky-cta-mobile .sv-sticky-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--sv-primary);
  font-family: "Raleway", sans-serif;
}
.sv-sticky-cta-mobile .sv-sticky-price small {
  font-size: 12px;
  color: var(--sv-gray-400);
  text-decoration: line-through;
  display: block;
  font-weight: 400;
}
.sv-sticky-cta-mobile .sv-btn { flex: 1; text-align: center; padding: 14px; }

/* =====================================================
   23. STICKY DESKTOP CTA
   ===================================================== */
.sv-sticky-desktop-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--sv-white);
  padding: 10px max(20px, calc(50% - 650px));
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  animation: sv-cta-fadein 0.3s ease;
}
.sv-sticky-desktop-cta.visible { display: flex; }
@keyframes sv-cta-fadein {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sv-sticky-desktop-info { display: flex; align-items: center; gap: 16px; }
.sv-sticky-desktop-info img { width: 40px; height: 40px; object-fit: contain; }
.sv-sticky-desktop-name { font-weight: 700; font-size: 15px; color: var(--sv-dark); }
.sv-sticky-desktop-rating { color: #f59e0b; font-size: 14px; }
.sv-sticky-desktop-right { display: flex; align-items: center; gap: 16px; }
.sv-sticky-desktop-price { font-size: 24px; font-weight: 900; color: var(--sv-primary); font-family: "Raleway", sans-serif; }
.sv-sticky-desktop-price small { font-size: 14px; color: var(--sv-gray-400); text-decoration: line-through; margin-right: 8px; font-weight: 400; }

/* =====================================================
   24. LIVE NOTIFICATION
   ===================================================== */
.sv-live-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 890;
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--sv-green);
}
.sv-live-notification.show { transform: translateX(0); opacity: 1; }
.sv-live-notif-icon { width: 42px; height: 42px; background: var(--sv-green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.sv-live-notif-text { flex: 1; }
.sv-live-notif-text strong { display: block; font-size: 13px; color: var(--sv-dark); margin-bottom: 2px; }
.sv-live-notif-text span { font-size: 11px; color: var(--sv-gray-600); }
.sv-live-notif-close { position: absolute; top: 6px; right: 8px; background: none; border: none; font-size: 14px; color: var(--sv-gray-400); cursor: pointer; padding: 2px; line-height: 1; }

/* =====================================================
   25. EXIT POPUP
   ===================================================== */
.sv-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.sv-exit-overlay.show { display: flex; }
.sv-exit-popup {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: sv-pop-in 0.4s ease;
}
.sv-exit-popup-header {
  background: linear-gradient(135deg, var(--sv-primary), var(--sv-primary-dark));
  color: var(--sv-white);
  padding: 30px;
  text-align: center;
}
.sv-exit-popup-header h3 { font-size: 26px; font-weight: 900; margin-bottom: 8px; }
.sv-exit-popup-header p { font-size: 15px; opacity: 0.9; }
.sv-exit-popup-body { padding: 30px; text-align: center; }
.sv-exit-popup-discount { font-size: 52px; font-weight: 900; color: var(--sv-primary); font-family: "Raleway", sans-serif; margin-bottom: 8px; }
.sv-exit-popup-sub { font-size: 15px; color: var(--sv-gray-600); margin-bottom: 24px; }
.sv-exit-popup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 24px; cursor: pointer; z-index: 1; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.sv-exit-popup-close:hover { color: var(--sv-white); }
.sv-exit-popup-timer { background: #fef3c7; border: 1px solid #fde047; padding: 10px; border-radius: var(--sv-radius-sm); font-size: 13px; font-weight: 600; color: #92400e; margin-bottom: 20px; }
.sv-exit-popup-no { display: block; margin-top: 12px; font-size: 12px; color: var(--sv-gray-400); cursor: pointer; background: none; border: none; font-family: "Open Sans", sans-serif; }
.sv-exit-popup-no:hover { color: var(--sv-gray-600); }

/* =====================================================
   26. CART SIDEBAR
   ===================================================== */
.sv-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.sv-cart-overlay.open { opacity: 1; visibility: visible; }
.sv-cart-sidebar { position: fixed; top: 0; right: -420px; width: 420px; max-width: 90vw; height: 100vh; background: var(--sv-white); z-index: 9999; transition: right 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -5px 0 30px rgba(0,0,0,0.15); }
.sv-cart-sidebar.open { right: 0; }
.sv-cart-header { padding: 20px 24px; border-bottom: 1px solid var(--sv-gray-200); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.sv-cart-header h3 { font-size: 18px; display: flex; align-items: center; gap: 8px; }
.sv-cart-header-count { background: var(--sv-primary); color: var(--sv-white); width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.sv-cart-close { background: none; border: none; cursor: pointer; padding: 8px; border-radius: 50%; transition: background 0.2s; }
.sv-cart-close:hover { background: var(--sv-gray-100); }
.sv-cart-close svg { width: 24px; height: 24px; stroke: var(--sv-gray-900); fill: none; stroke-width: 2; }
.sv-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.sv-cart-empty { text-align: center; padding: 60px 20px; }
.sv-cart-empty svg { width: 80px; height: 80px; stroke: var(--sv-gray-200); fill: none; stroke-width: 1; margin-bottom: 16px; }
.sv-cart-empty p { color: var(--sv-gray-400); margin-bottom: 20px; font-size: 15px; }
.sv-cart-item { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--sv-gray-100); position: relative; animation: sv-cart-item-in 0.3s ease; }
.sv-cart-item-img { width: 80px; height: 80px; border-radius: var(--sv-radius-sm); background: var(--sv-gray-100); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sv-cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.sv-cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.sv-cart-item-name { font-weight: 600; font-size: 14px; color: var(--sv-gray-900); line-height: 1.3; }
.sv-cart-item-variant { font-size: 12px; color: var(--sv-gray-400); }
.sv-cart-item-price { font-weight: 700; color: var(--sv-primary); font-size: 15px; }
.sv-cart-item-price .sv-original { text-decoration: line-through; color: var(--sv-gray-400); font-weight: 400; font-size: 12px; margin-right: 6px; }
.sv-cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.sv-cart-qty { display: flex; align-items: center; border: 1px solid var(--sv-gray-200); border-radius: 6px; overflow: hidden; }
.sv-cart-qty button { width: 32px; height: 32px; border: none; background: var(--sv-gray-100); cursor: pointer; font-size: 16px; font-weight: 600; color: var(--sv-gray-900); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.sv-cart-qty button:hover { background: var(--sv-gray-200); }
.sv-cart-qty span { width: 36px; text-align: center; font-size: 14px; font-weight: 600; }
.sv-cart-item-remove { background: none; border: none; cursor: pointer; color: var(--sv-gray-400); font-size: 12px; transition: color 0.2s; padding: 4px; }
.sv-cart-item-remove:hover { color: var(--sv-primary); }
.sv-cart-footer { border-top: 2px solid var(--sv-gray-200); padding: 20px 24px; flex-shrink: 0; background: var(--sv-gray-100); }
.sv-cart-subtotal-row, .sv-cart-shipping-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--sv-gray-600); }
.sv-cart-shipping-row .sv-free { color: var(--sv-green); font-weight: 600; }
.sv-cart-total-row { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding-top: 12px; border-top: 1px solid var(--sv-gray-200); margin-top: 8px; }
.sv-cart-footer .sv-btn { width: 100%; margin-top: 16px; font-size: 16px; padding: 16px; }
.sv-cart-footer-links { display: flex; justify-content: space-between; margin-top: 12px; font-size: 13px; }
.sv-cart-footer-links a { color: var(--sv-gray-600); text-decoration: none; transition: color 0.2s; }
.sv-cart-footer-links a:hover { color: var(--sv-primary); }
.sv-cart-badge-bounce { animation: sv-cart-bounce 0.6s ease; }
.sv-cart-added-toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--sv-dark); color: var(--sv-white); padding: 14px 28px; border-radius: var(--sv-radius-sm); font-size: 14px; font-weight: 600; z-index: 10000; opacity: 0; transition: all 0.3s ease; pointer-events: none; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.sv-cart-added-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.sv-cart-added-toast svg { width: 20px; height: 20px; stroke: var(--sv-green); fill: none; stroke-width: 2; }

/* =====================================================
   27. RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .sv-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .sv-hero-text { max-width: 100%; }
  .sv-hero h1 { font-size: 40px; }
  .sv-footer-grid { grid-template-columns: 1fr 1fr 1fr; }

  /* Product showcase en tablet */
  .sv-product-container { gap: 40px; }
  .sv-product-info h2 { font-size: 30px; }
  .sv-price-current { font-size: 50px; }

  /* Grilla productos: 3 columnas en tablet */
  .sv-home-products-grid,
  .airavata-shop__content .airavata-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  /* Relacionados: 2 columnas en tablet */
  .airavata-related-products .airavata-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .sv-top-banner { font-size: 12px; padding: 8px 15px; }
  .sv-logo { font-size: 20px; }
  .sv-nav-desktop { display: none; }
  .sv-hamburger { display: flex; }
  .sv-cart-mobile { display: flex !important; }
  .sv-nav-mobile { display: flex; }

  .sv-hero { padding: 40px max(20px, calc(50% - 650px)) 60px; }
  .sv-hero h1 { font-size: 32px; }
  .sv-hero p { font-size: 16px; }
  .sv-hero-stats { flex-wrap: wrap; gap: 20px; }
  .sv-hero .sv-btn      { padding: 11px 22px; font-size: 14px; }
  .sv-hero .sv-btn-lg   { padding: 11px 22px; font-size: 14px; }

  .sv-trust-bar-inner { gap: 20px; }
  .sv-trust-bar-item { font-size: 11px; }

  .sv-product-showcase { padding: 50px max(20px, calc(50% - 650px)); }
  .sv-product-container { grid-template-columns: 1fr; gap: 30px; }
  .sv-product-image-section { position: static; }
  .sv-product-main-image { max-width: 560px; margin: 0 auto; }
  .sv-product-info h2 { font-size: 28px; }
  .sv-price-current { font-size: 42px; }

  /* Guarantee stack */
  .sv-guarantee-stack { gap: 8px; }
  .sv-guarantee-item { padding: 10px 14px; gap: 12px; }
  .sv-guarantee-icon { width: 36px; height: 36px; font-size: 17px; flex-shrink: 0; }
  .sv-guarantee-text strong { font-size: 13px; }
  .sv-guarantee-text span { font-size: 11px; }

  /* Urgency badge & countdown */
  .sv-urgency-badge { padding: 16px 14px; margin-top: 14px; }
  .sv-urgency-badge strong { font-size: 14px; }
  .sv-countdown { font-size: 20px; padding: 8px; letter-spacing: 2px; }

  /* Pack selector */
  .sv-pack-selector { gap: 10px; margin-bottom: 16px; }
  .sv-pack-option { padding: 12px 14px; }
  .sv-pack-current { font-size: 18px; }

  /* Price box */
  .sv-price-box { padding: 16px 18px; }
  .price-original { font-size: 14px; }

  /* Payment badges */
  .sv-payment-badges { gap: 10px; padding: 12px 14px; flex-wrap: wrap; justify-content: center; }
  .sv-card-logo { width: 38px; height: 24px; }
  .sv-card-logos { gap: 5px; }

  .sv-section-header h2 { font-size: 28px; }
  .sv-steps-grid { flex-direction: column; align-items: center; }
  .sv-step-arrow {
    align-self: center;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
  }
  .sv-step-card { padding: 10px 20px; width: 100%; max-width: 340px; }

  .sv-benefits { padding: 50px max(20px, calc(50% - 650px)); }
  .sv-benefits-grid { grid-template-columns: 1fr; gap: 20px; }

  .sv-testimonials { padding: 50px max(20px, calc(50% - 650px)); }
  .sv-testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

  .sv-ingredients { padding: 50px max(20px, calc(50% - 650px)); }
  .sv-ingredients-grid { grid-template-columns: 1fr; }

  .sv-other-products { padding: 50px max(20px, calc(50% - 650px)); }
  .sv-products-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Grilla productos: 2 columnas en móvil */
  .sv-home-products-grid,
  .airavata-shop__content .airavata-products-grid,
  .airavata-related-products .airavata-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .sv-guarantee-banner { flex-direction: column; text-align: center; padding: 16px 12px; }
  .sv-guarantee-shield { width: 80px; height: 80px; font-size: 48px; }
  .sv-hero-image img { max-height: 280px; }
  .sv-hero-image-badge { top: 0; right: 0; font-size: 14px; padding: 8px 14px; }

  .sv-trust-stats { padding: 50px max(20px, calc(50% - 650px)); }
  .sv-trust-stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .sv-cta-section, .sv-cta-final { padding: 50px max(20px, calc(50% - 650px)); }
  .sv-cta-section h2, .sv-cta-final h2 { font-size: 28px; }

  .sv-footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .sv-sticky-cta-mobile { display: flex; }
  .sv-whatsapp-float { bottom: 80px; }
  .sv-sticky-desktop-cta { display: none !important; }
  .sv-cta-strip-inner { flex-direction: column; gap: 14px; }
  .sv-cta-strip-text { font-size: 15px; }

  .sv-live-notification { left: 10px; right: 10px; bottom: 80px; max-width: none; }

  body:has(.sv-sticky-cta-mobile) { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .sv-hero h1 { font-size: 26px; }
  .sv-hero-stats { gap: 16px; }
  .sv-hero-stat strong { font-size: 22px; }
  .sv-hero .sv-btn,
  .sv-hero .sv-btn-lg  { padding: 10px 18px; font-size: 13px; }

  /* Pack option — 2 columnas en móvil pequeño */
  .sv-pack-option { grid-template-columns: auto 1fr; gap: 10px; padding: 10px 12px; }
  .sv-pack-price { grid-column: span 2; text-align: left; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .sv-pack-each { display: none; }

  /* Precio y countdown más pequeños en pantallas muy pequeñas */
  .sv-price-current { font-size: 36px; }
  .sv-countdown { font-size: 18px; letter-spacing: 1px; }

  /* Payment badges en columna en pantallas muy pequeñas */
  .sv-payment-badges { flex-direction: column; align-items: center; gap: 8px; }
  .sv-card-logo { width: 34px; height: 21px; }
  .sv-card-logos { flex-wrap: wrap; justify-content: center; }

  /* Producto main image más pequeño */
  .sv-product-main-image { padding: 14px; }

  /* Sección showcase más compacta */
  .sv-product-showcase { padding: 30px max(16px, calc(50% - 650px)); }

  /* Grilla productos: 1 columna en móvil muy pequeño */
  .sv-home-products-grid,
  .airavata-shop__content .airavata-products-grid,
  .airavata-related-products .airavata-products-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

@media (min-width: 769px) {
  .sv-sticky-cta-mobile { display: none !important; }
}

/* =====================================================
   28. WOOCOMMERCE — SV VISUAL SYSTEM
   ===================================================== */
body.woocommerce,
body.woocommerce-page,
body.woo-shop-page,
body.woo-product-page,
body.woo-cart-page,
body.woo-checkout-page,
body.woocommerce-account {
  background: #f5f5f5 !important;
}

/* Shop/catalog background */
body.woo-shop-page,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag {
  background: #f5f5f5 !important;
}

main.site-main.woo-shop-page,
body.post-type-archive-product main.site-main,
body.tax-product_cat main.site-main,
body.tax-product_tag main.site-main {
  background: #f5f5f5 !important;
}

body.woocommerce main.site-main,
body.woocommerce-page main.site-main {
  padding-top: 24px;
  padding-bottom: 60px;
}

/* Checkout — estandarizar a 1300px igual que el resto */
.ck-page-wrapper {
  max-width: 1300px !important;
}

/* Single producto — contenedor estandarizado */
.woo-product-page .product,
body.woocommerce.single-product div.product {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(20px, calc(50% - 650px));
  padding-right: max(20px, calc(50% - 650px));
}

/* Relacionados y after-summary — mismo ancho */
.airavata-related-products,
.airavata-product-detail .pd-after-summary {
  max-width: 1300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: max(20px, calc(50% - 650px)) !important;
  padding-right: max(20px, calc(50% - 650px)) !important;
}

body.woocommerce h1,
body.woocommerce h2,
body.woocommerce h3,
body.woocommerce h4,
body.woocommerce-page h1,
body.woocommerce-page h2,
body.woocommerce-page h3,
body.woocommerce-page h4 {
  font-family: "Raleway", sans-serif;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--sv-primary) !important;
  color: var(--sv-white) !important;
  border: none !important;
  border-radius: var(--sv-radius-sm) !important;
  font-weight: 700 !important;
  padding: 12px 20px !important;
  transition: all var(--sv-transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--sv-primary-dark) !important;
  transform: translateY(-1px);
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce select,
.woocommerce textarea {
  border: 1px solid var(--sv-gray-200) !important;
  border-radius: var(--sv-radius-sm) !important;
  background: var(--sv-white) !important;
  min-height: 44px;
}

.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus {
  border-color: var(--sv-primary) !important;
  box-shadow: 0 0 0 3px rgba(238, 40, 5, 0.12) !important;
  outline: none;
}

/* Shop + listings */
.airavata-shop-breadcrumb,
.airavata-shop__sidebar-inner,
.airavata-toolbar,
.airavata-product-card,
.airavata-shop__content .woocommerce-pagination ul,
.airavata-shop__content .woocommerce-info {
  border-radius: var(--sv-radius);
}

.airavata-shop-breadcrumb,
.airavata-shop__sidebar-inner,
.airavata-toolbar,
.airavata-product-card,
.airavata-shop__content .woocommerce-pagination ul,
.airavata-shop__content .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Shop UI (filtros, breadcrumb, toolbar): sin tarjetas blancas */
body.woo-shop-page .airavata-shop-breadcrumb,
body.woo-shop-page .airavata-shop__sidebar-inner,
body.woo-shop-page .airavata-toolbar,
body.woo-shop-page .airavata-shop__content .woocommerce-pagination ul,
body.woo-shop-page .airavata-shop__content .woocommerce-info,
body.post-type-archive-product .airavata-shop-breadcrumb,
body.post-type-archive-product .airavata-shop__sidebar-inner,
body.post-type-archive-product .airavata-toolbar,
body.post-type-archive-product .airavata-shop__content .woocommerce-pagination ul,
body.post-type-archive-product .airavata-shop__content .woocommerce-info,
body.tax-product_cat .airavata-shop-breadcrumb,
body.tax-product_cat .airavata-shop__sidebar-inner,
body.tax-product_cat .airavata-toolbar,
body.tax-product_cat .airavata-shop__content .woocommerce-pagination ul,
body.tax-product_cat .airavata-shop__content .woocommerce-info {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Tipografías de marca para filtros y toolbar */
body.woo-shop-page .woo-breadcrumb,
body.woo-shop-page .airavata-toolbar__count,
body.woo-shop-page .airavata-toolbar__perpage-label,
body.woo-shop-page .woocommerce-ordering select,
body.post-type-archive-product .woo-breadcrumb,
body.post-type-archive-product .airavata-toolbar__count,
body.post-type-archive-product .airavata-toolbar__perpage-label,
body.post-type-archive-product .woocommerce-ordering select,
body.tax-product_cat .woo-breadcrumb,
body.tax-product_cat .airavata-toolbar__count,
body.tax-product_cat .airavata-toolbar__perpage-label,
body.tax-product_cat .woocommerce-ordering select {
  font-family: "Open Sans", sans-serif !important;
}

body.woo-shop-page .wc-block-product-filters h2.wp-block-heading,
body.woo-shop-page .wc-block-product-filters h3.wp-block-heading,
body.woo-shop-page .shop-widget__title,
body.post-type-archive-product .wc-block-product-filters h2.wp-block-heading,
body.post-type-archive-product .wc-block-product-filters h3.wp-block-heading,
body.post-type-archive-product .shop-widget__title,
body.tax-product_cat .wc-block-product-filters h2.wp-block-heading,
body.tax-product_cat .wc-block-product-filters h3.wp-block-heading,
body.tax-product_cat .shop-widget__title {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #222 !important;
}

body.woo-shop-page .wc-block-product-filter-checkbox-list__text,
body.woo-shop-page .wc-block-product-filter-checkbox-list__label,
body.post-type-archive-product .wc-block-product-filter-checkbox-list__text,
body.post-type-archive-product .wc-block-product-filter-checkbox-list__label,
body.tax-product_cat .wc-block-product-filter-checkbox-list__text,
body.tax-product_cat .wc-block-product-filter-checkbox-list__label {
  font-family: "Open Sans", sans-serif !important;
  color: #4d4d4d !important;
}

/* Breadcrumb moderno para tienda */
body.woo-shop-page .airavata-shop-breadcrumb,
body.post-type-archive-product .airavata-shop-breadcrumb,
body.tax-product_cat .airavata-shop-breadcrumb,
body.tax-product_tag .airavata-shop-breadcrumb {
  margin: 8px 0 4px;
}

body.woo-shop-page .woo-breadcrumb,
body.post-type-archive-product .woo-breadcrumb,
body.tax-product_cat .woo-breadcrumb,
body.tax-product_tag .woo-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Open Sans", sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  color: #5f5f5f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: 8px 14px;
  backdrop-filter: blur(2px);
}

body.woo-shop-page .woo-breadcrumb a,
body.post-type-archive-product .woo-breadcrumb a,
body.tax-product_cat .woo-breadcrumb a,
body.tax-product_tag .woo-breadcrumb a {
  color: #4d4d4d;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}

body.woo-shop-page .woo-breadcrumb a:hover,
body.post-type-archive-product .woo-breadcrumb a:hover,
body.tax-product_cat .woo-breadcrumb a:hover,
body.tax-product_tag .woo-breadcrumb a:hover {
  color: #000;
}

body.woo-shop-page .woo-breadcrumb .sep,
body.post-type-archive-product .woo-breadcrumb .sep,
body.tax-product_cat .woo-breadcrumb .sep,
body.tax-product_tag .woo-breadcrumb .sep {
  color: #b8b8b8;
  font-size: 11px;
  line-height: 1;
}

body.woo-shop-page .woo-breadcrumb span:not(.sep),
body.post-type-archive-product .woo-breadcrumb span:not(.sep),
body.tax-product_cat .woo-breadcrumb span:not(.sep),
body.tax-product_tag .woo-breadcrumb span:not(.sep) {
  color: #111;
  font-weight: 700;
}

/* Modern filter UI */
.airavata-shop__sidebar {
  top: 88px;
}

.airavata-shop--no-filters {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.airavata-shop__sidebar-inner {
  gap: 16px !important;
}

.airavata-shop__sidebar .shop-widget {
  border: 0 !important;
  padding: 0 0 14px !important;
  margin: 0 0 8px !important;
}

.airavata-shop__sidebar .shop-widget:not(:last-child) {
  border-bottom: 1px solid #e6e6e6 !important;
}

.airavata-shop__sidebar .wc-block-product-filters h2.wp-block-heading,
.airavata-shop__sidebar .wc-block-product-filters h3.wp-block-heading,
.airavata-shop__sidebar .shop-widget__title {
  font-family: "Open Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: #1f1f1f !important;
  border: 0 !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.airavata-shop__sidebar .wc-block-product-filter-checkbox-list,
.airavata-shop__sidebar .wc-block-checkbox-list {
  display: grid;
  gap: 7px;
}

.airavata-shop__sidebar .wc-block-components-checkbox,
.airavata-shop__sidebar .wc-block-product-filter-checkbox-list__item {
  margin: 0 !important;
}

.airavata-shop__sidebar .wc-block-components-checkbox__label,
.airavata-shop__sidebar .wc-block-product-filter-checkbox-list__label {
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #2f2f2f !important;
}

.airavata-shop__sidebar input[type="checkbox"] {
  width: 15px !important;
  height: 15px !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 4px !important;
  background: #fff !important;
}

.airavata-shop__sidebar input[type="checkbox"]:checked {
  background: #000 !important;
  border-color: #000 !important;
}

.airavata-shop__sidebar .wc-block-components-checkbox:hover .wc-block-components-checkbox__label,
.airavata-shop__sidebar .wc-block-product-filter-checkbox-list__item:hover .wc-block-product-filter-checkbox-list__label {
  color: #000 !important;
}

.airavata-product-card {
  overflow: hidden;
}

.airavata-product-card__title a:hover {
  color: var(--sv-primary);
}

.airavata-product-card__price {
  color: var(--sv-primary);
  font-weight: 800;
}

/* Single product — sin caja contenedora, el fondo de página se ve */
.woo-product-page .product {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.woo-product-page .product_title {
  color: var(--sv-dark);
  margin-bottom: 12px;
}

.woo-product-page .summary .price {
  color: var(--sv-primary) !important;
  font-size: 32px;
  font-weight: 900;
}

.woo-product-page .woocommerce-tabs,
.woo-product-page .related {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--sv-gray-200);
}

/* Cart */
.woo-cart-page .woocommerce-cart-form,
.woo-cart-page .cart-collaterals .cart_totals {
  background: var(--sv-white);
  border: 1px solid var(--sv-gray-200);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow-sm);
}

.woo-cart-page .woocommerce-cart-form {
  padding: 20px;
}

.woo-cart-page table.shop_table {
  border: 0 !important;
}

.woo-cart-page table.shop_table thead th {
  color: var(--sv-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--sv-gray-200) !important;
}

.woo-cart-page table.shop_table td {
  border-top: 1px solid var(--sv-gray-100) !important;
}

.woo-cart-page .cart-collaterals .cart_totals {
  padding: 20px;
}

/* Checkout */
.woo-checkout-page .ck-col-left .ck-section,
.woo-checkout-page .ck-col-right .ck-order-review {
  background: var(--sv-white);
  border: 1px solid var(--sv-gray-200);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow-sm);
  padding: 20px;
}

.woo-checkout-page .ck-summary-title {
  color: var(--sv-dark);
  margin-bottom: 12px;
}

.woo-checkout-page #payment {
  background: var(--sv-gray-100) !important;
  border-radius: var(--sv-radius-sm);
  border: 1px solid var(--sv-gray-200);
}

.woo-checkout-page .woocommerce-checkout-review-order-table .order-total th,
.woo-checkout-page .woocommerce-checkout-review-order-table .order-total td {
  color: var(--sv-primary);
  font-weight: 800;
}

/* My account + login/register */
.woocommerce-account .aira-account__sidebar,
.woocommerce-account .aira-account__content,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  background: var(--sv-white);
  border: 1px solid var(--sv-gray-200);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow-sm);
}

.woocommerce-account .aira-account__sidebar,
.woocommerce-account .aira-account__content {
  padding: 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--sv-radius-sm);
  color: var(--sv-gray-600);
  font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--sv-primary-light);
  color: var(--sv-primary);
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  padding: 20px;
}

@media (max-width: 768px) {
  body.woocommerce main.site-main,
  body.woocommerce-page main.site-main {
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .woo-product-page .product {
    padding: 16px;
  }

  .woo-cart-page .woocommerce-cart-form,
  .woo-cart-page .cart-collaterals .cart_totals,
  .woo-checkout-page .ck-col-left .ck-section,
  .woo-checkout-page .ck-col-right .ck-order-review,
  .woocommerce-account .aira-account__sidebar,
  .woocommerce-account .aira-account__content {
    padding: 14px;
  }
}

/* WooCommerce flat look: sin sombreados */
body.woocommerce .airavata-shop-breadcrumb,
body.woocommerce .airavata-shop__sidebar-inner,
body.woocommerce .airavata-toolbar,
body.woocommerce .airavata-product-card,
body.woocommerce .airavata-shop__content .woocommerce-pagination ul,
body.woocommerce .airavata-shop__content .woocommerce-info,
body.woocommerce .woocommerce-message,
body.woocommerce .woocommerce-error,
body.woocommerce .woocommerce-info,
body.woocommerce .woo-product-page .product,
body.woocommerce .woo-cart-page .woocommerce-cart-form,
body.woocommerce .woo-cart-page .cart-collaterals .cart_totals,
body.woocommerce .woo-checkout-page .ck-col-left .ck-section,
body.woocommerce .woo-checkout-page .ck-col-right .ck-order-review,
body.woocommerce .woocommerce-account .aira-account__sidebar,
body.woocommerce .woocommerce-account .aira-account__content,
body.woocommerce .woocommerce-account .woocommerce-form-login,
body.woocommerce .woocommerce-account .woocommerce-form-register,
body.woocommerce-page .airavata-shop-breadcrumb,
body.woocommerce-page .airavata-shop__sidebar-inner,
body.woocommerce-page .airavata-toolbar,
body.woocommerce-page .airavata-product-card,
body.woocommerce-page .airavata-shop__content .woocommerce-pagination ul,
body.woocommerce-page .airavata-shop__content .woocommerce-info,
body.woocommerce-page .woocommerce-message,
body.woocommerce-page .woocommerce-error,
body.woocommerce-page .woocommerce-info,
body.woocommerce-page .woo-product-page .product,
body.woocommerce-page .woo-cart-page .woocommerce-cart-form,
body.woocommerce-page .woo-cart-page .cart-collaterals .cart_totals,
body.woocommerce-page .woo-checkout-page .ck-col-left .ck-section,
body.woocommerce-page .woo-checkout-page .ck-col-right .ck-order-review,
body.woocommerce-page .woocommerce-account .aira-account__sidebar,
body.woocommerce-page .woocommerce-account .aira-account__content,
body.woocommerce-page .woocommerce-account .woocommerce-form-login,
body.woocommerce-page .woocommerce-account .woocommerce-form-register {
  box-shadow: none !important;
}

/* Shop: quitar bordes visibles en filtros + toolbar */
body.woocommerce .airavata-shop__sidebar-inner,
body.woocommerce-page .airavata-shop__sidebar-inner,
body.woocommerce .airavata-toolbar,
body.woocommerce-page .airavata-toolbar {
  border: none !important;
}

body.woocommerce .shop-widget,
body.woocommerce-page .shop-widget,
body.woocommerce .shop-widget__title,
body.woocommerce-page .shop-widget__title,
body.woocommerce .airavata-toolbar__count,
body.woocommerce-page .airavata-toolbar__count {
  border: none !important;
}

/* Shop cards: centrar nombre + precio + acción */
body.woocommerce .airavata-product-card__body,
body.woocommerce-page .airavata-product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

body.woocommerce .airavata-product-card__title,
body.woocommerce-page .airavata-product-card__title,
body.woocommerce .airavata-product-card__price,
body.woocommerce-page .airavata-product-card__price {
  width: 100%;
  text-align: left;
}

body.woocommerce .airavata-product-card__price,
body.woocommerce-page .airavata-product-card__price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

/* Home products grid: variante estilo referencia (cards limpias) — 4 columnas */
.sv-home-products-grid {
  gap: 20px 16px;
  grid-template-columns: repeat(4, 1fr) !important;
}
.airavata-shop__content .airavata-products-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px 16px;
}

/* ── Responsive de la grilla (deben estar DESPUÉS de las reglas desktop) ── */
@media (max-width: 1024px) {
  .sv-home-products-grid,
  .airavata-shop__content .airavata-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .sv-home-products-grid,
  .airavata-shop__content .airavata-products-grid,
  .airavata-related-products .airavata-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}
@media (max-width: 480px) {
  .sv-home-products-grid,
  .airavata-shop__content .airavata-products-grid,
  .airavata-related-products .airavata-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

.sv-home-products-grid .airavata-product-card {
  border: 0 !important;
  box-shadow: none !important;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}

.sv-home-products-grid .airavata-product-card__img-wrap {
  background: #fff !important;
  border-radius: 10px;
  padding-bottom: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  display: block !important;
  position: relative !important;
  width: 100%;
}

.sv-home-products-grid .airavata-product-card__img {
  background: #fff !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0;
}

.sv-home-products-grid .airavata-product-card__img--hover,
.sv-home-products-grid .airavata-product-card__overlay,
.sv-home-products-grid .airavata-product-card__colors,
.sv-home-products-grid .airavata-product-card__cta,
.sv-home-products-grid .wl-btn {
  display: none !important;
}

.sv-home-products-grid .airavata-product-card__badges {
  top: 10px;
  left: 10px;
}

.sv-home-products-grid .badge {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 999px;
  padding: 4px 9px;
}

.sv-home-products-grid .badge--sale {
  background: #f59e0b;
}

.sv-home-products-grid .airavata-product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
  width: 100%;
  padding: 14px 20px 16px;
  background: #fff;
}

.sv-home-products-grid .airavata-product-card__title {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}

.sv-home-products-grid .airavata-product-card__title a {
  color: #1b1b1b;
}

.sv-home-products-grid .airavata-product-card__meta {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.3;
}

.sv-home-products-grid .airavata-product-card__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 2px;
}

.sv-home-products-grid .airavata-product-card__price .woocommerce-Price-amount {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  color: #111;
}

.sv-home-products-grid .airavata-product-card__price del .woocommerce-Price-amount {
  font-size: clamp(10px, 1.1vw, 14px);
  font-weight: 600;
  color: #9b9b9b;
}

.sv-home-products-grid .airavata-product-card__price ins .woocommerce-Price-amount {
  color: #111;
}

@media (max-width: 767px) {
  .sv-home-products-grid .airavata-product-card__img {
    padding: 0;
  }
}

/* Shop (/tienda/) con el mismo look aprobado del Home */
body.woo-shop-page .airavata-shop__content .airavata-product-card,
body.post-type-archive-product .airavata-shop__content .airavata-product-card,
body.tax-product_cat .airavata-shop__content .airavata-product-card {
  border: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
  border-radius: 10px;
  overflow: hidden;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__img-wrap,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__img-wrap,
body.tax-product_cat .airavata-shop__content .airavata-product-card__img-wrap {
  background: #fff !important;
  border-radius: 10px;
  padding-bottom: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  display: block !important;
  position: relative !important;
  width: 100%;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__img:not(.airavata-product-card__img--hover),
body.post-type-archive-product .airavata-shop__content .airavata-product-card__img:not(.airavata-product-card__img--hover),
body.tax-product_cat .airavata-shop__content .airavata-product-card__img:not(.airavata-product-card__img--hover) {
  background: #fff !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1000 / 1228;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__img--hover,
body.woo-shop-page .airavata-shop__content .airavata-product-card__overlay,
body.woo-shop-page .airavata-shop__content .airavata-product-card__colors,
body.woo-shop-page .airavata-shop__content .airavata-product-card__cta,
body.woo-shop-page .airavata-shop__content .wl-btn,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__img--hover,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__overlay,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__colors,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__cta,
body.post-type-archive-product .airavata-shop__content .wl-btn,
body.tax-product_cat .airavata-shop__content .airavata-product-card__img--hover,
body.tax-product_cat .airavata-shop__content .airavata-product-card__overlay,
body.tax-product_cat .airavata-shop__content .airavata-product-card__colors,
body.tax-product_cat .airavata-shop__content .airavata-product-card__cta,
body.tax-product_cat .airavata-shop__content .wl-btn {
  display: none !important;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__badges,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__badges,
body.tax-product_cat .airavata-shop__content .airavata-product-card__badges {
  top: 10px;
  left: 10px;
}

body.woo-shop-page .airavata-shop__content .badge,
body.post-type-archive-product .airavata-shop__content .badge,
body.tax-product_cat .airavata-shop__content .badge {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 999px;
  padding: 4px 9px;
}

body.woo-shop-page .airavata-shop__content .badge--sale,
body.post-type-archive-product .airavata-shop__content .badge--sale,
body.tax-product_cat .airavata-shop__content .badge--sale {
  background: #f59e0b;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__body,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__body,
body.tax-product_cat .airavata-shop__content .airavata-product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
  width: 100%;
  padding: 14px 20px 16px;
  background: #fff;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__title,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__title,
body.tax-product_cat .airavata-shop__content .airavata-product-card__title {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__title a,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__title a,
body.tax-product_cat .airavata-shop__content .airavata-product-card__title a {
  color: #1b1b1b;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__meta,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__meta,
body.tax-product_cat .airavata-shop__content .airavata-product-card__meta {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.3;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__price,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__price,
body.tax-product_cat .airavata-shop__content .airavata-product-card__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 2px;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__price .woocommerce-Price-amount,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__price .woocommerce-Price-amount,
body.tax-product_cat .airavata-shop__content .airavata-product-card__price .woocommerce-Price-amount {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  color: #111;
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__price del .woocommerce-Price-amount,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__price del .woocommerce-Price-amount,
body.tax-product_cat .airavata-shop__content .airavata-product-card__price del .woocommerce-Price-amount {
  font-size: clamp(10px, 1.1vw, 14px);
  font-weight: 600;
  color: #9b9b9b;
}

/* Related products — 4 columnas en una sola fila */
.airavata-related-products .airavata-products-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px 16px;
}
@media (max-width: 1024px) {
  .airavata-related-products .airavata-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .airavata-related-products .airavata-products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Imagen en relacionados — mismo aspect ratio que la tienda */
.airavata-related-products .airavata-product-card__img-wrap {
  padding-bottom: 0 !important;
  height: auto !important;
  aspect-ratio: 1000 / 1228;
  overflow: hidden !important;
  display: block !important;
  position: relative !important;
}
.airavata-related-products .airavata-product-card__img:not(.airavata-product-card__img--hover) {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1000 / 1228;
  object-fit: contain !important;
  display: block !important;
}

.airavata-related-products .airavata-product-card__price .woocommerce-Price-amount {
  font-size: clamp(14px, 1.8vw, 20px);
}

.airavata-related-products .airavata-product-card__price del .woocommerce-Price-amount {
  font-size: clamp(10px, 1.1vw, 14px);
}

body.woo-shop-page .airavata-shop__content .airavata-product-card__price ins .woocommerce-Price-amount,
body.post-type-archive-product .airavata-shop__content .airavata-product-card__price ins .woocommerce-Price-amount,
body.tax-product_cat .airavata-shop__content .airavata-product-card__price ins .woocommerce-Price-amount {
  color: #111;
}

/* FORZADO FINAL: Inicio + Tienda deben verse idénticos */
.sv-home-products-grid .airavata-product-card,
.airavata-shop__content .airavata-products-grid .airavata-product-card {
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.sv-home-products-grid .airavata-product-card__img-wrap,
.airavata-shop__content .airavata-products-grid .airavata-product-card__img-wrap {
  background: #fff !important;
  border-radius: 10px !important;
  padding-bottom: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  display: block !important;
  position: relative !important;
  width: 100%;
}

/* Imagen principal: en flujo, crea su propia altura */
.sv-home-products-grid .airavata-product-card__img:not(.airavata-product-card__img--hover),
.airavata-shop__content .airavata-products-grid .airavata-product-card__img:not(.airavata-product-card__img--hover) {
  background: #fff !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1000 / 1228;
}
/* Imagen hover: sigue siendo absolute para el efecto */
.sv-home-products-grid .airavata-product-card__img--hover,
.airavata-shop__content .airavata-products-grid .airavata-product-card__img--hover {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.sv-home-products-grid .airavata-product-card__img--hover,
.sv-home-products-grid .airavata-product-card__overlay,
.sv-home-products-grid .airavata-product-card__colors,
.sv-home-products-grid .airavata-product-card__cta,
.sv-home-products-grid .wl-btn,
.airavata-shop__content .airavata-products-grid .airavata-product-card__img--hover,
.airavata-shop__content .airavata-products-grid .airavata-product-card__overlay,
.airavata-shop__content .airavata-products-grid .airavata-product-card__colors,
.airavata-shop__content .airavata-products-grid .airavata-product-card__cta,
.airavata-shop__content .airavata-products-grid .wl-btn {
  display: none !important;
}

.sv-home-products-grid .airavata-product-card__body,
.airavata-shop__content .airavata-products-grid .airavata-product-card__body {
  width: 100% !important;
  padding: 14px 20px 16px !important;
  background: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 4px !important;
}

.sv-home-products-grid .airavata-product-card__title,
.airavata-shop__content .airavata-products-grid .airavata-product-card__title {
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.25 !important;
}

.sv-home-products-grid .airavata-product-card__price,
.airavata-shop__content .airavata-products-grid .airavata-product-card__price {
  justify-content: flex-start !important;
}

.sv-home-products-grid .airavata-product-card__price del,
.airavata-shop__content .airavata-products-grid .airavata-product-card__price del,
.airavata-related-products .airavata-product-card__price del {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  opacity: 0.95;
}

.sv-home-products-grid .airavata-product-card__price del::after,
.airavata-shop__content .airavata-products-grid .airavata-product-card__price del::after,
.airavata-related-products .airavata-product-card__price del::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #b7b7b7;
  transform: translateY(-50%);
  pointer-events: none;
}

/* =====================================================
   PRODUCTOS RELACIONADOS — Idénticos a la tienda
   ===================================================== */

/* Card: sin borde, radio 10px, overflow hidden */
.airavata-related-products .airavata-products-grid .airavata-product-card {
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

/* Imagen: background blanco, centrada, sin padding */
.airavata-related-products .airavata-product-card__img-wrap {
  background: #fff !important;
  border-radius: 10px !important;
}
.airavata-related-products .airavata-product-card__img:not(.airavata-product-card__img--hover) {
  background: #fff !important;
  object-position: center center !important;
  padding: 0 !important;
}

/* Badge: redondo + amarillo igual que tienda */
.airavata-related-products .badge {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 999px;
  padding: 4px 9px;
}
.airavata-related-products .badge--sale {
  background: #f59e0b;
}

/* Ocultar: hover-image, overlay, colores, botón Comprar, wishlist */
.airavata-related-products .airavata-product-card__img--hover,
.airavata-related-products .airavata-product-card__overlay,
.airavata-related-products .airavata-product-card__colors,
.airavata-related-products .airavata-product-card__cta,
.airavata-related-products .wl-btn {
  display: none !important;
}

/* Card body: alineado izquierda */
.airavata-related-products .airavata-product-card__body {
  width: 100% !important;
  padding: 14px 20px 16px !important;
  background: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 4px !important;
}

/* Título: Open Sans, sin uppercase */
.airavata-related-products .airavata-product-card__title {
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.25 !important;
}

/* Precio: alineado izquierda, tamaños igual que tienda */
.airavata-related-products .airavata-product-card__price {
  justify-content: flex-start !important;
}
.airavata-related-products .airavata-product-card__price .woocommerce-Price-amount {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  color: #111;
}
.airavata-related-products .airavata-product-card__price ins .woocommerce-Price-amount {
  color: #111;
}

/* ── WooCommerce add-to-cart notice → toast fijo rojo ── */
body .woocommerce-message,
body.woocommerce .woocommerce-message,
body.woocommerce-page .woocommerce-message {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  top: auto !important;
  left: auto !important;
  z-index: 9998 !important;
  max-width: 420px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 14px 18px !important;
  background: var(--sv-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 24px rgba(238,40,5,0.35) !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

body .woocommerce-message::before,
body.woocommerce .woocommerce-message::before { display: none !important; }

body .woocommerce-message a.button,
body .woocommerce-message .button,
body.woocommerce .woocommerce-message a.button,
body.woocommerce .woocommerce-message .button {
  background: #fff !important;
  color: var(--sv-primary) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 7px 14px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  float: none !important;
}

body .woocommerce-message a.button:hover,
body.woocommerce .woocommerce-message a.button:hover {
  background: #f0f0f0 !important;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 480px) {
  body .woocommerce-message,
  body.woocommerce .woocommerce-message {
    right: 12px !important;
    bottom: 80px !important;
    left: 12px !important;
    max-width: none !important;
  }
}
