/* ===========================================
   VARIABLES Y RESET - CON COLORES COMPLETOS DE MARCA
   =========================================== */

:root {
    --primary-blue: #4bb4f5;
    --primary-pink: #f129bd;
    --accent-yellow: #fbd15f;
    --accent-purple: #f129bd;
    --primary-green: #25D366;
    --whatsapp-green: #25D366;
    --dark-text: #1d1d1d;
    --light-text: #666;
    --bg-color: #fbfaf8;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-border: #eee;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 48px;
    --text-4xl: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

/* ========== CONTROL DE SCROLL HORIZONTAL EN MÓVIL ========== */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Permitir scroll horizontal solo en contenedores específicos */
.category-bubbles,
.featured-products-grid,
.product-grid,
#sets-materos-subcategories,
.subcategory-bubbles,
.footer-circles {
    -webkit-overflow-scrolling: touch; /* Scroll suave en iOS */
}

/* En móvil, ocultar scroll horizontal global pero permitirlo en contenedores específicos */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    /* Estos contenedores pueden tener scroll horizontal */
    .category-bubbles,
    .featured-products-grid,
    .product-grid,
    #sets-materos-subcategories,
    .subcategory-bubbles {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-pink) transparent;
    }
    
    /* Scroll personalizado para Webkit */
    .category-bubbles::-webkit-scrollbar,
    .featured-products-grid::-webkit-scrollbar,
    .product-grid::-webkit-scrollbar,
    #sets-materos-subcategories::-webkit-scrollbar,
    .subcategory-bubbles::-webkit-scrollbar {
        height: 6px;
    }
    
    .category-bubbles::-webkit-scrollbar-track,
    .featured-products-grid::-webkit-scrollbar-track,
    .product-grid::-webkit-scrollbar-track,
    #sets-materos-subcategories::-webkit-scrollbar-track,
    .subcategory-bubbles::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .category-bubbles::-webkit-scrollbar-thumb,
    .featured-products-grid::-webkit-scrollbar-thumb,
    .product-grid::-webkit-scrollbar-thumb,
    #sets-materos-subcategories::-webkit-scrollbar-thumb,
    .subcategory-bubbles::-webkit-scrollbar-thumb {
        background: var(--primary-pink);
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    /* Asegurar que los grids no se desborden */
    .featured-products-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        width: 100%;
    }
    
    /* Los contenedores de burbujas necesitan scroll horizontal */
    .category-bubbles,
    #sets-materos-subcategories,
    .subcategory-bubbles {
        padding-bottom: 15px;
        margin-bottom: -15px; /* Compensar padding del scroll */
    }
}

/* Whatsapp Floater */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin-top: 2px;
}

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

/* ===========================================
   ANIMACIONES
   =========================================== */

@keyframes revealUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========== ANIMACIÓN PARA EL ELEMENTO SOCIAL-PROOF ========== */
@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-4px) rotate(0.5deg); 
    }
    50% { 
        transform: translateY(2px) rotate(-0.3deg); 
    }
    75% { 
        transform: translateY(-2px) rotate(0.3deg); 
    }
}

/* ========== ANIMACIÓN SUAVE PARA EL LOGO MIME ========== */
@keyframes gentleLogoFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    33% { 
        transform: translateY(-3px) scale(1.005); 
    }
    66% { 
        transform: translateY(2px) scale(0.997); 
    }
}

.reveal { animation: revealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; opacity: 0; }

.scroll-reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
    transition-delay: 0.1s; 
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

.scroll-reveal-left { 
    opacity: 0; 
    transform: translateX(-30px); 
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
    transition-delay: 0.2s; 
}
.scroll-reveal-left.visible { opacity: 1; transform: translateX(0); }

.scroll-reveal-right { 
    opacity: 0; 
    transform: translateX(30px); 
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
    transition-delay: 0.2s; 
}
.scroll-reveal-right.visible { opacity: 1; transform: translateX(0); }

.scroll-reveal-scale { 
    opacity: 0; 
    transform: scale(0.9); 
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
    transition-delay: 0.1s; 
}
.scroll-reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===========================================
   TIPOGRAFÍA CONSISTENTE
   =========================================== */
