.hero-banner {
    position: relative;
    width: 100%;
    height: 500px; /* Tamaño grande */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5e6e8 0%, #d4c5d8 100%);
}

.hero-banner img.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px; /* tamaño para móviles */
    }
}


.hero-products {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-product-item {
    text-align: center;
}

.hero-product-item img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* ===== CATEGORY ICONS ===== */
.categories {
    background-color: white;
    padding: 60px 20px;
}

.categories-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.category-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===== FEATURED COLLECTIONS ===== */
.featured-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #000;
    letter-spacing: 2px;
}

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

.featured-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #fafafa;
}

.featured-content {
    padding: 20px;
    text-align: center;
}

/* ===== INFO SECTIONS ===== */
.info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-section.reverse {
    direction: rtl;
}

.info-section.reverse > * {
    direction: ltr;
}

.info-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ===== PROMO BANNERS ===== */
.promo-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.promo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promo-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.promo-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.promo-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: white;
}

.promo-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.promo-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.promo-card.dark .promo-content {
    color: white;
}

.promo-card.dark .promo-overlay {
    background: rgba(0,0,0,0.6);
}

.btn-yellow {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-yellow:hover {
    background-color: #FFC700;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-products {
        flex-direction: column;
        gap: 40px;
    }

    .hero-product-item img {
        width: 180px;
        height: 180px;
    }

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

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }
}
