/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    background-color: #f4f4f4;
    padding: 10px;
}

header img {
    width: 50px;
    height: 50px;
}

nav {
    text-align: center;
    background-color: #333;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 20px;
    text-align: center;
}

.featured-image, .about-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 10px 0;
}

.shop-grid, .gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shop-item, .gallery-item {
    width: 250px;
    text-align: center;
}

.shop-item img, .gallery-item img {
    width: 100%;
    height: auto;
}

.price {
    font-weight: bold;
    color: #333;
}

.btn-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px;
    margin-top: 20px;
}