h1, h2, .hero-content h1, .footer-logo {
    font-family: 'Titan One', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p, span, a, button, input, textarea,
.hero-description, .featured-subtitle, .footer-desc, h3, h4 {
    font-family: 'Inter', sans-serif;
}

/* ===========================================
   HEADER Y NAVEGACIÓN
   =========================================== */

/* ===========================================
   HEADERS SEPARADOS CON LOGO CENTRADO Y GRANDE
   =========================================== */

/* Header Principal (blanco, más grande con logo centrado) */
.header-main {
    display: flex;
    align-items: center;
    padding: 2rem clamp(1rem, 5vw, 5rem);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: var(--shadow-sm);
    height: 140px; /* Más alto para el logo grande */
    justify-content: space-between;
}

/* Contenedor para centrar el logo */
.logo-center-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo principal más grande */
.site-logo-main {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
    max-width: 350px;
}

.site-logo-main:hover {
    transform: scale(1.05);
}

/* Botón Comprar Ahora y carrito alineados a la derecha */
.header-main .header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto; /* Empuja los elementos a la derecha */
}

/* Icono del carrito en Header Principal */
.header-main #cart-trigger {
    position: relative;
    color: var(--dark-text);
    font-size: 1.8rem; /* Un poco más grande */
    text-decoration: none;
    transition: color 0.3s;
}

.header-main #cart-trigger:hover {
    color: var(--primary-pink);
}

/* Botón Comprar Ahora en Header Principal */
.header-main .btn-shop-now {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.header-main .btn-shop-now:hover {
    background: color-mix(in srgb, var(--primary-green) 90%, black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header Secundario (rosa, más pequeño) */
.header-secondary {
    background: #b150d5;
    position: sticky;
    top: 140px; /* Debajo del header principal más alto */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(241, 41, 189, 0.2);
    height: 50px; /* Más pequeño que antes */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navegación en Header Secundario */
.header-secondary nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-secondary nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: clamp(2rem, 4vw, 4rem);
    height: 50px; /* Más pequeño */
    align-items: center;
    margin: 0;
    padding: 0 20px;
}

.header-secondary nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px; /* Un poco más pequeño */
    transition: all 0.3s;
    padding: 6px 0; /* Menos padding */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-secondary nav ul li a:hover,
.header-secondary nav ul li a.active {
    color: var(--accent-yellow);
}

.header-secondary nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s;
}

.header-secondary nav ul li a:hover::after,
.header-secondary nav ul li a.active::after {
    width: 100%;
}

/* Ajustar el contenido principal para que no quede oculto */
main {
    margin-top: 0;
}

/* Eliminar el header original (si existe) */
header:not(.header-main):not(.header-secondary) {
    display: none;
}

/* Estilo para el enlace del logo */
.logo-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.site-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Navegación */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 3rem);
}

nav ul li a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-green);
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#cart-trigger {
    position: relative;
    color: var(--dark-text);
    font-size: 1.25rem;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-pink);
    color: white;
    font-size: 0.75rem;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}


/* ===========================================
   BOTONES - USANDO COLORES DE MARCA
   =========================================== */

.btn-primary, .btn-shop-now, #checkout-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary:hover,
.btn-shop-now:hover,
#checkout-btn:hover {
    background: color-mix(in srgb, var(--primary-green) 90%, black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-pink {
    background: var(--primary-pink) !important;
}

.btn-pink:hover {
    background: color-mix(in srgb, var(--primary-pink) 90%, black) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 0.875rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Botones para productos (usando verde de marca) */
.view-options-btn,
.product-actions .btn-primary {
    background-color: var(--primary-green) !important;
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-options-btn:hover,
.product-actions .btn-primary:hover {
    background-color: #3a5d4a !important;
    transform: translateY(-2px);
}

/* ===========================================
   SECCIÓN HERO - ARREGLADA PARA MÓVIL
   =========================================== */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px 60px 80px;
    margin-top: 0;
    min-height: auto;
}

.hero-content {
    flex: 1;
    animation: revealUp 0.8s ease forwards;
}

.tagline {
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
}
.hero-content h1 .highlight, 
.product-price { color: var(--primary-blue); }
.hero-content h1 .black-text { color: var(--dark-text) !important; }

.hero-description {
    font-size: 18px;
    color: var(--light-text);
    max-width: 900px;
    margin-bottom: 40px;
    animation: revealUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    animation: revealUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-image-container {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    z-index: 1;
    overflow: visible;
}

.hero-image-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 40px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    animation: gentleLogoFloat 15s ease-in-out infinite;
    will-change: transform;
    transition: filter 0.3s ease;
}

/* Efecto de pulso muy suave para el borde de la imagen */
@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
}

.social-proof {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: revealUp 0.8s ease 0.6s forwards;
    will-change: transform;
    transition: transform 0.3s ease;
    white-space: nowrap;
    z-index: 10;
    max-width: 90%;
}

.icon-box {
    background: var(--accent-yellow);
    color: var(--dark-text);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.proof-text b {
    display: block;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proof-text span {
    font-size: 12px;
    color: var(--light-text);
    white-space: nowrap;
}

.trust-badges {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: var(--light-text);
}
.trust-badges span b { color: var(--dark-text); }

/* ===========================================
   SECCIÓN FEATURES
   =========================================== */

.features-bar {
    background-color: var(--white);
    color: var(--dark-text) !important;
    padding: 60px 80px;
    margin-top: 50px;
    border-top: 1px solid #eee;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

/* Colores de iconos usando la paleta de marca */
.features-container .feature-item:nth-child(1) i { color: var(--primary-blue) !important; }
.features-container .feature-item:nth-child(2) i { color: var(--accent-yellow) !important; }
.features-container .feature-item:nth-child(3) i { color: var(--primary-pink) !important; }
.features-container .feature-item:nth-child(4) i { color: var(--accent-purple) !important; }

.features-container .feature-item i { 
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-item i {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--primary-blue) !important;
    opacity: 0.9;
}
.feature-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}
.feature-item p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--light-text) !important;
    opacity: 1 !important;
    max-width: 200px;
}

/* ===========================================
   NUEVO ESTILO PARA PRODUCTOS DESTACADOS
   =========================================== */
.featured-products {
    position: relative; /* Necesario para posicionar la curva */
    /* Degradado radial: un tono crema suave al centro que abre a blanco */
    background: radial-gradient(circle at center, #FBD15F 0%, #ffffff 100%) !important;
    padding: 100px 20px 180px 20px !important; /* Más espacio abajo para la curva */
    overflow: hidden;
}

/* Estilos para el divisor de curva */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg); /* Volteamos el SVG para que esté abajo */
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px; /* Ajusta la altura de la curva aquí */
}

