* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fdfdfd;
    color: #2c3e50;
    line-height: 1.6;
}

/* ЯЗЫК */
.ru { display: none; }
.en { display: none; }
.lang-ru .ru { display: block; }
.lang-en .en { display: block; }

/* HEADER */
.site-header {
    background: #f5eae0;
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid #b99e71;
    position: relative;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-logo-img {
    max-width: 140px;
    margin-bottom: 15px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
}

.estd-wrap {
    font-size: 0.9rem;
    color: #8c7653;
    margin-bottom: 10px;
}

.header-divider {
    width: 60px;
    height: 2px;
    background: #b99e71;
    margin: 15px auto;
}

.tagline {
    color: #7f8c8d;
}

/* КНОПКИ */
.lang-switch {
    position: absolute;
    top: 20px;
    right: 20px;
}

.lang-switch button {
    border: 1px solid #b99e71;
    background: transparent;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 6px;
    color: #b99e71;
}

.lang-switch button.active {
    background: #b99e71;
    color: white;
}

/* КОНТЕНТ */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.company-description {
    background: white;
    padding: 40px;
    margin-top: -40px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* КАТАЛОГ */
.catalog {
    margin-top: 60px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 20px;
}

.category-card h3 {
    color: #b99e71;
    font-size: 1.2rem;
}

.product-list {
    list-style: none;
    margin-top: 10px;
}

.product-list li {
    padding: 5px 0;
    border-bottom: 1px solid #f1f1f1;
}

/* FOOTER */
.site-footer {
    margin-top: 80px;
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 50px 0;
    border-top: 3px solid #b99e71;
}

.site-footer strong {
    color: #b99e71;
}