/*
Theme Name: Astra Child - Suplein
Theme URI: http://example.com/astra-child-suplein
Description: Tema hijo de Astra personalizado para Suplein (Dark Mode + Gold)
Author: v0
Author URI: http://example.com
Template: astra
Version: 1.0.0
*/

/* Import WordPress-compatible Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto+Mono:wght@400;500;700&display=swap");

/* =========================================
   Variables de Marca
   ========================================= */
:root {
  --suplein-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --suplein-font-mono: "Roboto Mono", "Courier New", monospace;
  --suplein-dark: #000000;
  --suplein-dark-secondary: #18181b;
  --suplein-gold: #d9b505;
  --suplein-gold-hover: #b39504;
  --suplein-text: #ffffff;
  --suplein-text-muted: #a1a1aa;
}

/* =========================================
   Estilos Globales (Sobrescribiendo Astra)
   ========================================= */
body,
.site-content {
  font-family: var(--suplein-font-sans) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.entry-title {
  font-family: var(--suplein-font-sans) !important;
  font-weight: 700 ;
}

.text-brand {
  color: var(--suplein-gold) !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}

/* Cabecera */
.site-header,
.main-header-bar {
  background-color: var(--suplein-dark) !important;
  border-bottom: 1px solid var(--suplein-dark-secondary);
}

.main-header-menu a,
.ast-site-identity a {
  color: var(--suplein-text) !important;
}
.main-header-menu a:hover {
  color: var(--suplein-gold) !important;
}

/* Footer */
.site-footer {
  background-color: var(--suplein-dark) !important;
  border-top: 1px solid var(--suplein-dark-secondary);
}
.site-footer a {
  color: var(--suplein-text-muted) !important;
}
.site-footer a:hover {
  color: var(--suplein-gold) !important;
}

/* --- FIX FINAL: Eliminar márgenes y asegurar ancho completo en TODAS las páginas --- */

/* Apunta directamente a la etiqueta body en cualquier tipo de página para eliminar márgenes externos */
body.home, 
body.woocommerce, 
body.woocommerce-page, 
body.single-product, 
body.archive,
body {
    margin: 0 !important;
    padding: 0 !important;
    /* Esto ayuda a prevenir barras de desplazamiento horizontales si un elemento sobresale */
    overflow-x: hidden !important; 
}

/* Apunta a los contenedores principales de Astra y WooCommerce con máxima especificidad */
.woocommerce .site-content,
.woocommerce-page .site-content,
.woocommerce .ast-container,
.woocommerce-page .ast-container,
.ast-container, 
.site-main {
    margin-left: 0 !important;
    margin-right: 0 !important;
    
    /* Importante: Elimina el padding interno de 20px que puede simular un margen si quieres un ancho 100% total */
    padding-left: 0 !important; 
    padding-right: 0 !important;
    
    /* Fuerza el ancho al 100% y elimina cualquier limitación de ancho máximo */
    max-width: 100% !important; 
    width: 100% !important;
}
/* ---------------------------------------------------------------------------------- */

/* =========================================
   NUEVOS ESTILOS DE CABECERA (HEADER.PHP)
   ========================================= */

body.home .site-header,
body.page-template-default .site-header {
  display: none;
}

body.woocommerce .site-header,
body.woocommerce-page .site-header,
body.single-product .site-header {
  display: block !important;
}

.site-header-suplein {
  background-color: var(--suplein-dark);
  color: white;
  border-bottom: 1px solid var(--suplein-dark-secondary);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Top Bar */
.suplein-top-bar {
  background-color: var(--suplein-gold);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #b39504;
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 40px;
}

.suplein-top-bar.hidden-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border: none;
}

.suplein-top-bar .ast-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suplein-top-links a {
  color: #000000;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
}

.suplein-top-bar p {
  color: #000000;
  font-weight: 500;
  margin: 0;
}

/* =====================================================
   TOP BAR SLIDER - ANIMACIÓN INFINITA
   ===================================================== */

.suplein-top-bar-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.suplein-top-bar-track {
    display: flex;
    width: 800%;
    animation: slideTopBarInfinite 30s linear infinite;
}

.suplein-top-bar-track:hover {
    animation-play-state: paused;
}

.suplein-top-bar-item {
    flex: 0 0 12.5%;
    width: 12.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.suplein-top-bar-item p {
    margin: 0;
    padding: 0;
}

@keyframes slideTopBarInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   MAIN HEADER (Logotipo, Buscador e Iconos)
   ========================================================================== */
.suplein-main-header {
  padding: 15px;
}

/* Eliminar padding en móvil para ganar espacio */
@media (max-width: 768px) {
  .suplein-main-header {
    padding: 0 !important;
  }
}

.suplein-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  /* Alineación con el body */
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
  box-sizing: border-box !important;
}

.suplein-logo img {
  max-height: 40px;
  width: auto;
}

/* ==========================================================================
   BARRA DE BÚSQUEDA
   ========================================================================== */
.suplein-search {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.suplein-search input[type="search"] {
  width: 100%;
  background-color: #222222;
  border: 1px solid #444444;
  color: white;
  padding: 12px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.suplein-search input[type="search"]:focus {
  border-color: #d9b505;
  outline: none;
  background-color: #2a2a2a;
}

.suplein-search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: transparent !important;
  border: none !important;
  color: #999 !important;
  padding: 0 15px;
  cursor: pointer;
}

.suplein-search button:hover {
  color: #d9b505 !important;
}

/* ==========================================================================
   ICONOS (Cuenta y Cesta)
   ========================================================================== */
.suplein-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.suplein-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 11px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.suplein-icon-link svg {
  margin-bottom: 4px;
}

.suplein-icon-link:hover {
  color: #d9b505;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #d9b505;
  color: black;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ==========================================================================
   MENÚ DE NAVEGACIÓN Y BOTÓN "ÚNETE AL CANAL"
   ========================================================================== */
.suplein-nav {
  background-color: #000000;
  border-top: 1px solid #18181b;
  padding: 5px;
}

.suplein-nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important; 
  flex-wrap: nowrap !important; 
  /* Alineación con el body */
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
  box-sizing: border-box !important;
}

#primary-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 25px;
}

#primary-menu > li > a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s ease;
}

