/* Add custom CSS styles below */ 



/* 1. حجم العنوان والوصف (للكمبيوتر) */
.advanced-slider__caption__inner__content__heading {
    font-size: 28px !important; 
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.advanced-slider__caption__inner__content__text {
    font-size: 18px !important; 
    line-height: 1.6 !important;
}

/* 2. تحريك صندوق النص لليمين (للكمبيوتر) */
.advanced-slider__caption__inner {
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    bottom: 15% !important; 
    left: 10% !important; 
    transform: none !important;
    text-align: right !important; 
    max-width: 1500px !important; /* هنا تم التعديل: وسعنا الصندوق جداً عشان السطر يكمل للاخر ومينزلش تحت */
}

/* 3. تعديل الموضع وتصغير الخط جذرياً (للجوال فقط) */
@media (max-width: 768px) {
    .advanced-slider__caption__inner {
        bottom: 9% !important; 
        left: 5% !important; 
        max-width: 45% !important; 
    }
    .advanced-slider__caption__inner__content__heading {
        font-size: 12px !important; 
        margin-bottom: 5px !important;
    }
    .advanced-slider__caption__inner__content__text {
        font-size: 11px !important; 
        line-height: 1.4 !important;
    }
}





/* تأثير اللمعة على الأزرار الأساسية */
.btn-primary, .add-to-cart-btn, .s-add-to-cart {
    position: relative;
    overflow: hidden;
}
.btn-primary::after, .add-to-cart-btn::after, .s-add-to-cart::after {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%;
    width: 50%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: buttonShine 3s infinite;
}
@keyframes buttonShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}




/* توهج كروت المنتجات عند التمرير */
.product-card, .s-product-card {
    transition: all 0.3s ease !important;
}
.product-card:hover, .s-product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 33, 35, 0.15) !important;
    transform: translateY(-5px) !important; /* بيرفع المنتج لفوق ملي مترات */
}







/* تغيير لون التظليل ليتناسب مع الهوية */
::selection {
    background-color: #002123 !important;
    color: #ffffff !important;
}
::-moz-selection {
    background-color: #002123 !important;
    color: #ffffff !important;
}