* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-switch-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #D4AF37;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.lang-switch-btn:hover {
    background-color: #000;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #000;
    border-bottom: 3px solid #D4AF37;
    padding: 20px 0;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    height: 70px;
}

.header-text h1 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 5px;
}

.header-text p {
    font-size: 0.95rem;
    margin: 3px 0;
}

/* Price Banner */
.price-banner {
    background-color: #D4AF37;
    color: #000;
    text-align: center;
    padding: 15px;
}

.price-banner p {
    margin: 5px 0;
    font-size: 1.1rem;
}

/* Catalog */
.catalog {
    background-color: #fff;
    color: #000;
    padding: 40px 0 60px;
}

.catalog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #000;
}

/* Shoes Grid */
.shoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.shoe-card {
    background-color: #fff;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shoe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.shoe-image {
    width: 100%;
    height: 350px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.shoe-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shoe-info {
    padding: 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.shoe-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #D4AF37;
}

.shoe-info .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin: 15px 0;
}

.shoe-info button {
    width: 100%;
    padding: 12px;
    background-color: #D4AF37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shoe-info button:hover {
    background-color: #fff;
    color: #000;
}

/* Footer */
footer {
    background-color: #000;
    border-top: 3px solid #D4AF37;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .catalog h2 {
        font-size: 2rem;
    }

    .shoes-grid {
        grid-template-columns: 1fr;
    }

    .shoe-image {
        height: 300px;
    }
}