#primary-menu > li > a:hover {
  color: #d9b505;
}

#primary-menu li.menu-item-has-children {
  position: relative;
}

#primary-menu li.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 9px;
  vertical-align: middle;
  margin-left: 6px;
  color: #999;
}

#primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111111;
  min-width: 240px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  border-top: 3px solid #d9b505;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 9999;
}

#primary-menu li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#primary-menu .sub-menu li a {
  display: block;
  color: #cccccc;
  padding: 12px 20px;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}

#primary-menu .sub-menu li:last-child a {
  border-bottom: none;
}

#primary-menu .sub-menu li a:hover {
  background-color: #1a1a1a;
  color: #d9b505;
  padding-left: 28px;
}

.suplein-channel-btn {
  display: inline-block;
  background-color: #d9b505;
  color: #000000 !important;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.suplein-channel-btn:hover {
  background-color: #f4c430;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 181, 5, 0.4);
}

/* ==========================================================================
   Responsive Header
   ========================================================================== */
@media (max-width: 1024px) {
  .suplein-header-inner {
    flex-wrap: wrap;
  }
  .suplein-nav-inner {
    justify-content: center !important;
  }
  .suplein-channel-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .suplein-search {
    order: 3;
    max-width: 100%;
    margin-top: 10px;
  }
}

/* =====================================================
   MENÚ MÓVIL
   ===================================================== */
.suplein-mobile-menu-trigger {
  display: none;
  background: none !important;
  border: none !important;
  color: white !important;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .suplein-nav,
  .suplein-search {
    display: none;
  }

  .suplein-mobile-menu-trigger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .suplein-icon-link span {
    display: none;
  }

  .suplein-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .suplein-top-bar .ast-container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .suplein-top-links {
    display: flex;
    gap: 10px;
  }

  .suplein-top-bar {
    display: block !important;
  }
}

.suplein-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.suplein-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.suplein-mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #000000;
  z-index: 9999;
  transition: all 0.3s ease;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
}

.suplein-mobile-menu.active {
  left: 0;
}

.suplein-menu-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.suplein-menu-close {
  background: none !important;
  border: none !important;
  color: white !important;
  padding: 5px;
  cursor: pointer;
}

.suplein-menu-content {
  padding: 20px 0;
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #1a1a1a;
}

.mobile-nav-list li a:hover {
  color: var(--suplein-gold);
  background: #1a1a1a;
}

.mobile-cta {
  padding: 20px;
}

.mobile-user-links {
  padding: 20px;
  border-top: 1px solid #333;
}

.mobile-user-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  text-decoration: none;
  margin-bottom: 15px;
}

.mobile-user-links a:hover {
  color: var(--suplein-gold);
}

/* =====================================================
   MANTENER CABECERA ALINEADA EN MÓVILES
   ===================================================== */
@media (max-width: 992px) {
  .suplein-header-inner, .suplein-nav-inner {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}
@media (max-width: 768px) {
  .suplein-header-inner, .suplein-nav-inner {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
@media (max-width: 480px) {
  .suplein-header-inner, .suplein-nav-inner {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* =========================================
   SECCIONES DE PÁGINA DE INICIO
   ========================================= */
   
#primary.site-main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}   

h2.section-title,
.suplein-storytelling h2,
.suplein-why-us h2,
.suplein-testimonials h2,
.suplein-faq h2,
.suplein-blog h2,
.suplein-first-promo h2,
.woocommerce-loop-product__title {
  font-weight: 900 !important;
  text-transform: uppercase !important;
  font-style: italic !important;
}

/* Hero */
.suplein-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden; 
}

.suplein-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 0; 
}

.suplein-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right, 
    rgba(0, 0, 0, 0.8),    
    rgba(0, 0, 0, 0.2)     
  );
  display: block !important;
  z-index: 1 !important; 
}

.suplein-hero .suplein-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.suplein-hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: white;
  color: black;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border-radius: 6px;
}

.suplein-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

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

.suplein-hero p {
  font-size: 1.1rem;
  color: #e5e5e5;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  max-width: 500px;
}

.hero-btn {
  display: inline-block;
  background-color: #d9b505;
  color: black;
  font-weight: bold;
  padding: 15px 40px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 1s ease-in-out infinite; 
  border-radius: 10px;
}

.hero-btn:hover {
  background-color: #b39504;
  color: black;
}

@media (min-width: 768px) {
  .suplein-hero {
    min-height: 600px;
  }
  .suplein-hero h1 {
    font-size: 4rem;
  }
}