.custom-shape-divider-bottom .shape-fill {
    fill: #ffffff; /* Debe ser el mismo color que la sección de abajo (blanco) */
}

.featured-products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.featured-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 10px 40px rgba(241, 41, 189, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
}

.featured-product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gray-light);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-pink);
    animation: pulse 2s infinite;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.featured-product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.featured-product-info h3 {
    margin: 0;
    color: var(--dark-text);
    font-size: 1.25rem;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.featured-stock {
    font-size: 0.875rem;
    color: var(--light-text);
    background: rgba(78, 124, 101, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

.featured-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.option-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--gray-light);
    border-radius: 0.5rem;
    color: var(--light-text);
}

.featured-description {
    font-size: 0.875rem;
    color: var(--light-text);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.btn-view-details {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: auto;
}

.btn-view-details:hover {
    background: color-mix(in srgb, var(--primary-green) 90%, black);
}

/* ===========================================
   PÁGINA NOSOTROS
   =========================================== */

.about-page {
    padding: 100px 20px;
    background-color: var(--bg-color);
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-simple {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 100px auto;
}

.section-tag {
    display: block;
    color: var(--primary-pink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-hero-simple h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.about-description-container { text-align: left; }
.about-description-container p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 25px;
    font-weight: 400;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px;
    margin-top: 80px;
}

.value-card {
    background: white;
    padding: 45px 30px;
    border-radius: 24px;
    border: 1px solid #f1f1f1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 20px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
}
.value-card p {
    font-size: 14.5px;
    color: var(--light-text);
    line-height: 1.6;
}

/* ===========================================
   PÁGINA TIENDA
   =========================================== */

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.collection-header { text-align: center; margin-bottom: 80px; }

/* Categorías */
.category-bubbles-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px;
    overflow: hidden;
    position: relative;
}

.category-bubbles {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.category-bubbles::-webkit-scrollbar {
    display: none;
}

.bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex: 0 0 auto;
    width: 130px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.bubble:hover { transform: translateY(-10px); }

.bubble-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    margin-bottom: 12px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bubble-img img {
    width: 145%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Ajustar para que las imágenes más pequeñas no se estiren */
.bubble-img img.small-image {
    max-width: 80%;
    max-height: 80%;
}

.bubble:hover .bubble-img {
    border-color: var(--primary-pink);
    box-shadow: 0 15px 30px rgba(241, 41, 189, 0.2);
}
.bubble:hover img { transform: scale(1.15); }

.bubble span {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.separator {
    border: 0;
    border-top: 1px solid #eee;
    margin: 40px 0;
}

/* Grid de Productos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 15px;
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 1fr);
        gap: 20px;
    }
}

.product-card {
    cursor: pointer;
    animation: revealUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-image {
    position: relative;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease !important;
}
.product-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* ESTILOS UNIFICADOS PARA BOTONES DE PRODUCTO */
.product-image button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    width: 80%;
    text-align: center;
    z-index: 2;
}

.product-card:hover .product-image button {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.product-image button:hover {
    background: #3a5d4a;
}

.product-info { padding: 20px 0; }
.product-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Estilos para subcategorías */
#subcategory-container {
    animation: fadeIn 0.5s ease;
}

.subcategory-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1000px;
}

.subbubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex: 0 0 auto;
    width: 180px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.subbubble-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    margin-bottom: 15px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.subbubble:hover .subbubble-img {
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(78, 124, 101, 0.2);
}

.subbubble-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subbubble:hover img {
    transform: scale(1.15);
}

.subbubble span {
    font-size: 14px;
    font-weight: 700;
    color: #1d1d1d;
    text-align: center;
    line-height: 1.3;
    padding: 0 5px;
    display: block;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subcategoría activa */
.subbubble.active .subbubble-img {
    border-color: var(--primary-green);
    background: rgba(78, 124, 101, 0.1);
}

.subbubble.active span {
    color: var(--primary-green);
    font-weight: 800;
}

/* Ajustar grid de productos cuando se muestran subcategorías */
body.showing-subcategories .product-grid {
    margin-top: 60px;
}

/* Variantes de producto */
.product-variants {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* ========== AJUSTAR TAMAÑO DE TÍTULOS DE PRODUCTOS ========== */

/* Títulos en tarjetas de productos regulares */
.product-info h3,
.product-title {
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

/* Títulos en productos destacados */
.featured-product-info h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

/* Título en página de detalle */
.product-detail-container h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

/* Títulos de colecciones */
.collection-header h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

/* ===========================================
   PÁGINA CONTACTO
   =========================================== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-item i {
    font-size: 20px;
    color: var(--primary-blue);
    background: #f0f4f2;
    padding: 15px;
    border-radius: 12px;
}
.info-item h4 { font-size: 16px; margin-bottom: 5px; }
.info-item p { color: var(--light-text); font-size: 14px; }

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f1f1;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus, 
.form-group textarea:focus { border-color: var(--primary-blue); }

#togglePassword {
    position: absolute;
    right: 15px;
    top: 40px;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

/* ===========================================
   PÁGINA LEGAL
   =========================================== */

.legal-page h1 { font-size: 36px; margin-bottom: 10px; }
.last-updated {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 40px;
    font-style: italic;
}
.legal-content h3 {
    font-size: 18px;
    margin: 30px 0 15px 0;
    color: var(--dark-text);
}
.legal-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
    background: linear-gradient(135deg, #0f2030 0%, #1a2c3e 100%);
    color: white;
    padding: 3rem clamp(1rem, 5vw, 5rem) 1.5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(241, 41, 189, 0.05), transparent);
    z-index: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 250px;
    height: auto;
    margin-bottom: -35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    padding: 10px;
    border-radius: 12px;
}

.footer-logo-img:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(241, 41, 189, 0.1), rgba(75, 180, 245, 0.1));
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 300px;
    margin-bottom: 0.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--primary-pink);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(241, 41, 189, 0.3);
}

.footer-socials a:nth-child(2):hover {
    background: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(75, 180, 245, 0.3);
}

/* Ajustar columnas de enlaces */
.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.footer-col:hover h4:after {
    width: 80px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    padding-right: 10px;
    position: relative;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(-5px);
}

.footer-col ul li a::before {
    content: '→';
    position: absolute;
    right: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover::before {
    right: -10px;
    opacity: 1;
    color: var(--primary-pink);
}

/* Footer bottom mejorado */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    position: relative;
}

.legal-links a:hover {
    color: var(--accent-yellow);
}

.legal-links a::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.3);
}

.legal-links a:last-child::after {
    display: none;
}

/* Efecto de partículas decorativas en el footer */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(241, 41, 189, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}


.legal-links a:hover {
    color: white;
}

/* Asegurar que el enlace del footer-credit sea clickeable */
.footer-credit {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit a {
    color: #fbd15f !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
    position: relative;
    z-index: 11;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.footer-credit a:hover {
    color: #ffed9e !important;
    text-decoration: underline !important;
}

/* Asegurarse de que el enlace no esté cubierto por otros elementos */
.site-footer {
    position: relative;
    z-index: 1;
}

.footer-credit {
    position: relative;
    z-index: 2;
}

/* Círculos decorativos del footer */
.footer-wave { width: 100%; position: relative; overflow: hidden; }
.footer-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    position: relative;
}
.footer-circles::before,
.footer-circles::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
}
.footer-circles::before { left: 0; }
.footer-circles::after { right: 0; }

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.circle:hover { transform: scale(1.2); opacity: 0.9; }
.circle-blue { background-color: var(--primary-blue); animation-delay: 0s; }
.circle-pink { background-color: var(--primary-pink); animation-delay: 0.5s; }
.circle-yellow { background-color: var(--accent-yellow); animation-delay: 1s; }
.circle-purple { background-color: var(--accent-purple); animation-delay: 1.5s; }



/* ===========================================
   MODALES Y OVERLAY
   =========================================== */

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white !important;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    z-index: 10000;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}
.modal.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

