/* ==================== */
/* PROMO BANNER STYLES */
/* ==================== */
.promo-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    background-color: #fff8f8;
    gap: 20px;
}

.promo-banner img {
    max-width: 400px;
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.promo-content {
    max-width: 600px;
    color: #333;
}

.promo-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #a30043;
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promo-content a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a30043;
    color: white;
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
}

@media(max-width:768px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
    }
    .promo-content h2 {
        font-size: 24px;
    }
}


/* ==================== */
/* SWIPER SLIDER STYLES */
/* ==================== */
.new-arrival-header {
    background-color: white;
    padding: 20px 0;
    text-align: center;
}

.new-arrival-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.swiper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    padding: 10px;
}

.swiper-slide a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.category-image:hover {
    transform: scale(1.05);
}

.category-name {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

@media(min-width:768px) {
    .category-image {
        width: 220px;
        height: 270px;
    }
    .category-name {
        font-size: 16px;
    }
}


/* ====================== */
/* SLIDE BANNER STYLES */
/* ====================== */
.slide-banner {
    background: #faf3f0;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.slide-banner a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.banner-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.banner-images img {
    width: 45%;
    max-width: 400px;
    height: 300px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.banner-images img:hover {
    transform: scale(1.02);
}

.banner-title {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.shop-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner-images {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-images img {
        width: 90%;
        max-width: 300px;
        height: 250px;
        margin-bottom: 10px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .slide-banner button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}