/* 1. الخطوط وتحسين الثبات البصري (CLS) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body, html, .s-product-card {
    font-family: 'Cairo', sans-serif !important;
}

img, video {
    content-visibility: auto; /* تحسين سرعة الرندر */
    max-width: 100%;
    height: auto;
}

/* 2. شريط الزوار الأسود الملكي */
#brillant-bar {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 12px;
    height: 35px;
    line-height: 35px;
    font-weight: bold;
    z-index: 9999;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* 3. حل مشكلة التباين ومساحات اللمس (Accessibility) */
/* تحسين زر الاشتراك والتفاعل */
.btn__text, button[type="submit"], .s-button-primary {
    color: #FFFFFF !important;
    background-color: #000000 !important;
    border: 1px solid #d4af37 !important; /* لمسة ذهبية لعلامة برلنت */
    font-weight: 700 !important;
    min-height: 44px; /* الحجم المثالي للمس */
}

/* تكبير مساحة النقر لنقاط السلايدر (44px) */
.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    margin: 0 10px !important;
    position: relative;
    background: #555 !important;
}

.swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px; /* مساحة لمس غير مرئية */
}

/* 4. ملصق التقييم الذهبي على الصور */
.brillant-star-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}