* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.baner {
    width: 100%;
}

.baner img {
    width: 100%;
}

.products-section {
    width: 70%;
    margin: auto;
}

.product-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px; /* إضافة مسافة داخلية بسيطة */
}

.product-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
    scroll-snap-align: start; /* ضمان محاذاة العناصر للبداية */
}

@media (max-width: 720px) {
    .product-item {
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 15px;
        width: 45%;
        height: 400px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        flex: 0 0 auto;
        scroll-snap-align: start; /* ضمان محاذاة العناصر للبداية */
    }
    .products-section {
        width: 100%;
        margin: auto;
    }
    .product-item img {
        width: 100%;
        height: 130px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
}
.product-item img {
    max-width: 100%;
    height: 170px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 16px;
    margin: 20px 0 0 0;
}


.product-item .price {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin: 40px 0 10px 0;
    color: black;
}

.product-item .add-to-cart {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.product-item .add-to-cart:hover {
    background-color: #555;
}

.show-all {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 20px auto;
    display: block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.show-all:hover {
    background-color: #555;
}

.cat {
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
    background: #eee;
    color: black;
}

a {
    text-decoration: none;
}
