
/* hero-slider container */
/* hero-slider container */
/* hero-slider container */
.hero-slider .slide {
    position: relative;
    text-align: center;
}

.hero-slider img {
    width: 100%;
    /*height: 80vh;*/
    object-fit: fill;
    height: 416px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.hero-slider .slide:hover img {
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.slider-caption {
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    max-width: 540px;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    /*padding: 10px 20px;*/
    /*border-radius: 5px;*/
}

.slick-prev, .slick-next {    
    /*bottom: 45%;*/
    top: 50%;
    /*-webkit-transform: scaleX(-50%);*/
    transform: translateY(-50%) ;
    
    /*top: unset;*/
    width: auto;
    height: auto;    
    z-index: 1;
    transition: all 0.3s ease;
}
.slick-prev:hover, .slick-next:hover {
    transform: translateY(-50%) scale(1.15);
}
.slick-prev {
    /*left: 17%;*/            
    left: -6px;                
}
.slick-next {
    /*right: 17%;*/         
    right: -6px;;         
}
.slick-prev:before {
    content: url('../../assets/img/arrow-filled-yellow-left.svg');
    
}
.slick-next:before {
    content: url('../../assets/img/arrow-filled-yellow-right.svg');
}
.slick-prev:before, .slick-next:before {    
     opacity: 1;     
}
.slick-dots {    
    bottom: 20%;    
}
.slick-dots li {
    width: 36px;    
    margin: 0 3px;    
}
.slick-dots li button:before {
    content: url('../../assets/img/Rectangle-dots.svg');
    opacity: .25;
    color: #ffffff!important;   
}

.hero-description {
    font-size: 22px;
    font-weight: bold;
    direction: rtl; /* RTL for Arabic text */
}




/* products container */
/* products container */
/* products container */
#hot-products {
    /*background-color: #031882;*/
    /*color: #ffffff;*/
    /*padding-bottom: 160px!important;*/
    position: relative;
}
.hot-products h2 {
    /*font-size: 20px;*/
/*    margin-bottom: 20px;*/
    font-weight: 600;
}


.products-card{
    /*background-color: #E5ECFF;*/
}
.product-card{
    background-color: #FFFFFF;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a237e 0%, #4a148c 50%, #006064 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
    border-color: #9fa8da;
}

.product-card .prodCardHead{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    /*background-color: #F5F5F5;*/
    /*border-top: 1px solid #E5E5E5;*/    
    padding: 16px;
}
.product-card .prodImg{
    /*height: 212px;*/
    height: 260px;    
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .prodImg {
    transform: scale(1.05);
}
.product-card .prodTitle{
    color: #1a237e;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}
.product-card:hover .prodTitle {
    color: #4a148c;
}
.product-card .prodShortDesc{
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    white-space: normal;
    color: #64748b;
}
.product-card .prodDiscountLbl{
    position: absolute;
    left: 6px;
    top: 6px;    
    height: 28px;
    width: 57px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.35);
}
[lang="en"] .product-card .prodDiscountLbl {
    left: unset;
    right: 6px;
}

.product-card p{
    font-size: 14px;
    font-weight: 500;
    color: #3E4581;
}
.product-card .bswomen-button{

    color: #141414;
    text-decoration: none;  
    /*padding: 4px 4px;*/
    font-size: 13px;
    font-weight: 500;    
}
.product-card .prodCardBottom{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
/*    background-color: #F5F5F5;
    border-top: 1px solid #E5E5E5;    */
    padding: 16px;
    padding-top: 0;
    border-radius: 0px 0px 20px 20px
}
.product-card .prodCardBottom .price{
    font-size: 18px;
    color: #031882;    
    font-weight: 600;
    margin-bottom: 0px;
}
.product-card .prodCardBottom .oldPrice{
    font-size: 12px;
    color: #F04438;    
    font-weight: 500;
    margin-bottom: 0px;
    /*margin-right: 10px;*/
    padding: 4px;
    text-decoration: line-through;
}
.product-card .prodCardBottom .wh-contact-button{
    
    text-decoration: none;  
    padding: 4px 4px;    
    height: 36px;
    background: linear-gradient(135deg, #25D366 0%, #4DCB5B 100%);
    border-radius: 8px;
    font-size: 12px;
    color: #FFFFFF;    
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 203, 91, 0.3);
}
.product-card .prodCardBottom .wh-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 203, 91, 0.4);
}


/* categories container */
/* categories container */
/* categories container */
#categories {
    /*background-color: #031882;*/
    /*color: #ffffff;*/
    /*padding-bottom: 160px!important;*/
    position: relative;
}
.categories h2 {
    font-size: 20px;
/*    margin-bottom: 20px;*/
    font-weight: 600;
}

.categories-card{
    /*background-color: #E5ECFF;*/
}
.category-card{
    /*background-color: #FAFAFA;*/
    /*border-radius: 16px;*/    
}

.category-card .catCard{
    color: #1a237e;
    text-decoration: none;  
    font-size: 16px;
    font-weight: 600;    
    border-radius: 16px;    
    padding: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e8eaf6 100%);
    transition: all 0.3s ease;
    border: 1px solid #b0bec5;
}
.category-card .catCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(26, 35, 126, 0.15);
    border-color: #7986cb;
    background: linear-gradient(135deg, #ffffff 0%, #c5cae9 100%);
}
.category-card .catImg{
    height: 64px;
    width: 64px;
    /*border-radius: 12px;*/
    object-fit: cover;    
    transition: transform 0.3s ease;
}
.category-card .catCard:hover .catImg {
    transform: scale(1.1);
}
.category-card .catChevron{
    margin-right: auto;    
    color: #1a237e;
}
[lang="en"] .category-card .catChevron{
    margin-right: unset;
    margin-left: auto;
    -webkit-transform: scaleX(-1);    
    transform: scaleX(-1);
}