/* Storytelling Section */
.suplein-storytelling {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.suplein-storytelling h2 {
  color: #ffffff !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.suplein-storytelling p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
}

.suplein-storytelling .separator {
  width: 50px;
  height: 4px;
  background-color: #d9b505;
  margin: 0 auto;
  border-radius: 2px;
}

/* Background Utilities */
.suplein-bg-white {
  background-color: #ffffff;
  color: #1d1d1b;
  padding: 3rem 0
}

/* Container */
.suplein-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

body.woocommerce .suplein-container,
body.woocommerce-page .suplein-container,
body.single-product .suplein-container {
  max-width: none;
  margin: 0;
  padding: 0;
}

body.woocommerce .ast-container,
body.woocommerce-page .ast-container,
body.single-product .ast-container {
  max-width: var(--ast-container-default-xlg-width, 1200px) !important;
  margin: 0 auto !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.btn-ver-todo {
  display: inline-block;
  background-color: #d9b505;
  color: black;
  font-size: 14px; 
  font-weight: bold;
  padding: 6px 12px; 
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  white-space: nowrap;
}

/* Why Choose Us */
.suplein-why-us h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--suplein-gold);
}

.feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: #1d1d1b;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-icon {
  color: var(--suplein-gold);
}

.feature-item h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #1d1d1b;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Testimonials */
.suplein-testimonials {
    background-color: #000;
    padding: 4rem 0;
}

.suplein-swiper {
    width: 100%;
    max-width: 1200px;
    padding: 2rem 1rem 4rem 1rem !important; 
}

