* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f5f5;
    padding: 20px;
    direction: rtl;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 25px;
}

.filter-buttons button {
    padding: 10px 18px;
    margin: 5px;
    border: none;
    background: #222;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.filter-buttons button:hover {
    background: #555;
}

/* Container للكروت */
.cards-container {
    display: flex;
    flex-wrap: wrap;      /* يسمح للكروت بالانتقال لصف جديد */
    gap: 20px;            /* مسافة بين الكروت */
    justify-content: flex-start; /* يملأ من أول السطر */
    margin: 10px;
}

/* الكارد نفسه */
.card {
    flex: 0 1 220px;       /* الحد الأدنى 220px، يتوسع حسب الحاجة */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* صورة الكارد */
.card img {
    width: 100%;
    height: 180px;        /* نفس الارتفاع لكل الصور */
    object-fit: contain;  /* يحافظ على شكل الصورة كامل */
    background: #f0f0f0;
}

/* محتوى الكارد */
.card-info {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.card-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.price {
    color: #e63946;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.whatsapp {
    display: inline-block;
    padding: 8px 15px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.whatsapp:hover {
    background: #1ebe57;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    border-radius: 10px;
}





/* كود Responsive للكروت */
@media (max-width: 768px) {
    .cards-container {
        justify-content: space-around; /* يسيب مسافة متساوية بين الكروت */
    }

    .card {
        flex: 0 1 45%; /* كل كارد ياخد تقريباً نصف الشاشة */
        max-width: 40%; /* عشان ما يكبرش */
    }
}

@media (max-width: 480px) {
    .cards-container {
        justify-content: center;
    }

    .card {
        flex: 0 1 90%; /* كارد واحد في الصف */
        max-width: 90%;
    }
}
