body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    
}

   header {
            background: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.mySlides {
    display: none;
}

img {
    width: 100%;
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.product-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.product {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    width: calc(30% - 20px); /* سه محصول در هر ردیف */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}


.product img {
    width: 100%;
}

 footer {
            text-align: center;
            padding: 10px;
            background: #333;
            color: #fff;
        }



@media (max-width: 500px) {
    .product {
        width: 100%; /* یک محصول در هر ردیف */
    }

    h2 {
        font-size: 1.2em;
    }
}