/* Variables */
:root {
    --primary: #2c3e50;
    --primary-dark: #1a2a3a;
    --primary-light: #34495e;
    --gold: #c6a708;        /* Dorado principal - reemplaza al naranja */
    --gold-dark: #a08808;   /* Dorado oscuro para hovers */
    --gold-light: #e6c84a;  /* Dorado claro */
    --red: #dd2403;          /* Rojo para ofertas destacadas */
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Iconos SVG */
.icon-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: var(--transition);
}

.icon-small {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    vertical-align: middle;
    margin-right: 5px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    margin-left: 5px;
    vertical-align: middle;
}

.star-icon {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: var(--gold);
    display: inline-block;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.top-bar-content .announcement {
    padding: 0 30px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--gold);
}

/* Navegación */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
    background: var(--light);
    padding: 5px;
    border-radius: 50px;
}

.nav-link {
    padding: 8px 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(44, 62, 80, 0.1);
    color: var(--primary);
}

.nav-link.active {
    background: var(--primary);
    color: var(--white);
}

/* Color dorado para "Lo más vendido" en el menú */
.gradient-menu-color {
    color: var(--red);
    font-weight: 600;
}

.nav-link:hover .gradient-menu-color {
    color: var(--gold);
    transition: var(--transition);
}

/* Iconos de navegación */
.nav-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark);
    position: relative;
}

.icon-btn:hover {
    background: var(--light);
    color: var(--gold);
    transform: scale(1.1);
}

.icon-btn .icon-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Menú hamburguesa */
.menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    color: white;
}

.menu-btn .icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    stroke: white;
    width: 20px;
    height: 20px;
}

.menu-btn .close-icon {
    opacity: 0;
}

.menu-btn.active .menu-icon {
    opacity: 0;
}

.menu-btn.active .close-icon {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f0f4f8 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(44, 62, 80, 0.25);
    color: #195f10;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-color {
    color: var(--gold);
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.brand-tag {
    background: var(--white);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--primary);
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.hero-discount {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    line-height: 1.2;
    box-shadow: var(--shadow-lg);
}

.hero-discount span {
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.hero-discount small {
    font-size: 12px;
    opacity: 0.9;
}

/* Info Bar */
.info-bar {
    background: var(--primary);
    color: var(--white);
    padding: 30px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.info-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* Brands Section (comentada pero estilos conservados) */
.brands-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 18px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-card {
    background: var(--light);
    color: var(--primary);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.brand-card:hover {
    background: var(--primary);
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/* ============================================ */
/* NUEVAS SECCIONES - LO MÁS VENDIDO Y BELLEZA */
/* ============================================ */

/* SECCIÓN LO MÁS VENDIDO */
.bestseller-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.bestseller-star {
    font-size: 48px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bestseller-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
}

.bestseller-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.bestseller-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.bestseller-card:hover .bestseller-img {
    transform: scale(1.05);
}

.bestseller-info {
    padding: 20px;
}

.bestseller-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.bestseller-type {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 10px;
}

/* SECCIÓN BELLEZA */
.beauty-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
    position: relative;
}

.beauty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.beauty-icon {
    font-size: 40px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.beauty-title span {
    color: var(--gold);
}

.beauty-subcategories {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.beauty-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    border: 1px solid #f0e0c0;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 100px;
}

.beauty-cat:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(198, 167, 8, 0.1);
}

.beauty-cat-icon {
    font-size: 24px;
}

.beauty-cat span {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
}

.beauty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.beauty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f0e0c0;
    position: relative;
}

.beauty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(198, 167, 8, 0.1);
    border-color: var(--gold);
}

.beauty-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--red);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Badge especial para 2x1 */
.beauty-card .beauty-badge:contains("2x1") {
    background: var(--gold);
}

.beauty-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f5f5f5;
    padding: 10px;
}

.beauty-card:hover .beauty-img {
    transform: scale(1.02);
}

.beauty-info {
    padding: 20px;
}

.beauty-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.beauty-type {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
}

.beauty-cta {
    text-align: center;
}

.beauty-btn {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.beauty-btn:hover {
    background: var(--gold) !important;
    color: white !important;
}

/* CATEGORÍAS COMPLETAS */
.categories {
    padding: 80px 0;
    background: var(--light);
}

.categories-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.category-card-mini {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    cursor: pointer;
}

.category-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.category-mini-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.category-card-mini h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* SUBCATEGORÍAS ESCOLAR */
.escolar-subsection {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
    border: 1px solid var(--gray-light);
}

.escolar-title {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    text-align: center;
}

.escolar-desc {
    text-align: center;
    color: var(--gray);
    margin-bottom: 25px;
}

.escolar-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.escolar-item {
    background: var(--light);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

.escolar-item:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* BOTÓN VER DETALLES */
.btn-details {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-details:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Offers Banner */
.offers-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-text p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 18px;
}

.countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 100px;
}

.countdown-number {
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-item span:last-child {
    font-size: 14px;
    opacity: 0.8;
}

.banner-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.schedule-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row span {
    color: var(--gray);
}

.schedule-row strong {
    color: var(--gold);
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.contact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.contact-row strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-row p {
    color: var(--gray);
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.social-btn .btn-icon {
    width: 20px;
    height: 20px;
    stroke: white;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405de6, #833ab4, #e1306c);
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

/* ============================================ */
/* SECCIÓN MOCHILAS TEMÁTICAS */
/* ============================================ */

.mochilas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
}

.mochilas-icon {
    font-size: 48px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.mochilas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mochila-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
}

.mochila-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.mochila-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Badges especiales para mochilas */
.mochila-card .mochila-badge:contains("⭐ Más vendida") {
    background: var(--gold-dark);
}

.mochila-card .mochila-badge:contains("🔥 Tendencia") {
    background: var(--red);
}

.mochila-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition);
}

.mochila-card:hover .mochila-img {
    transform: scale(1.05);
}

.mochila-info {
    padding: 20px;
}

.mochila-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-weight: 700;
}

.mochila-type {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 10px;
}

.mochilas-cta {
    text-align: center;
    margin-top: 40px;
}

.mochilas-btn {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.mochilas-btn:hover {
    background: var(--gold) !important;
    color: white !important;
}

/* Responsive para mochilas */
@media (max-width: 768px) {
    .mochilas-grid {
        grid-template-columns: 1fr;
    }
    
    .mochila-img {
        height: 220px;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-col h3 span {
    color: var(--gold);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-col p {
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-link .icon-svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-light);
    font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float .icon-svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Animaciones */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content,
    .banner-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-brands {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        background: transparent;
        padding: 30px;
        border-radius: 0;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 18px;
        text-align: center;
        padding: 15px;
    }
    
    .nav-link.active {
        background: var(--primary);
        color: var(--white);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bestseller-grid,
    .beauty-grid {
        grid-template-columns: 1fr;
    }
    
    .beauty-subcategories {
        gap: 12px;
    }
    
    .beauty-cat {
        min-width: 70px;
        padding: 8px 12px;
    }
    
    .beauty-cat-icon {
        font-size: 18px;
    }
    
    .beauty-cat span {
        font-size: 10px;
    }
    
    .categories-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .escolar-grid {
        gap: 10px;
    }
    
    .escolar-item {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .products-filter {
        flex-wrap: wrap;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: calc(50% - 10px);
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-discount {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-full-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-text h2 {
        font-size: 28px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .icon-svg {
        width: 25px;
        height: 25px;
    }
}