/* تنسيق الزر ليصبح كروياً كريستالياً */
.flex-center.h-12.w-12 {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(37, 211, 102, 0.8) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    
    /* توهج خارجي أخضر قوي */
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 
                inset 0 0 15px rgba(255, 255, 255, 0.5);
                
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* إضافة طبقة اللمعة الزجاجية العلوية */
.flex-center.h-12.w-12::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 15%;
    width: 70%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50% 50% 40% 40%;
}

/* تنسيق أيقونة الواتساب لتصبح مضيئة (Neon) */
.sicon-whatsapp2 {
    color: #ffffff !important;
    font-size: 26px !important;
    z-index: 2;
    /* ظل للأيقونة ليعطي عمق */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* تأثير الحركة عند تمرير الماوس */
.flex-center.h-12.w-12:hover {
    transform: scale(1.15);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.9), 
                inset 0 0 20px rgba(255, 255, 255, 0.7);
    filter: brightness(1.1);
}
/* تنسيق خلفية الشريط السفلي باللون المطلوب والتأثير الكريستالي */
.bottom-header {
    /* التثبيت في الأسفل */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;

    /* الخلفية باللون المطلوب c45a9b مع تدرج شعاعي للعمق الكريستالي */
    background: radial-gradient(circle at 50% 0%, #e07bb7 0%, #c45a9b 100%) !important;
    
    /* تأثير الزجاج السائل (الغبش) */
    backdrop-filter: blur(15px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(150%) !important;
    
    /* انحناء دائري علوي */
    border-radius: 30px 30px 0 0 !important;
    
    /* حدود علوية بلون الكتابة fcc8d1 لتعطي لمعة الحافة */
    border-top: 2px solid rgba(252, 200, 209, 0.5) !important;
    
    /* ظل خارجي وداخلي ليعطي شكل البروز الكريستالي */
    box-shadow: 0 -8px 25px rgba(196, 90, 155, 0.3), 
                inset 0 0 15px rgba(252, 200, 209, 0.3) !important;
    
    overflow: hidden !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
}

/* إضافة طبقة اللمعة الزجاجية العلوية (تأثير الكريستال) */
.bottom-header::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 10% !important;
    right: 10% !important;
    height: 45% !important;
    /* لمعة فاتحة بلون الكتابة مخفف */
    background: linear-gradient(180deg, rgba(252, 200, 209, 0.4) 0%, transparent 100%) !important;
    border-radius: 0 0 100% 100% / 0 0 50% 50% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* تنسيق الكتابة والأيقونات باللون المطلوب fcc8d1 */
.bottom-header-button i, 
.bottom-header-button span,
.bottom-header-button a,
.bottom-header-button button {
    color: #fcc8d1 !important;
    position: relative !important;
    z-index: 2 !important; /* لضمان الظهور فوق اللمعة */
}

/* تصفير أي خلفيات داخلية للأزرار */
.bottom-header-buttons, 
.bottom-header-button, 
.bottom-header-icon, 
.header-btn {
    background: transparent !important;
    border: none !important;
}

/* عداد السلة ليكون متناسقاً مع الألوان الجديدة */
.s-cart-summary-count {
    background-color: #fcc8d1 !important;
    color: #c45a9b !important;
    font-weight: bold;
}