.suplein-title-center {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
    text-align: center;     
    line-height: 1.1;
    margin-bottom: 2.5rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.suplein-title-center .sub-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-style: normal;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.text-brand {
    color: #d9b505;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    font-size: clamp(2.2rem, 7vw, 3.8rem); 
    display: block;
    width: 100%; 
}

@media (max-width: 768px) {
    .suplein-title-center .text-brand {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

.testimonial-card {
    background-color: #18181b;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #d9b505;
    height: 100% !important; 
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-sizing: border-box;
}

.testimonial-author {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-text {
    color: #e5e5e5;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1; 
}

.testimonial-rating .star-rating {
    color: #d9b505;
    font-size: 14px;
}

.testimonial-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #27272a;
}

.testimonial-product-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
}

.testimonial-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-product-btn {
    background-color: #d9b505;
    color: #000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 4px;
    white-space: nowrap;
}

.swiper-button-next, .swiper-button-prev {
    color: #d9b505 !important;
    background: rgba(0,0,0,0.5);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #d9b505 !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* FAQ Accordion */
.suplein-faq {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 0;
}

.suplein-faq h2 {
  color: #ffffff !important;
}

.suplein-faq details {
  background-color: #000000;
  border-bottom: 1px solid #27272a;
  padding: 1rem 0;
}

.suplein-faq summary {
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
}

.suplein-faq summary:hover {
  color: #d9b505;
}

.suplein-faq p {
  margin-top: 1rem;
  color: #cccccc;
}

/* Blog Section */
.suplein-blog {
  padding: 3rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.btn-ver-todo {
    display: inline-block;
    background-color: #d9b505;
    color: black;
    font-size: 11px;
    font-weight: bold;
    padding: 8px 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 1s ease-in-out infinite; 
    border-radius: 8px;
    white-space: nowrap;
}

.btn-ver-todo:hover {
    background-color: #f4c430;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #000000;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: white;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 0.3s;
}

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

.blog-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.blog-card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}

.blog-card h3 a {
  color: #1d1d1b;
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: #d9b505;
}

  .read-more {
    display: inline-block;
    background-color: #d9b505;
    color: black;
    font-size: 11px;
    font-weight: bold;
    padding: 8px 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
    margin: 0px 13px 13px 13px;
}

.read-more:hover {
    background-color: #f4c430;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #000000;
}

/* Full Width Image */
.suplein-full-width-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* =========================================
   SECCIÓN PROMOCION
   ========================================= */
.suplein-whatsapp-promo {
  background-color: #d9b505; 
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.suplein-whatsapp-promo::before {
  content: '★';
  position: absolute;
  font-size: 100px;
  opacity: 0.08;
  top: 10%;
  left: 5%;
  font-weight: 900;
  animation: float 6s ease-in-out infinite;
}

.suplein-whatsapp-promo::after {
  content: '★';
  position: absolute;
  font-size: 80px;
  opacity: 0.08;
  bottom: 15%;
  right: 8%;
  font-weight: 900;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.suplein-whatsapp-promo .suplein-container {
  position: relative;
  z-index: 10;
}

.promo-badge {
  display: inline-block;
  background-color: #000000;
  color: #d9b505;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.suplein-whatsapp-promo h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.2);
}

.wa-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366; 
  color: #ffffff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 1rem auto 2rem auto;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  border: 4px solid #ffffff; 
  animation: float 4s ease-in-out infinite; 
}

.wa-channel-icon svg {
  width: 50px;
  height: 50px;
}

.promo-description {
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 2.5rem;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
}

.promo-description strong {
  color: #000000;
  font-weight: 900;
}

.small-text {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 700;
  color: #000000;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #d9b505 !important;
  padding: 1.25rem 3rem;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 3px solid #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite; 
}

.promo-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .suplein-whatsapp-promo h2 {
    font-size: 3.5rem;
  }
  .wa-channel-icon {
    width: 110px;
    height: 110px;
  }
  .wa-channel-icon svg {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .suplein-whatsapp-promo h2 {
    font-size: 2rem;
  }
  .promo-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    width: 100%; 
  }
}

/* =========================================
   MÁS VENDIDOS (GRID)
   ========================================= */
.suplein-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (min-width: 768px) {
  .suplein-product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.suplein-product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s;
  min-height: 450px;
}

.suplein-product-card:hover {
  border-color: #d9b505;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-image-wrapper {
  margin-bottom: 10px;
  text-align: center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-info {
  margin-bottom: 15px;
}

.product-rating {
  margin-bottom: 5px;
  font-size: 12px;
  color: #d9b505;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
  min-height: 2.4em;
}

.product-title a {
  color: #000;
  text-decoration: none;
}

.product-title a:hover {
  color: #d9b505;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
}

.suplein-product-card .add-to-cart-btn,
.suplein-product-card .button,
.suplein-product-card .add_to_cart_button,
.suplein-product-card a.button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background-color: #d9b505 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.suplein-product-card .add-to-cart-btn:hover,
.suplein-product-card .button:hover,
.suplein-product-card .add_to_cart_button:hover,
.suplein-product-card a.button:hover {
  background-color: #c2a204 !important;
  color: #000000 !important;
}

@media (max-width: 768px) {
  .suplein-product-card {
    min-height: auto;
  }
}

/* ==========================================================================
   SECCIÓN: ÚNETE A LA COMUNIDAD SUPLEIN
   ========================================================================== */
.suplein-community-new {
  background: linear-gradient(135deg, #d9b505 0%, #f4c430 100%);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.suplein-community-new::before {
  content: '💬';
  position: absolute;
  font-size: 120px;
  opacity: 0.06;
  top: 5%;
  right: 5%;
  animation: float 7s ease-in-out infinite;
}

.suplein-community-new::after {
  content: '📱';
  position: absolute;
  font-size: 100px;
  opacity: 0.06;
  bottom: 10%;
  left: 3%;
  animation: float 9s ease-in-out infinite;
}

.community-wrapper {
  background: #000000;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
  border: 4px solid #000000;
}

.community-wrapper::before {
  top: -4px;
  left: -4px;
  border-radius: 20px 0 0 0;
}

.community-wrapper::after {
  bottom: -4px;
  right: -4px;
  border-radius: 0 0 20px 0;
}

.community-content {
  text-align: center;
  margin-bottom: 2.5rem;
}

.community-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.community-content p {
  font-size: 1.125rem;
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.community-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.btn-whatsapp-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #ffffff !important;
  padding: 1.25rem 2.5rem;
  border-radius: 13px;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  border: 3px solid #000000;
  position: relative;
  overflow: hidden;
  animation: shake 1s ease-in-out infinite;
}

.btn-whatsapp-channel::before {
  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 ease;
  animation: shake 1s ease-in-out infinite;
}

.btn-whatsapp-channel:hover::before {
  left: 100%;
}

.btn-whatsapp-channel:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  background: #20c05c;
}

.btn-whatsapp-channel svg {
  width: 28px;
  height: 28px;
}

.social-follow-box {
  background: #f8f8f8;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 3px dashed #000000;
  text-align: center;
}

.social-follow-box span {
  display: block;
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 600;
}

.social-icons-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.social-icon-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icon-btn:hover::before {
  transform: scale(1);
}

.social-icon-btn:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-icon-btn svg {
  position: relative;
  z-index: 1;
}

.social-icon-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.social-icon-btn.facebook {
  background: #1877F2;
  color: #ffffff;
}

.social-icon-btn.tiktok {
  background: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .suplein-community-new {
    padding: 3rem 1rem;
  }

  .community-wrapper {
    padding: 2rem 1.5rem;
  }

  .community-content h2 {
    font-size: 1.75rem;
  }

  .community-content p {
    font-size: 1rem;
  }

  .btn-whatsapp-channel {
    font-size: 1rem;
    padding: 1rem 2rem;
    animation: bounce 1s ease-in-out infinite;
  }

  .btn-whatsapp-channel svg {
    width: 24px;
    height: 24px;
  }

  .social-icon-btn {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .community-content h2 {
    font-size: 1.5rem;
  }

  .social-follow-box {
    padding: 1.25rem 1rem;
  }

  .social-icon-btn {
    width: 50px;
    height: 50px;
  }

  .btn-whatsapp-channel {
    width: 100%;
    justify-content: center;
    animation: pulse 1s ease-in-out infinite;
  }
}

/* =====================================================
   CONTENEDOR PRINCIPAL - ESPACIADO PÁGINA DE INICIO
   ===================================================== */

.suplein-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .suplein-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 768px) {
  .suplein-container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 480px) {
  .suplein-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* =====================================================
   ELIMINAR ESPACIO SUPERIOR EN PÁGINAS WOOCOMMERCE
   ===================================================== */

body.woocommerce #primary,
body.woocommerce-page #primary,
body.single-product #primary,
body.woocommerce .ast-primary-content,
body.woocommerce-page .ast-primary-content,
body.single-product .ast-primary-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.woocommerce .site-content,
body.woocommerce-page .site-content,
body.single-product .site-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.woocommerce #content,
body.woocommerce-page #content,
body.single-product #content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.woocommerce .woocommerce-products-header,
body.woocommerce-page .woocommerce-products-header,
body.woocommerce .ast-archive-description,
body.woocommerce-page .ast-archive-description {
  margin-top: 0 !important;
  padding-top: 20px !important;
}

@media (max-width: 544px) {
  .site .site-content #primary .ast-woocommerce-container,
  body.single-product .ast-woocommerce-container,
  body.single-product #primary .ast-woocommerce-container,
  body.single-product .site-content .ast-woocommerce-container {
    padding-top: 20px !important;
  }
}

@media (max-width: 768px) {
  .site .site-content #primary .ast-woocommerce-container,
  body.single-product .ast-woocommerce-container,
  body.single-product #primary .ast-woocommerce-container,
  body.single-product .site-content .ast-woocommerce-container {
    padding-top: 20px !important;
  }
}

/* =====================================================
   TIPOGRAFÍA PRODUCTOS WOOCOMMERCE - FORZAR RESET
   ===================================================== */

body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body.archive.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.4 !important;
  color: #1a1a1a !important;
}

body.woocommerce ul.products li.product .woocommerce-loop-product__title:hover,
body.woocommerce ul.products li.product h2:hover {
  color: #d9b505 !important;
}

/* =====================================================
   CARRUSEL DE CATEGORÍAS
   ===================================================== */

.suplein-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* FIX: Ocultar carrusel en escritorio forzosamente para ganarle al JS del plugin */
@media (min-width: 768px) {
  .suplein-categories-carousel {
    display: none !important;
  }
}

/* FIX: En móvil, ocultar cuadrícula y mostrar el carrusel forzosamente */
@media (max-width: 767px) {
  .suplein-categories-grid {
    display: none !important;
  }
  .suplein-categories-carousel {
    display: block !important;
  }
}

.suplein-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.suplein-category-card:hover {
  transform: translateY(-5px);
}

.suplein-category-card .category-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 3px solid #e5e5e5;
  background: #f5f5f5;
  transition: border-color 0.3s;
}

.suplein-category-card:hover .category-image {
  border-color: #d9b505;
}

.suplein-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.suplein-category-card:hover img {
  transform: scale(1.1);
}

.suplein-category-card .category-title {
  font-weight: bold;
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.swiper-wrapper {
  margin-bottom: 50px;
}

.suplein-categories-carousel .swiper-pagination-bullet {
  background: #000 !important;
  opacity: 0.6;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 50%;
}

.suplein-categories-carousel .swiper-pagination-bullet-active {
  background: #d9b505 !important;
  opacity: 1;
}

/* =====================================================
   RESET Y FULL WIDTH (SOLUCIÓN PANTALLA COMPLETA)
   ===================================================== */
.suplein-affiliates-page {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: hidden;
}

.suplein-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; 
    z-index: 5; 
}

/* =====================================================
   HERO SECTION - FIX BOTÓN Y FONDO
   ===================================================== */
.suplein-affiliates-hero {
  position: relative; 
  background: #000000 !important;
  padding: 100px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.suplein-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); 
    z-index: 1; 
}

.suplein-affiliates-hero-content {
  position: relative; 
  z-index: 10; 
  max-width: 800px;
  margin: 0 auto;
}

.suplein-affiliates-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff !important;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.1;
}

.suplein-affiliates-hero h1 .text-gold {
  color: #d9b505 !important;
}

.suplein-affiliates-hero p {
  font-size: 1.2rem;
  color: #cccccc !important;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-btn {
  position: relative;
  display: inline-block;
  background: #d9b505 !important;
  color: #000000 !important;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 18px 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  border-radius: 5px;
  z-index: 20; 
  cursor: pointer !important;
}

.hero-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 181, 5, 0.4);
}

