/* ===== الكروسيل ===== */
  .carousel-inner {
    border-radius: 20px;

  }

    .main-carousel-img,
    .product-img {
        width: 100%;
        object-fit: cover;
    }

    .main-carousel-img {
        height: 400px;
    }

    .product-img {
        height: 260px;
    }
    

    @media (max-width: 767.98px) {
        .main-carousel-img {
            height: 200px;
        }

        .product-img {
            height: 180px;
        }
    }



    @media (max-width: 576px) {
    .custom-carousel .carousel-item {
        height: 170px;
        border-radius: 12px;
    }

    .custom-carousel .carousel-item img,
    .custom-carousel .carousel-item video {
        border-radius: 12px;
    }

    .custom-carousel .carousel-indicators {
        gap: 0px; /* 👈 تقليل المسافة */
        margin-top: 8px;
    }

    .custom-carousel .carousel-indicators button {
        width: 5px;
        height: 5px;
    }

.custom-carousel .carousel-inner {
    border-radius: 10px;
    overflow: hidden; /* مهم جدًا لقص الصور */
}

    .custom-carousel .carousel-indicators button.active {
        transform: scale(1.2); /* 👈 تقليل التكبير */
    }

    .btn-offers {
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
    }

        .font-home {
        font-size: .8rem;
    }

            .font-home2 {
        font-size: 1rem;
    }
}



    .product-card {
        border-radius: 1rem;
        overflow: hidden;
        background: #fff;
    }








.product-img {
        width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card {
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* الأسهم */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #777;
    border-radius: 8px;
    top: 45%;
}





