:root {
    --primary-color: #5E3A1E;
    --primary-light: #8B5A2B;
    --secondary-color: #F5E7D8;
    --accent-color: #D4A76A;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --bg-light: #F9F5F0;
    --bg-dark: #2C2218;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn--primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn--small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn--telegram {
    background-color: #0088cc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn--telegram:hover {
    background-color: #0077b5;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title--light {
    color: var(--light-text);
}

.section-title--light::after {
    background-color: var(--light-text);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo--footer {
    color: var(--light-text);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg') no-repeat center/cover;
    color: var(--light-text);
    padding: 180px 0 100px;
    text-align: center;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About */
.about {
    padding: 80px 0;
}

.about__content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about__text {
    flex: 1;
}

.about__text p {
    margin-bottom: 20px;
}

.about__image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about__image img {
    transition: var(--transition);
}

.about__image:hover img {
    transform: scale(1.05);
}

/* Products */
.products {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    height: 200px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__content {
    padding: 20px;
}

.product-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card__desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.product-card__price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-card__btn {
    width: 100%;
}

/* Advantages */
.advantages {
    padding: 80px 0;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.advantage-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.advantage-card__text {
    font-size: 0.9rem;
    color: #666;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.reviews__slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.review-card {
    min-width: 300px;
    background-color: var(--light-text);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
}

.review-card__author {
    font-weight: 600;
    margin-bottom: 10px;
}

.review-card__text {
    margin-bottom: 15px;
    font-style: italic;
}

.review-card__rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Order */
.order {
    background: linear-gradient(rgba(94, 58, 30, 0.9), rgba(94, 58, 30, 0.9)), url('images/order-bg.jpg') no-repeat center/cover;
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
}

.order__text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.order__contacts {
    margin-top: 30px;
    font-size: 1.1rem;
}

.order__contacts a {
    color: var(--accent-color);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer__text {
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--accent-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer__copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-text);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .about__content {
        flex-direction: column;
    }
    
    .about__text {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 1.8rem;
    }
    
    .