/* General Styles */


.contaner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 50px auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #eaf6e6;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.shop {
    flex: 1 1 calc(33% - 40px); /* Flexible layout with 3 items per row */
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    color: white;
}

.shop h3 {
    margin-bottom: 10px;
    border-radius: 5px;
}



.shop1,
.shop2,
.shop3,
.shop4,
.shop5,
.shop6 {
    background-position: center;
    background-size: cover;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    text-decoration: none;
}

/* Specific background images for each product */
.shop1 {
    background-image: url(../images/zac-gudakov-CQkBjIfJjwY-unsplash.jpg);
    background-position: center;
    background-size: cover;
}

.shop2 {
    background-image: url(../images/elias-null-eGQ-ceQTsxI-unsplash.jpg);
    background-position: center;
    background-size: cover;
}

.shop3 {
    background-image: url(../images/adlan-D5yUNyV30oE-unsplash.jpg);
    background-position: center;
    background-size: cover;
}

.shop4 {
    background-image: url(../images/tekton-FuS7lYI8dNE-unsplash.jpg);
    background-position: center;
    background-size: cover;
}

.shop5 {
    background-image: url(../images/siegfried-poepperl-WNL23IFDXuE-unsplash.jpg);
    background-position: center;
    background-size: cover;
}

.shop6 {
    background-image: url(../images/jasmin-schreiber-T1ygtkZem7g-unsplash.jpg);
    background-position: center;
    background-size: cover;
}






