﻿/* ============================================ */
/* تنسيقات إضافية للموقع */
/* ============================================ */

/* تنسيق البطاقات */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

/* تنسيق الأزرار */
.btn-primary-custom {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-primary-custom:hover {
        background-color: #45a049;
        color: white;
    }

/* تنسيق السلايدر */
.carousel-item {
    height: 400px;
}

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

/* تنسيق التصنيفات */
.category-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

    .category-card:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .category-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

/* تنسيق الماركات */
.brand-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

    .brand-card:hover {
        transform: scale(1.05);
    }

    .brand-card img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin: 0 auto;
    }
