body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container-custom{
    font-size: 14px;
}

.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin: 15px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.4;
}

.shop-btn {
    background-color: white;
    color: #667eea;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-phones {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.phone-mockup {
    width: 60px;
    height: 120px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.phone-1 { background: linear-gradient(45deg, #a8c8ff, #7ba7ff); }
.phone-2 { background: linear-gradient(45deg, #f0f0f0, #e0e0e0); }
.phone-3 { background: linear-gradient(45deg, #ffb3d1, #ff8fb3); }

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    width: 20px;
    border-radius: 10px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 15px 15px 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.category-item {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    color: inherit;
    text-decoration: none;
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #667eea;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 15px;
}

.see-all-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.see-all-link:hover {
    color: #5a6fd8;
    text-decoration: none;
}

.deals-container {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 30px;
}

.deals-container::-webkit-scrollbar {
    display: none;
}

.enlace-producto{
    text-decoration: none;
    color: inherit;
}

.deal-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.heart-icon:hover {
    color: #ff6b6b;
}

.product-image {
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #667eea;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}


.product-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #667eea;
}

.product-original-price {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin: 30px 15px;
    padding: 30px;
    text-align: center;
    color: white;
    margin-bottom: 10em;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
}

.newsletter-btn {
    background-color: white;
    color: #667eea;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .hero-phones {
        right: -10px;
    }
    
    .phone-mockup {
        width: 45px;
        height: 90px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        gap: 10px;
    }
    
    .category-item {
        padding: 15px 10px;
    }
    
    .category-icon {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

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

@media (min-width: 992px) {
    .container-custom {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        margin-bottom: 6rem;
    }
    
    .hero-banner {
        margin: 20px 0;
        padding: 40px;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        padding: 0;
    }
    
    .category-item {
        padding: 25px 20px;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .deals-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        padding: 0;
        overflow: visible;
    }
    
    .deal-card {
        min-width: auto;
        padding: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0;
    }
    
    .section-title {
        margin: 40px 0 20px 0;
        font-size: 1.5rem;
    }
    
    .section-header {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .newsletter-section {
        margin: 40px 0;
        padding: 50px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .container-custom {
        max-width: 1400px;
    }
    
    .deals-container {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
