/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Color Variables */
:root {
    --primary-fuchsia: #e91e63;
    --secondary-green: #4caf50;
    --accent-yellow: #ffeb3b;
    --dark-fuchsia: #c2185b;
    --light-green: #81c784;
    --dark-yellow: #fbc02d;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
}

/* Header Styles */
.top-banner {
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--dark-fuchsia));
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 14px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    background: var(--white);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h2 {
    color: var(--primary-fuchsia);
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-fuchsia);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons i {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-icons i:hover {
    color: var(--primary-fuchsia);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-yellow);
    color: var(--black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hamburger menu - SOLO visible en móvil */
.hamburger {
    display: none !important;
}

/* Asegurar que el icono hamburger esté oculto en desktop */
.fas.fa-bars.hamburger {
    display: none !important;
}

/* Regla específica para desktop (pantallas grandes) */
@media (min-width: 769px) {
    .hamburger,
    .fas.fa-bars.hamburger {
        display: none !important;
    }
}

/* Search Container */
.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: none;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.search-container.active {
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--light-green);
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.search-container input:focus {
    border-color: var(--primary-fuchsia);
}

.search-container button {
    padding: 12px 20px;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-container button:hover {
    background: var(--light-green);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

.section {
    display: none;
    padding: 2rem 0;
}

.section.active {
    display: block;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100vw;
    height: 400px;
    margin: 0 0 3rem 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    left: 50%;
    transform: translateX(-50%);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.7), rgba(76, 175, 80, 0.7));
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1543163521-1bf539c55dd2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&h=800&q=90');
    background-position: center 30% !important;
}

.slide:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.7), rgba(76, 175, 80, 0.7));
}

.slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1560769629-975ec94e6a86?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&h=800&q=90');
    background-position: center 40% !important;
}

.slide:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.7), rgba(255, 235, 59, 0.7));
}

.slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1549298916-b41d501d3772?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&h=800&q=90');
    background-position: center 35% !important;
}

.slide:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.7), rgba(233, 30, 99, 0.7));
}

.slide:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1515347619252-60a4bf4fff4f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&h=800&q=90');
    background-position: center 25% !important;
}

.slide:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.7), rgba(194, 24, 91, 0.7));
}



.slide-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.slide-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
    font-weight: bold;
    animation: slideInFromTop 0.8s ease-out;
}

.slide-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7), 0 0 15px rgba(0,0,0,0.5);
    animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

.cta-button {
    background: var(--accent-yellow);
    color: var(--black);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideInFromBottom 0.8s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: var(--dark-yellow);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Slider Animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Featured Categories */
.featured-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-categories h2 {
    text-align: center;
    color: var(--primary-fuchsia);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-green);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px 10px 0 0;
}

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

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(76, 175, 80, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-card h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

/* Promotional Banner Section */
.promo-banner {
    background: var(--primary-fuchsia);
    padding: 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
}

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

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-badge i {
    color: var(--accent-yellow);
    animation: pulse 2s infinite;
}

.promo-text h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.promo-text strong {
    color: var(--accent-yellow);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-features {
    display: none;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 500;
}

.feature i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.promo-buttons {
    display: flex;
    gap: 1rem;
}

.promo-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-btn.primary {
    background: var(--white);
    color: var(--primary-fuchsia);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-btn.primary:hover {
    background: var(--accent-yellow);
    color: var(--primary-fuchsia);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.promo-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.promo-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-fuchsia);
    transform: translateY(-2px);
}

.promo-visual {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
}

.promo-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 250px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.promo-image:hover img {
    transform: scale(1.05);
}

.discount-circle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

.discount-percent {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-fuchsia);
    line-height: 1;
}

.discount-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-fuchsia);
    margin-top: -2px;
}

.promo-countdown {
    display: none;
}

.countdown-text {
    color: var(--primary-fuchsia);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-fuchsia);
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Promo Banner Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Promo Banner Responsive */
@media (max-width: 768px) {
    .promo-banner {
        height: auto;
        min-height: 250px;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 0;
    }
    
    .promo-text h2 {
        font-size: 1.8rem;
    }
    
    .promo-text p {
        font-size: 1rem;
    }
    
    .promo-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .promo-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .promo-image img {
        height: 200px;
    }
    
    .discount-circle {
        width: 60px;
        height: 60px;
        top: 10px;
        right: 10px;
    }
    
    .discount-percent {
        font-size: 1.2rem;
    }
    
    .discount-text {
        font-size: 0.6rem;
    }
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.brands-title {
    text-align: center;
    color: var(--primary-fuchsia);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 298px);
    gap: 2rem;
    justify-content: center;
}

.brand-card {
    width: 298px;
    height: 514px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.brand-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-overlay {
    background: linear-gradient(to top, rgba(233, 30, 99, 0.95), rgba(233, 30, 99, 0.8), rgba(233, 30, 99, 0.3));
}

.brand-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

.brand-btn {
    background: var(--white);
    color: var(--primary-fuchsia);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.brand-card:hover .brand-btn {
    opacity: 1;
    transform: translateY(0);
}

.brand-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-fuchsia);
    transform: translateX(5px);
}

.brand-btn i {
    transition: transform 0.3s ease;
}

.brand-btn:hover i {
    transform: translateX(5px);
}

