body {
    margin: 0;
    font-family: "Georgia", serif;
    background: linear-gradient(135deg, #0c2c2c, #3b002b);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}




.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}




@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 10px;
    }

    img {
        width: 100%;
        height: auto;
    }
}




#header {
    padding: 30px 10px;
}

#header h1 {
    font-size: 40px;
    margin: 0;
    text-shadow: 0 0 10px #fff, 0 0 20px #aaa;
}

#header h2 {
    margin-top: 10px;
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 0 8px #fff;
}


.products-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.product img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.product h3 {
    font-size: 16px;
    margin-top: 8px;
    text-shadow: 0 0 6px #fff;
}


.contact {
    font-size: 16px;
    margin: 10px 0;
}

.contact a {
    text-decoration: none;
    color: white;
    text-shadow: 0 0 5px #aaa;
}

.contact a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}


.location {
    background: rgba(0, 0, 0, 0.6);
    color: #ffd700;
    padding: 15px;
    font-size: 14px;
    text-shadow: 0 0 6px #ffd700;
}