body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    line-height: 1.6;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
}

section {
    background: white;
    margin: 1.5rem auto;
    padding: 1.5rem;
    max-width: 900px;
    border-radius: 6px;
}

h2 {
    color: #2c3e50;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery img {
    width: 100%;
    border-radius: 6px;
}

footer {
    text-align: center;
    padding: 1rem;
    color: #666;
}
.lang-switch {
    position: absolute;
    top: 15px;
    right: 15px;
}

.lang-switch button {
    margin-left: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.gallery img {
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}