/*
Theme Name: Blocksy Child
Template: blocksy
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* الحاوية العامة */
.br-custom-container {
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* العناوين */
.br-category-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #264377;
    margin-bottom: 16px !important;
    text-transform: uppercase;
}

.br-section-title-custom {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #264377 !important;
    margin: 16px 0 !important;
    text-transform: uppercase;
}

/* الخطوط */
.br-gold-line {
    width: 140px;
    height: 4px;
    background: #f6b319;
    margin: 16px 0 !important;
}

/* ===== السلايدر (تم إصلاحه بدون تغيير الشكل) ===== */
.br-product-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

/* الكارت */
.br-prod-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 215px;
    height: 380px;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 20px 15px 30px 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.br-prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #f6b319;
}

.br-prod-card img {
    height: 170px;
    object-fit: contain;
    margin-bottom: 16px;
}

/* المقالات */
.br-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.br-art-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.br-art-card:hover img {
    transform: scale(1.1);
}

/* الموبايل */
@media (max-width: 768px) {
    .br-category-header h1 {
        font-size: 28px;
    }

    .br-articles-grid {
        grid-template-columns: 1fr;
    }
}