/* ===========================================
   ESTILOS DEL CARRITO - USANDO COLORES DE MARCA
   =========================================== */

.cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-btn:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    color: #ccc;
}

.quantity-input {
    width: 60px;
    text-align: center;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.quantity-input.warning { border-color: #ff9800; }
.quantity-input.limit {
    border-color: #ff4444;
    background-color: #fff5f5;
}

.limit-indicator {
    font-size: 11px;
    font-weight: bold;
}
.limit-indicator.near-limit { color: #ff9800; }
.limit-indicator.at-limit { color: #ff4444; }

.item-total {
    font-size: 12px;
    color: #4CAF50;
    font-weight: bold;
}

.remove-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
}

.item-count {
    font-size: 12px;
    color: #666;
}

.total-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-label { font-weight: bold; }
.total-amount {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 20px;
}

/* ===========================================
   PÁGINA DE PERFIL
   =========================================== */

.profile-main {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.profile-hero {
    background: linear-gradient(135deg, #4bb4f5, #f129bd);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}
.profile-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Acme', sans-serif;
}
.profile-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.profile-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.profile-section h3 {
    margin-bottom: 20px;
    color: #1d1d1d;
    font-family: 'Acme', sans-serif;
    font-size: 22px;
}

.profile-form-group { margin-bottom: 25px; }
.profile-form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}
.profile-form-row { display: flex; gap: 10px; }
.profile-input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
.profile-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: var(--primary-green);
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
.profile-btn:hover {
    background: #3a5d4a;
    transform: translateY(-2px);
}

.profile-status-msg {
    display: none;
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.profile-help {
    color: #666;
    font-size: 13px;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}
.profile-help i {
    color: #4bb4f5;
    margin-right: 8px;
}

.profile-history-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    background: #fafafa;
}
.profile-history-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.profile-history-id {
    color: #4bb4f5;
    font-weight: bold;
    font-size: 14px;
}
.profile-history-date { font-size: 12px; color: #666; }
.profile-history-amount {
    font-size: 18px;
    font-weight: bold;
    color: #1d1d1d;
}
.profile-history-count {
    font-size: 12px;
    color: #666;
    text-align: right;
}

.profile-logout-container {
    margin-top: 40px;
    text-align: center;
}
.profile-logout-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
.profile-logout-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.profile-empty-history {
    text-align: center;
    color: #999;
    padding: 40px 0;
    font-style: italic;
}

.cta-box {
    text-align: center;
}

/* ===========================================
   MENÚ MÓVIL
   =========================================== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
    padding: 0.5rem;
}

/* ===========================================
   BADGES DE STOCK - USANDO COLORES DE MARCA
   =========================================== */

.stock-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.stock-badge.in-stock {
    background-color: #d4edda;
    color: #155724;
}

.stock-badge.low-stock {
    background-color: #fff3cd;
    color: #856404;
}

.stock-badge.no-stock {
    background-color: #f8d7da;
    color: #721c24;
}

/* ===========================================
   CSS PARA PRODUCTOS - ESTRUCTURA UNIFICADA
   =========================================== */

/* Grid de productos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Tarjeta de producto */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Contenedor de imagen */
.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

/* Wrapper para centrado perfecto */
.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Imagen principal */
.product-image-main {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-main {
    transform: scale(1.05);
}

/* Botón Ver Opciones */
.product-actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Información del producto */
.product-info {
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 5px 0;
}

.product-variants {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
    font-weight: 500;
}

/* ===========================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE DETALLE
   =========================================== */

.product-detail-container .product-price-detail {
    color: var(--primary-green);
    font-size: 32px;
    font-weight: bold;
}

.product-detail-container .btn-primary {
    background: var(--primary-green) !important;
    color: white !important;
}

.product-detail-container .btn-primary:hover {
    background: #3a5d4a !important;
}

/* ========== ESPECIFICACIONES MEJORADAS ========== */
.product-specs {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.product-specs h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.spec-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.spec-item:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.spec-item.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-color: #d1ecff;
}

.spec-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.spec-item.highlight .spec-icon {
    background: #25D366;
}

.spec-content {
    flex: 1;
}

.spec-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.spec-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.spec-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.spec-list li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.spec-list li:before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.spec-list li strong {
    color: #333;
    font-weight: 600;
}

.spec-note {
    font-size: 13px !important;
    color: #777 !important;
    font-style: italic;
    margin-top: 8px;
}

/* ========== COLORES PARA ESPECIFICACIONES ========== */
.spec-item.blue .spec-icon {
    background: var(--primary-blue);
}

.spec-item.blue .spec-list li:before {
    color: var(--primary-blue);
}

.spec-item.pink .spec-icon {
    background: var(--primary-pink);
}

.spec-item.pink .spec-list li:before {
    color: var(--primary-pink);
}

.spec-item.yellow .spec-icon {
    background: var(--accent-yellow);
}

.spec-item.yellow .spec-list li:before {
    color: var(--accent-yellow);
}

.spec-item.purple .spec-icon {
    background: var(--accent-purple);
}

.spec-item.purple .spec-list li:before {
    color: var(--accent-purple);
}

/* Para las especificaciones highlight */
.spec-item.highlight.blue {
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
    border-color: #d1ecff;
}

.spec-item.highlight.pink {
    background: linear-gradient(135deg, #ffe6f7 0%, #fff0fa 100%);
    border-color: #ffd1f0;
}

.spec-item.highlight.yellow {
    background: linear-gradient(135deg, #fff8e6 0%, #fffcf0 100%);
    border-color: #ffefd1;
}

.spec-item.highlight.purple {
    background: linear-gradient(135deg, #f2e6ff 0%, #f7f0ff 100%);
    border-color: #e9d1ff;
}

/* ===========================================
   LIMPIAR ESTILOS DUPLICADOS Y CONFLICTIVOS
   =========================================== */

/* Eliminar estilos duplicados para botones de producto */
.add-to-cart-btn,
.product-image button:not(.view-options-btn) {
    display: none !important;
}

/* Asegurar consistencia en colores de la marca */
.color-option.selected {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: white;
}

.gallery-item.active {
    border-color: var(--primary-green);
}

/* ===========================================
   FIX PARA CARRITO EN PRODUCT-DETAIL
   =========================================== */

.product-detail-container .product-actions {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    position: static !important;
}

.product-detail-container .btn-primary,
.product-detail-container .btn-secondary {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===========================================
   ESTILOS PARA EL CARRITO
   =========================================== */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

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

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--dark-text);
}

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

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-border);
    background: var(--bg-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.cart-total span:first-child {
    color: var(--light-text);
}

.cart-total span:last-child {
    color: var(--primary-green);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1999;
}

.overlay.active {
    display: block;
}

/* ===========================================
   COLORES DE MARCA COMPLETOS
   =========================================== */

/* Uso de todos los colores de marca en diferentes elementos */
.color-blue { color: var(--primary-blue); }
.color-pink { color: var(--primary-pink); }
.color-yellow { color: var(--accent-yellow); }
.color-purple { color: var(--accent-purple); }
.color-green { color: var(--primary-green); }

.bg-blue { background-color: var(--primary-blue); }
.bg-pink { background-color: var(--primary-pink); }
.bg-yellow { background-color: var(--accent-yellow); }
.bg-purple { background-color: var(--accent-purple); }
.bg-green { background-color: var(--primary-green); }

/* ========== HEADERS DE COLECCIÓN ========== */
.collection-header {
    grid-column: 1 / -1;
    text-align: center;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #25D366;
}

.collection-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.collection-header p {
    color: #666;
    font-size: 16px;
}

/* Margen extra para la segunda colección */
.collection-header:not(:first-of-type) {
    margin-top: 60px;
}

/* ===========================================
   FIX PARA FUENTE Titan One
   =========================================== */

/* Asegurar que Titan One se aplique en todos los lugares necesarios */
.hero-content h1,
.hero-content h1 .highlight,
.hero-content h1 .black-text,
.newsletter h2,
.about-hero-simple h1,
.footer-logo,
.value-card h3,
.feature-item h3,
.contact-info h4,
.product-info h3 {
    font-family: 'Titan One', sans-serif !important;
    font-weight: 400;
}

/* Específico para el h1 del hero con pesos diferentes */
.hero-content h1 {
    font-weight: 700 !important;
}

.newsletter h2 {
    font-weight: 700 !important;
}

/* ========== ESTILOS ADICIONALES PARA ESPECIFICACIONES UNIFORMES ========== */
/* Añadir estos estilos al final del archivo CSS */

/* Asegurar que los bullets de listas hereden el color correcto */
.spec-item .spec-content li:before {
    color: inherit !important;
}

/* Para que los bullets tomen los colores específicos */
.spec-item.blue .spec-content li:before {
    color: var(--primary-blue) !important;
}

.spec-item.pink .spec-content li:before {
    color: var(--primary-pink) !important;
}

.spec-item.yellow .spec-content li:before {
    color: var(--accent-yellow) !important;
}

.spec-item.purple .spec-content li:before {
    color: var(--accent-purple) !important;
}

/* Mejorar la visualización del texto dentro de spec-content */
.spec-content p,
.spec-content ul,
.spec-content li {
    font-family: 'Inter', sans-serif !important;
}

.spec-content p br {
    display: block;
    content: "";
    margin-top: 8px;
}

/* Asegurar que el highlight de envío tenga su propio color */
.spec-item.highlight .spec-icon {
    background: #25D366 !important; /* Verde para envío */
}

.spec-item.highlight.blue .spec-icon {
    background: #25D366 !important; /* Mantener verde para envío */
}

/* Mejorar el aspecto de las notas */
.spec-note {
    font-size: 13px !important;
    color: #777 !important;
    font-style: italic;
    margin-top: 10px !important;
    line-height: 1.4;
    display: block;
}

/* Estilos para texto en negrita dentro de spec-content */
.spec-content strong {
    font-weight: 600;
    color: #333;
}

/* Mejorar espaciado en listas */
.spec-content ul {
    margin: 8px 0 12px 0;
}

.spec-content li {
    margin-bottom: 4px;
    line-height: 1.5;
}

/* Responsive para especificaciones */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-item {
        padding: 18px 15px;
    }
    
    .spec-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-specs h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .spec-content h4 {
        font-size: 15px;
    }
    
    .spec-content p,
    .spec-content li {
        font-size: 13px;
    }
}

/* ========== PREVENIR DESBORDAMIENTO EN ELEMENTOS FLOTANTES ========== */
.whatsapp-float {
    left: 25px;
    right: auto;
}

@media (max-width: 768px) {
    .whatsapp-float {
        left: 15px;
        bottom: 15px;
    }
    
    /* Asegurar que los headers no se desborden */
    .header-main,
    .header-secondary {
        width: 100%;
        overflow: hidden;
    }
    
    /* El carrito debe estar dentro del viewport */
    #cart-sidebar {
        width: 90%;
        max-width: 350px;
    }
}

/* ========== ARREGLAR PADDING PARA SCROLL HORIZONTAL ========== */
@media (max-width: 768px) {
    .shop-container,
    .featured-products-container,
    .hero,
    .features-bar,
    .newsletter {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ===========================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   =========================================== */

/* TABLET (1024px y menos) */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero {
        padding: 20px 40px 100px 40px;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }
    
    .hero-image-container {
        order: -1;
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-container img {
        width: 80%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .social-proof {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 30px auto 0 auto !important;
        width: auto !important;
        max-width: 300px !important;
        display: inline-flex !important;
    }
    
    /* Header */
    .header-main {
        padding: 1rem 2rem;
        height: 110px;
    }
    
    .site-logo-main {
        height: 90px;
    }
    
    .header-secondary {
        top: 110px;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Features */
    .features-container {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .feature-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    /* Contact Page */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        max-width: 100%;
        width: 100%;
    }
    
    /* About Page */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    
    /* Category Bubbles */
    .category-bubbles {
        justify-content: flex-start;
        padding: 20px 10px;
    }
}

/* MOVIL GRANDE (768px y menos) */
@media (max-width: 768px) {
    /* Headers */
    .header-main {
        height: 90px;
        padding: 1rem;
    }
    
    .site-logo-main {
        height: 70px;
        max-width: 250px;
    }
    
    .header-main .btn-shop-now {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        display: none; /* Opcional: ocultar en móvil */
    }
    
    .header-secondary {
        top: 90px;
        height: 45px;
        overflow-x: auto;
    }
    
    .header-secondary nav ul {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .header-secondary nav ul li a {
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Hero */
    .hero {
        padding: 20px 20px 80px 20px;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-image-container img {
        width: 90%;
        max-width: 350px;
    }
    
    .social-proof {
        padding: 10px 15px !important;
        gap: 10px !important;
        max-width: 260px !important;
    }
    
    .icon-box {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
    
    .proof-text b {
        font-size: 13px !important;
        white-space: normal !important;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    
    .proof-text span {
        font-size: 11px !important;
        white-space: normal !important;
    }
    
    /* Features Bar */
    .features-bar {
        padding: 40px 20px;
    }
    
    .feature-item {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    /* Product Grids */
    .product-grid,
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Featured Products */
    .featured-products {
        padding: 60px 15px 150px 15px !important;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 80px 20px;
    }
    
    .newsletter h2 {
        font-size: 32px;
    }
    
    .newsletter .subheading {
        font-size: 16px;
    }
    
    /* About Page */
    .about-page {
        padding: 60px 15px;
    }
    
    .about-hero-simple h1 {
        font-size: 42px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
        padding: 0;
    }
    
    /* Shop Page */
    .shop-container {
        padding: 40px 20px;
    }
    
    .category-bubbles {
        gap: 15px;
    }
    
    .bubble {
        width: 110px;
    }
    
    .bubble-img {
        width: 110px;
        height: 110px;
    }
    
    /* Footer */
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    /* Modales */
    .modal {
        width: 95%;
        padding: 25px;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        max-width: 100%;
    }
    
    /* Whatsapp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
}

/* MOVIL PEQUEÑO (480px y menos) */
@media (max-width: 480px) {
    /* Hero */
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-image-container img {
        width: 95%;
        max-width: 300px;
    }
    
    .social-proof {
        max-width: 240px !important;
        padding: 8px 12px !important;
    }
    
    .proof-text b {
        font-size: 12px !important;
    }
    
    .proof-text span {
        font-size: 10px !important;
    }
    
    /* Headers */
    .site-logo-main {
        height: 60px;
        max-width: 200px;
    }
    
    .header-main {
        height: 80px;
    }
    
    .header-secondary {
        top: 80px;
        height: 40px;
    }
    
    /* Product Cards */
    .product-image-container {
        height: 220px;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    /* Buttons */
    .btn-primary, .btn-shop-now {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Newsletter Form */
    .newsletter-form input,
    .btn-subscribe {
        padding: 15px 20px;
    }
    
    /* Trust Badges */
    .trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* Subcategory Bubbles */
    .subbubble {
        width: 140px;
    }
    
    .subbubble-img {
        width: 120px;
        height: 120px;
    }
    
    /* Footer */
    .footer-logo-img {
        width: 200px;
        margin-bottom: -25px;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
}

/* ORIENTACIÓN HORIZONTAL EN MÓVIL */
@media (max-height: 600px) and (orientation: landscape) {
    .header-main {
        height: 70px;
        padding: 0.5rem 1rem;
    }
    
    .site-logo-main {
        height: 50px;
    }
    
    .header-secondary {
        top: 70px;
        height: 35px;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }
    
    .hero-image-container img {
        max-height: 250px;
    }
}

/* ALTO CONTRASTE Y ACCESIBILIDAD */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #006400;
        --primary-blue: #0066cc;
        --primary-pink: #cc0066;
    }
    
    .btn-primary, .btn-shop-now {
        border: 2px solid #000;
    }
}

/* IMPRESIÓN */
@media print {
    .header-main,
    .header-secondary,
    .whatsapp-float,
    .site-footer,
    .btn-primary,
    .btn-shop-now {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .hero-image-container img {
        max-width: 300px;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ========== FIX PARA SECCIÓN ENVÍOS EN MÓVIL ========== */
@media (max-width: 1024px) {
    .shipping-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .shipping-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .shipping-faq {
        padding: 30px 20px !important;
        margin-top: 60px !important;
    }
    
    .faq-item {
        padding: 15px !important;
        margin-bottom: 25px !important;
    }
    
    /* Asegurar que el último card de resumen se vea */
    .about-page {
        padding-bottom: 40px !important;
    }
    
    /* Grid de 3 columnas convertida a 1 columna */
    .shipping-info-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .shipping-info-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .value-card {
        padding: 25px 20px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    /* Asegurar que todos los elementos sean visibles */
    .about-page {
        overflow: visible !important;
    }
    
    .shipping-faq {
        padding: 25px 15px !important;
    }
    
    /* El contenedor de resumen de tiempos */
    .about-page > div:last-of-type {
        margin-top: 40px !important;
        padding: 20px 15px !important;
        width: calc(100% - 30px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ========== ESPECIAL PARA PÁGINA ENVÍOS ========== */
.shipping-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Asegurar que la sección de resumen sea responsive */
.about-page > div:last-of-type > div {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
}

.about-page > div:last-of-type > div > div {
    min-width: 280px !important;
    max-width: 100% !important;
    flex: 1 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .shipping-info-grid {
        grid-template-columns: 1fr !important;
    }
    
    .about-page > div:last-of-type > div {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .about-page > div:last-of-type > div > div {
        width: 100% !important;
        max-width: 350px !important;
    }
}

/* ========== ESTILOS PARA BURBUJAS DE COLOR ========== */
.bubble-img.color-bubble {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid white !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.bubble-img.color-bubble span {
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    padding: 0 10px;
    font-family: 'Inter', sans-serif;
}

/* Para el color amarillo que necesita texto oscuro */
.bubble-img.color-bubble[style*="accent-yellow"] span {
    color: #333 !important;
}

.subbubble-img.color-bubble {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid white !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.subbubble-img.color-bubble span {
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    padding: 0 10px;
    font-family: 'Inter', sans-serif;
}

/* Para el color amarillo que necesita texto oscuro */
.subbubble-img.color-bubble[style*="accent-yellow"] span {
    color: #333 !important;
}