* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f3ef;
    color: #2b2b2b;
}

/* LANGUAGE SWITCH */

.lang-switch input {
    display: none;
}

.lang-buttons {
    text-align: center;
    padding: 15px;
    background: #3b2a21;
}

.lang-buttons label {
    color: white;
    margin: 0 8px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    background: #6b4f3a;
}

/* hide all languages by default */
.az, .ru, .en {
    display: none;
}

/* show selected language */
#lang-az:checked ~ .page .az { display: block; }
#lang-ru:checked ~ .page .ru { display: block; }
#lang-en:checked ~ .page .en { display: block; }

/* HEADER */

header {
    background: #3b2a21;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 20px;
    border-left: 6px solid #6b4f3a;
    padding-left: 10px;
}

.mt {
    margin-top: 40px;
}

/* GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.price {
    font-weight: bold;
    margin: 10px 0 14px;
    color: #6b4f3a;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
}

footer {
    text-align: center;
    padding: 30px;
    background: #3b2a21;
    color: white;
    margin-top: 40px;
}
