/* --- التنسيقات الأساسية للجسم (Body) --- */
.reviews-page-body {
    background-color: #000 !important;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* --- تنسيق الـ Navbar (لضمان ظهوره كما في الموقع الرئيسي) --- */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-small {
    font-size: 24px;
    font-weight: 800;
    color: #d4af37;
}



.logo-small span {
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

/* --- عناوين الأقسام (نفس استايل الموقع الرئيسي) --- */
.reviews-page-header {
    text-align: center;
    padding: 60px 20px 20px;
}

.reviews-page-header h1, .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    /* التدرج الذهبي كما في الصورة */
    background: linear-gradient(45deg, #d4af37, #f2d06b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}



.divider {
    width: 100px;
    height: 3px;
    background: #d4af37;
    margin: 10px auto 20px;
}

/* --- نظام شبكة الكروت (إصلاح التراكم الطولي) --- */
.dedicated-section {
    max-width: 1300px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* شبكة الآراء: كروت عريضة جداً لسهولة القراءة */
.reviews-large-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* شبكة صور الواقع: كروت تشبه المنتجات */
.real-photos-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* --- تصميم الكارت الموحد (الأسود بحدود ذهبية) --- */
.screenshot-card, .product-styled-card {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    object-fit: contain; /* يضمن ظهور النص كاملاً */
    display: block;
}

.img-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-footer-text {
    padding: 15px;
    text-align: center;
    color: #d4af37;
    font-weight: 700;
    background: #111;
}

/* تأثير الـ Hover */
.screenshot-card:hover, .product-styled-card:hover {
    transform: translateY(-12px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* زر العودة للمتجر */
.buy-btn {
    background: linear-gradient(45deg, #d4af37, #f2d06b);
    color: #000 !important;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: 0.3s;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- استجابة الموبايل --- */
@media (max-width: 768px) {
    .reviews-large-grid {
        grid-template-columns: 1fr; /* كارت واحد عريض للقراءة في الموبايل */
    }
    .real-photos-product-grid {
        grid-template-columns: repeat(2, 1fr); /* صورتين للواقع */
        gap: 12px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}