/* Brands Responsive */
@media (max-width: 1400px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .brand-card {
        width: 100%;
        height: auto;
        aspect-ratio: 298 / 514;
    }
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .brands-section {
        padding: 3rem 0;
    }
    
    .brands-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Newsletter Subscription Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--secondary-green));
    padding: 4rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 500;
}

.benefit-item i {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.newsletter-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-fuchsia);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    transition: color 0.3s ease;
}

.form-group input:focus + i {
    color: var(--primary-fuchsia);
}

.subscribe-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--secondary-green));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.privacy-note {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.privacy-note i {
    color: var(--secondary-green);
}

/* Newsletter Message Styles */
.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
    display: none;
}

.newsletter-message.show {
    display: block;
}

.newsletter-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.newsletter-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.newsletter-message.loading {
    background: #e0e7ff;
    color: #3730a3;
    border: 1px solid #6366f1;
}

.subscribe-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.subscribe-btn.loading .btn-text::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Newsletter Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-benefits {
        justify-content: center;
    }
    
    .newsletter-form {
        padding: 2rem;
    }
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Pre-Footer Services Section */
.pre-footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
    border-top: 1px solid #dee2e6;
    position: relative;
}

.pre-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-fuchsia), var(--secondary-green), var(--accent-yellow));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 100px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-fuchsia);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-item:hover .service-icon::before {
    transform: translateX(100%);
}

.service-content {
    flex: 1;
}

.service-content h4 {
    color: var(--primary-fuchsia);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    line-height: 1.2;
}

.service-content p {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
}

/* Pre-Footer Responsive */
@media (max-width: 1024px) {
    .services-grid {
        gap: 1rem;
        max-width: 1200px;
    }
    
    .service-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .service-content h4 {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .pre-footer {
        padding: 2.5rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
        gap: 0.8rem;
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        gap: 1rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Products Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--primary-fuchsia);
    font-size: 2.5rem;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    padding: 10px 15px;
    border: 2px solid var(--secondary-green);
    background: var(--white);
    color: var(--secondary-green);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--secondary-green);
    color: var(--white);
}

/* Filters */
.filters {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filters h3 {
    color: var(--primary-fuchsia);
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 10px 15px;
    border: 2px solid var(--light-green);
    border-radius: 5px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    cursor: pointer;
}

.filter-options select:focus {
    outline: none;
    border-color: var(--primary-fuchsia);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:active {
    transform: translateY(-3px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card > img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 10px;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, var(--light-gray), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray);
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-fuchsia);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    letter-spacing: 1px;
}

.product-card.out-of-stock {
    opacity: 0.8;
    cursor: not-allowed;
}

.product-card.out-of-stock .add-to-cart-btn {
    background: #6c757d;
    cursor: not-allowed;
}

.product-card.out-of-stock .add-to-cart-btn:hover {
    background: #6c757d;
    transform: none;
}

/* Ofertas Section Styles */
.ofertas-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.ofertas-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.ofertas-card {
    position: relative;
    border: 2px solid #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.ofertas-card:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transform: translateY(-5px);
}

.ofertas-flame {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2.5rem;
    z-index: 10;
    animation: flame 1s infinite alternate;
}

@keyframes flame {
    0% {
        transform: rotate(-10deg) scale(1);
    }
    100% {
        transform: rotate(10deg) scale(1.1);
    }
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.current-price {
    color: var(--secondary-green);
    font-size: 1.3rem;
    font-weight: bold;
}

.original-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 1rem;
}

.product-sizes {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 5px 10px;
    border: 1px solid var(--light-green);
    border-radius: 5px;
    font-size: 12px;
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover,
.size-option.selected {
    background: var(--accent-yellow);
    border-color: var(--dark-yellow);
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--light-green);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-fuchsia);
    color: var(--white);
}

.cart-header h3 {
    margin: 0;
}

.cart-header i {
    cursor: pointer;
    font-size: 1.5rem;
}

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

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--secondary-green);
    font-weight: bold;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary-fuchsia);
    background: var(--white);
    color: var(--primary-fuchsia);
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.quantity-btn:hover {
    background: var(--primary-fuchsia);
    color: var(--white);
}

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

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-yellow);
    color: var(--black);
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: var(--dark-yellow);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    color: var(--primary-fuchsia);
}

.modal-body {
    padding: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--dark-fuchsia));
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mostrar hamburger SOLO en móvil */
    .hamburger,
    .fas.fa-bars.hamburger {
        display: block !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .slider-container {
        width: 100vw;
        height: 300px;
        margin: 0 0 2rem 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
    }
    
    .slide:nth-child(1) {
        background-position: center 35% !important;
    }
    
    .slide:nth-child(2) {
        background-position: center 45% !important;
    }
    
    .slide:nth-child(3) {
        background-position: center 40% !important;
    }
    
    .slide:nth-child(4) {
        background-position: center 30% !important;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .filter-options {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .slider-container {
        width: 100vw;
        height: 250px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slide:nth-child(1) {
        background-position: center 40% !important;
    }
    
    .slide:nth-child(2) {
        background-position: center 50% !important;
    }
    
    .slide:nth-child(3) {
        background-position: center 45% !important;
    }
    
    .slide:nth-child(4) {
        background-position: center 35% !important;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-btn.prev {
        left: 5px;
    }
    
    .slider-btn.next {
        right: 5px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease-out;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-fuchsia);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
