body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #f4f4f4;
    padding: 20px;
}

#products {
    display: flex;
    justify-content: center;
    flex-direction: column; /* Ensures elements stack vertically */
    flex-wrap: wrap;
    padding: 20px;
}

.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.product {
    cursor: pointer;
    margin: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    width: 250px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    width: 200px;
    text-align: center;
}

.product:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#products {
    padding: 20px;
}

#instagram {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.instagram-feed {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Space between images */
}

.instagram-feed a {
    display: inline-block;
    width: 120px; /* Adjust width as needed */
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.instagram-feed a:hover {
    transform: scale(1.05);
}

.instagram-feed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

footer {
    background-color: #222;
    color: #fff;
    padding: 10px;
}

a {
    text-decoration: none;
    color: inherit; /* Ensures the text inside keeps its original color */
}

a .product {
    display: block;
}