@media (max-width: 768px) {  
    .slick-prev { 
        left: 10px;                    
    }
    .slick-next {        
        right: 10px;;         
    }
    .hero-slider img {
        height: 240px;        
    }
    .prodCol{
        padding-right: .25rem !important;
        padding-left: .25rem !important;
    }
    .product-card .prodImg{
        /*height: 320px;*/        
    }
    .product-card .prodCardHead{        
        padding: 6px;
        
    }
    .product-card .prodCardBottom{        
        padding: 6px;        
    }
    
    .product-card h6{
        font-size: 14px;        
    }
    .product-card p{
        font-size: 12px;        
    }
    .product-card .bswomen-button{

        font-size: 10px;
        
    }
    .product-card .prodCardBottom .wh-contact-button{
        font-size: 12px;
        font-weight: 500;    
        padding: 4px 10px;
        height: 36px;
    }
    .product-card .prodCardBottom .price{
        font-size: 14px;        
    }
    .product-card .prodCardBottom .oldPrice{
        font-size: 10px;        
    }
    
}


/* discounts container */
/* discounts container */
/* discounts container */
#discounts {
    /*background-color: #031882;*/
    /*color: #ffffff;*/
    /*padding-bottom: 160px!important;*/
    position: relative;
}
.discounts h2 {
    font-size: 20px;
/*    margin-bottom: 20px;*/
    font-weight: 600;
}


/* ===============================================
   🎨 ULTRA PREMIUM INDEX ENHANCEMENTS v2.0
   =============================================== */

/* === Enhanced Product Card Shine Effect === */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.product-card:hover::after {
    left: 150%;
}

/* === Category Card Gradient Border Animation === */
.category-card .catCard {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.category-card .catCard::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        #667eea, #764ba2, #f093fb, #4facfe, #667eea);
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientRotate 4s linear infinite;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.category-card .catCard:hover::before {
    opacity: 1;
}

.category-card .catCard:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.2),
        0 0 30px rgba(102, 126, 234, 0.1);
}

/* === Category Icon Animation === */
.category-card .catImg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card .catCard:hover .catImg {
    transform: scale(1.15) rotate(5deg);
}

/* === Hot Products Section Enhancement === */
#hot-products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, white 0%, transparent 100%);
    pointer-events: none;
}

/* === Product Card Price Animation === */
.product-card .prodCardBottom .price {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-card:hover .prodCardBottom .price {
    color: #667eea;
    transform: scale(1.05);
}

/* === WhatsApp Button Enhancement === */
.product-card .prodCardBottom .wh-contact-button {
    position: relative;
    overflow: hidden;
}

.product-card .prodCardBottom .wh-contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.product-card .prodCardBottom .wh-contact-button:hover::before {
    left: 100%;
}

/* === Enhanced Hero Slider === */
.hero-slider {
    position: relative;
}

.hero-slider .slide {
    position: relative;
}

.hero-slider .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-slider .slide:hover::before {
    opacity: 1;
}

/* === Slider Dots Enhancement === */
.slick-dots li button {
    position: relative;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button::before {
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* === Floating Animation for Section Title Icons === */
.section-titles i,
.section-titles svg {
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* === Product Image Overlay on Hover === */
.product-card .prodCardHead {
    position: relative;
    overflow: hidden;
}

.product-card .prodCardHead::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 16px;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        rgba(102, 126, 234, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .prodCardHead::after {
    opacity: 1;
}

/* === Discount Label Glow === */
.product-card .prodDiscountLbl {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* === Section Dividers === */
#hot-products,
#categories,
#discounts {
    position: relative;
}

#hot-products::before,
#categories::before,
#discounts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #f093fb 50%, #4facfe 100%);
    border-radius: 2px;
    opacity: 0.5;
}

/* === Scroll Animation Classes === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === Stagger Animation for Cards === */
.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }
.product-card:nth-child(5) { transition-delay: 0.5s; }
.product-card:nth-child(6) { transition-delay: 0.6s; }

.category-card:nth-child(1) { transition-delay: 0.05s; }
.category-card:nth-child(2) { transition-delay: 0.1s; }
.category-card:nth-child(3) { transition-delay: 0.15s; }
.category-card:nth-child(4) { transition-delay: 0.2s; }
.category-card:nth-child(5) { transition-delay: 0.25s; }
.category-card:nth-child(6) { transition-delay: 0.3s; }

/* === Interactive Chevron Animation === */
.category-card .catChevron {
    transition: all 0.3s ease;
}

.category-card .catCard:hover .catChevron {
    transform: translateX(-5px);
}

[lang="en"] .category-card .catCard:hover .catChevron {
    transform: scaleX(-1) translateX(-5px);
}

/* === Product Card Title Hover === */
.product-card .prodTitle {
    transition: color 0.3s ease;
}

.product-card:hover .prodTitle {
    color: #667eea;
}

/* === Glass Effect for Sections === */
.section-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}