@media (max-width: 768px) {
  .suplein-affiliates-hero h1 { font-size: 2.2rem; }
  .suplein-affiliates-hero p { font-size: 1rem; }
  .hero-btn { padding: 15px 35px; font-size: 0.9rem; }
}

/* =====================================================
   SECCIONES GENERALES (Full Width)
   ===================================================== */
.section-title {
  color: #000000 !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

/* BENEFITS */
.suplein-affiliates-benefits {
  background: #ffffff !important;
  padding: 100px 0;
  width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #f8f8f8 !important;
  border: 2px solid #e5e5e5;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #d9b505;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-icon { font-size: 3.5rem; margin-bottom: 20px; display: block; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; color: #000; }
.benefit-card p { color: #666; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* HOW IT WORKS */
.suplein-affiliates-how {
  background: #d9b505 !important;
  padding: 100px 0;
  width: 100%;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.step-card {
  background: #000000 !important;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover { transform: translateY(-10px); }

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  border: 5px solid #d9b505;
}

.step-card h3 { color: #fff; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin-top: 20px; margin-bottom: 15px; }
.step-card p { color: #ccc; font-size: 0.9rem; margin: 0; }

/* REQUIREMENTS */
.suplein-affiliates-requirements {
  background: #ffffff !important;
  padding: 100px 0;
  width: 100%;
}

.requirements-list { max-width: 800px; margin: 0 auto; }
.requirement-item {
  background: #f9f9f9 !important;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-left: 6px solid #d9b505;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  transition: transform 0.3s;
}
.requirement-item:hover { transform: translateX(10px); background: #f0f0f0 !important; }
.check-icon {
  width: 35px; height: 35px; background: #d9b505 !important; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #000; font-weight: bold;
}
.requirement-item p { margin: 0; color: #333; font-weight: 500; }

/* COMMISSION */
.suplein-affiliates-commission {
  background: #d9b505 !important;
  padding: 100px 0;
  width: 100%;
}

.commission-highlight {
  background: #000000 !important;
  color: #ffffff;
  padding: 60px 30px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.commission-highlight h3 { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; color: #fff; }
.commission-percentage { font-size: 6rem; font-weight: 900; font-style: italic; line-height: 1; margin: 20px 0; color: #d9b505; }
.commission-highlight p { font-size: 1.2rem; color: #ccc; margin: 0; }
.commission-details { text-align: center; max-width: 800px; margin: 40px auto 0; font-size: 1.2rem; color: #000; }

/* RESOURCES */
.suplein-affiliates-resources {
  background: #ffffff !important;
  padding: 100px 0;
  width: 100%;
}
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.resource-card { background: #f8f8f8 !important; border: 2px solid #eee; border-radius: 15px; padding: 35px; transition: 0.3s; }
.resource-card:hover { border-color: #d9b505; transform: translateY(-5px); }
.resource-card h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; border-bottom: 2px solid #eee; padding-bottom: 15px; margin-bottom: 20px; color: #000; }
.resource-card ul { list-style: none; padding: 0; margin: 0; }
.resource-card li { padding: 10px 0 10px 25px; position: relative; color: #555; border-bottom: 1px solid #f0f0f0; }
.resource-card li::before { content: "→"; position: absolute; left: 0; color: #d9b505; font-weight: bold; }

/* FAQ */
.suplein-affiliates-faq {
  background: #d9b505 !important;
  padding: 100px 0;
  width: 100%;
}
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: #000 !important; padding: 30px 40px; margin-bottom: 20px; border-radius: 15px; transition: 0.3s; }
.faq-item:hover { transform: scale(1.02); }
.faq-item h3 { color: #d9b505; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.faq-item p { color: #ccc; margin: 0; line-height: 1.6; }

/* =====================================================
   SECCIÓN PADRE - NEGRO ABSOLUTO
   ===================================================== */
.suplein-affiliates-cta {
    background-color: #000000 !important;
    padding: 80px 0;
    text-align: center;
    width: 100%;
    overflow: hidden; 
}

.suplein-affiliates-cta h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff !important;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 20px;
}

.suplein-affiliates-cta .text-brand {
    color: #d9b505 !important;
}

.suplein-affiliates-cta p {
    color: #aaaaaa !important;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* =====================================================
   CONTENEDOR PRINCIPAL - BLANCO MODERNO
   ===================================================== */
.affiliates-form-container {
    max-width: 600px;
    width: 92%;
    margin: 0 auto;
    background: #ffffff !important; 
    padding: 50px 40px !important;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); 
    border: none !important;
    text-align: left;
}

.affiliates-form-container form, 
.affiliates-form-container .yith-wcaf-registration-form,
.affiliates-form-container .u-columns,
.affiliates-form-container .u-column1,
.affiliates-form-container .u-column2 {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* =====================================================
   TEXTOS Y ETIQUETAS (NEGRO CONTRASTE)
   ===================================================== */
.affiliates-form-container label,
.affiliates-form-container .um-field-label {
    color: #000000 !important; 
    font-weight: 800; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    margin-bottom: 10px !important;
    display: block;
    letter-spacing: 0.5px;
}

.affiliates-form-container h2, 
.affiliates-form-container h3 {
    color: #000000 !important;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 30px !important;
    text-align: center;
}

/* =====================================================
   CAMPOS DE ENTRADA (INPUTS)
   ===================================================== */
.affiliates-form-container input[type="text"],
.affiliates-form-container input[type="email"],
.affiliates-form-container input[type="password"],
.affiliates-form-container input[type="tel"],
.affiliates-form-container textarea {
    background: #f9f9f9 !important; 
    border: 2px solid #eeeeee !important; 
    border-radius: 10px !important;
    padding: 15px !important; 
    width: 100% !important; 
    color: #000000 !important; 
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px !important;
}

.affiliates-form-container input:focus { 
    border-color: #d9b505 !important; 
    background: #ffffff !important;
    outline: none; 
    box-shadow: 0 0 10px rgba(217, 181, 5, 0.1);
}

/* =====================================================
   BOTÓN DE REGISTRO
   ===================================================== */
.affiliates-form-container input[type="submit"], 
.affiliates-form-container button[type="submit"],
.affiliates-form-container .button {
    background: #d9b505 !important;
    color: #000000 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    padding: 20px !important;
    width: 100% !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-size: 1.1rem !important;
    margin-top: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(217, 181, 5, 0.2);
}

.affiliates-form-container input[type="submit"]:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.affiliates-form-container p, 
.affiliates-form-container span {
    color: #666666 !important;
    font-size: 0.9rem;
}

/* =====================================================
   SCROLL Y MEDIA QUERIES AFILIADOS
   ===================================================== */
html { scroll-behavior: smooth; }

@media (max-width: 768px) {
    .affiliates-form-container {
        width: 100%;
        padding: 35px 20px !important;
        border-radius: 0; 
    }
    .suplein-affiliates-cta h2 {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    .section-title { font-size: 1.8rem; }
    .suplein-affiliates-page { padding-top: 0; }
    .commission-percentage { font-size: 4rem; }
}
   
/* =====================================================
   LANDING PAGE CREATINAS SUPLEIN
   ===================================================== */
   
/* =====================================================
   FIX LAYOUT ESCRITORIO - ANCHO COMPLETO
   ===================================================== */
body.page-template-page-creatinas,
body.page-template-page-creatinas #page,
body.page-template-page-creatinas #content,
body.page-template-page-creatinas .site-content,
body.page-template-page-creatinas .ast-container,
body.page-template-page-creatinas #primary,
body.page-template-page-creatinas .content-area {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-template-page-creatinas .site-content {
  display: block !important;
}

body.page-template-page-creatinas #secondary,
body.page-template-page-creatinas aside,
body.page-template-page-creatinas .sidebar,
body.page-template-page-creatinas .widget-area {
  display: none !important;
}

.suplein-creatinas-page {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.suplein-creatinas-page section {
  width: 100% !important;
  max-width: 100% !important;
}

/* Reset y contenedor principal */
.suplein-creatinas-page,
.suplein-creatinas-page * {
  background-image: none !important;
}

.suplein-creatinas-page {
  background: #000000 !important;
  color: #ffffff;
  overflow-x: hidden;
}

.suplein-creatinas-page .suplein-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent !important;
}

/* =====================================================
   HERO SECTION - FONDO NEGRO
   ===================================================== */
.creatinas-hero,
.suplein-creatinas-page .creatinas-hero {
  background: #000000 !important;
  padding: 100px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creatinas-hero-content {
  max-width: 800px;
  margin: 0 auto;
  background: transparent !important;
}

.creatinas-hero .hero-badge {
  display: inline-block;
  background: #d9b505 !important;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 25px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.creatinas-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff !important;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.1;
}

.creatinas-hero h1 .text-gold {
  color: #d9b505 !important;
}

.creatinas-hero p {
  font-size: 1.2rem;
  color: #cccccc !important;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.creatinas-hero .hero-btn {
  display: inline-block;
  background: #d9b505 !important;
  color: #000000 !important;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 20px 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.creatinas-hero .hero-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .creatinas-hero h1 {
    font-size: 4rem;
  }
}

/* =====================================================
   BENEFICIOS SECTION - FONDO AMARILLO
   ===================================================== */
.creatinas-beneficios,
.suplein-creatinas-page .creatinas-beneficios {
  background: #d9b505 !important;
  padding: 100px 20px;
}

.creatinas-beneficios .section-title {
  color: #000000 !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.beneficio-card {
  background: #000000 !important;
  border: 2px solid #000000;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.beneficio-card:hover {
  border-color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.beneficio-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  display: block;
}

.beneficio-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
}

.beneficio-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   PRODUCTOS SECTION - FONDO BLANCO
   ===================================================== */
.creatinas-productos,
.suplein-creatinas-page .creatinas-productos {
  background: #ffffff !important;
  padding: 100px 20px;
}

.creatinas-productos .section-title {
  color: #000000 !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
}

.creatinas-productos .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 50px;
  font-weight: 500;
}

.productos-woocommerce {
  background: transparent !important;
  max-width: 1200px;
  margin: 0 auto;
}

.productos-woocommerce .products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .productos-woocommerce .products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
  }
}

.productos-woocommerce .product {
  background: #f8f8f8 !important;
  border: 2px solid #e5e5e5 !important;
  border-radius: 16px !important;
  padding: 20px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  list-style: none !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.productos-woocommerce .product:hover {
  transform: translateY(-10px) !important;
  border-color: #d9b505 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.productos-woocommerce .product img {
  border-radius: 12px !important;
  margin-bottom: 15px !important;
  width: 100% !important;
  height: auto !important;
}

.productos-woocommerce .product .woocommerce-loop-product__title {
  color: #000000 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
}

.productos-woocommerce .product .price {
  color: #d9b505 !important;
  font-size: 1.2rem !important;
  font-weight: 900 !important;
  margin-bottom: 15px !important;
}

.productos-woocommerce .product .price del {
  color: #999999 !important;
  font-size: 0.9rem !important;
}

.productos-woocommerce .product .price ins {
  text-decoration: none !important;
  color: #d9b505 !important;
}

.productos-woocommerce .product .button,
.productos-woocommerce .product .add_to_cart_button {
  background: #d9b505 !important;
  color: #000000 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  padding: 12px 25px !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
  font-size: 0.85rem !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.productos-woocommerce .product .button:hover,
.productos-woocommerce .product .add_to_cart_button:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

.productos-woocommerce .star-rating,
.productos-woocommerce .onsale {
  display: none !important;
}

/* =====================================================
   FIX GENERAL PARA ESCRITORIO - CONTENEDORES
   ===================================================== */
.suplein-creatinas-page .suplein-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent !important;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .beneficios-grid,
  .ciencia-grid,
  .testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .creatinas-faq .faq-container {
    max-width: 900px;
  }
  
  .comparativa-tabla-container {
    overflow-x: visible;
  }
  
  .comparativa-tabla {
    min-width: auto;
  }
  
  .comparativa-tabla th,
  .comparativa-tabla td {
    padding: 25px 20px;
    font-size: 1rem;
  }
}

/* =====================================================
   RESPONSIVE AJUSTES MÓVIL
   ===================================================== */
@media (max-width: 767px) {
  .productos-woocommerce .products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  
  .productos-woocommerce .product {
    padding: 15px !important;
  }
  
  .productos-woocommerce .product .woocommerce-loop-product__title {
    font-size: 0.8rem !important;
  }
  
  .productos-woocommerce .product .price {
    font-size: 1rem !important;
  }
  
  .productos-woocommerce .product .button,
  .productos-woocommerce .product .add_to_cart_button {
    padding: 10px 15px !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .productos-woocommerce .products {
    gap: 12px !important;
  }
  
  .productos-woocommerce .product {
    padding: 12px !important;
  }
  
  .productos-woocommerce .product .woocommerce-loop-product__title {
    font-size: 0.75rem !important;
  }
  
  .productos-woocommerce .product .button,
  .productos-woocommerce .product .add_to_cart_button {
    padding: 8px 12px !important;
    font-size: 0.7rem !important;
    width: 100% !important;
  }
}

/* =====================================================
   CIENCIA SECTION - FONDO NEGRO
   ===================================================== */
.creatinas-ciencia,
.suplein-creatinas-page .creatinas-ciencia {
  background: #000000 !important;
  padding: 100px 20px;
}

.creatinas-ciencia .section-title {
  color: #ffffff !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.ciencia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ciencia-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ciencia-card {
  background: #1a1a1a !important;
  border: 2px solid #333333;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.ciencia-card:hover {
  border-color: #d9b505;
  transform: translateY(-5px);
}

.ciencia-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #d9b505;
  margin-bottom: 20px;
}

.ciencia-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
  margin: 0;
}

/* =====================================================
   COMPARATIVA SECTION - FONDO BLANCO
   ===================================================== */
.creatinas-comparativa,
.suplein-creatinas-page .creatinas-comparativa {
  background: #ffffff !important;
  padding: 100px 20px;
}

.creatinas-comparativa .section-title {
  color: #000000 !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.comparativa-tabla-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparativa-tabla {
  width: 100%;
  border-collapse: collapse;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
}

.comparativa-tabla thead {
  background: #d9b505;
}

.comparativa-tabla th {
  padding: 20px 15px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #000000;
}

.comparativa-tabla td {
  padding: 20px 15px;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid #333333;
  font-size: 0.95rem;
}

.comparativa-tabla tbody tr:last-child td {
  border-bottom: none;
}

.comparativa-tabla tbody tr:hover {
  background: #1a1a1a;
}

.tag-recomendado {
  background: #d9b505;
  color: #000000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-premium {
  background: #ffffff;
  color: #000000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-sensible {
  background: #4CAF50;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-calidad {
  background: #9C27B0;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* =====================================================
   TESTIMONIOS SECTION - FONDO AMARILLO
   ===================================================== */
.creatinas-testimonios,
.suplein-creatinas-page .creatinas-testimonios {
  background: #d9b505 !important;
  padding: 100px 20px;
}

.creatinas-testimonios .section-title {
  color: #000000 !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonio-card {
  background: #000000 !important;
  border-radius: 16px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.testimonio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonio-rating {
  margin-bottom: 20px;
}

.testimonio-rating .star {
  color: #333333;
  font-size: 1.3rem;
  margin-right: 3px;
}

.testimonio-rating .star.filled {
  color: #d9b505;
}

.testimonio-texto {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonio-autor {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonio-autor strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.testimonio-autor span {
  color: #d9b505;
  font-size: 0.85rem;
}

/* =====================================================
   FAQ SECTION - FONDO NEGRO
   ===================================================== */
.creatinas-faq,
.suplein-creatinas-page .creatinas-faq {
  background: #000000 !important;
  padding: 100px 20px;
}

.creatinas-faq .section-title {
  color: #ffffff !important;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.creatinas-faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.creatinas-faq .faq-item {
  background: #1a1a1a !important;
  padding: 35px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 5px solid #d9b505;
  transition: all 0.3s ease;
}

.creatinas-faq .faq-item:hover {
  background: #252525 !important;
  transform: translateX(10px);
}

.creatinas-faq .faq-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #d9b505;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.creatinas-faq .faq-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  margin: 0;
}

/* =====================================================
   CTA FINAL SECTION - FONDO AMARILLO
   ===================================================== */
.creatinas-cta,
.suplein-creatinas-page .creatinas-cta {
  background: #d9b505 !important;
  padding: 120px 20px;
  text-align: center;
}

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

.creatinas-cta h2 {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 25px;
  line-height: 1.2;
}

.creatinas-cta h2 .text-gold {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #000000;
}

.creatinas-cta p {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 22px 70px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   RESPONSIVE - MOBILE (CREATINAS)
   ===================================================== */
@media (max-width: 768px) {
  .creatinas-hero {
    padding: 70px 20px;
    min-height: 450px;
  }

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

  .creatinas-hero p {
    font-size: 1rem;
  }

  .creatinas-beneficios,
  .creatinas-productos,
  .creatinas-ciencia,
  .creatinas-comparativa,
  .creatinas-testimonios,
  .creatinas-faq,
  .creatinas-cta {
    padding: 70px 20px;
  }

  .creatinas-beneficios .section-title,
  .creatinas-productos .section-title,
  .creatinas-ciencia .section-title,
  .creatinas-comparativa .section-title,
  .creatinas-testimonios .section-title,
  .creatinas-faq .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .creatinas-cta h2 {
    font-size: 2rem;
  }

  .creatinas-cta p {
    font-size: 1.1rem;
  }

  .comparativa-tabla th,
  .comparativa-tabla td {
    padding: 12px 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .creatinas-hero h1 {
    font-size: 1.8rem;
  }

  .creatinas-hero .hero-btn {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .creatinas-cta h2 {
    font-size: 1.7rem;
  }

  .cta-btn {
    padding: 18px 50px;
    font-size: 1rem;
  }
}

/* =====================================================
   BADGES Y BOTONES EXTRAS
   ===================================================== */
.ast-on-card-button.ast-onsale-card {
  background-color: #ff0000;
  color: #fff;
}