:root {
    /* Цветовая палитра */
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --accent-gold: #DAA520;
    --accent-gold-light: #F4E4BC;
    --dark-brown: #654321;
    --light-brown: #DEB887;
    
    --bg-primary: #FAF7F2;
    --bg-secondary: #FFFFFF;
    --bg-accent: #F5F5DC;
    
    --text-primary: #2C1810;
    --text-secondary: #5D4037;
    --text-light: #8D6E63;
    --text-white: #FFFFFF;
    
    --border-color: #E0C097;
    --shadow-color: rgba(139, 69, 19, 0.1);
    --shadow-hover: rgba(139, 69, 19, 0.2);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    --gradient-gold: linear-gradient(135deg, #DAA520 0%, #F4E4BC 100%);
    --gradient-hero: linear-gradient(135deg, #FAF7F2 0%, #F5F5DC 100%);
}

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Типографика */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Кнопки */
.cta-button {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-color);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-hover);
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23DAA520" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23DAA520" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23DAA520" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23DAA520" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23DAA520" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-brown);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-brown);
    margin-bottom: 25px;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-price {
    margin-bottom: 40px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-color);
    border: 3px solid var(--accent-gold-light);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Product Image Section */
.product-image-section {
    padding: 80px 0;
    background: var(--bg-accent);
}

.product-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow-color);
    display: block;
    margin: 0 auto;
}

/* Composition Section */
.composition-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 4rem;
}

.composition-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
}

.composition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.composition-icon {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.composition-name {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--bg-accent);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-color);
}

.product-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.review-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow-hover);
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Order Section */
.order-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.order-info {
    text-align: center;
}

.order-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.order-price {
    margin-bottom: 40px;
}

.price-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 10px;
}

.order-form {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-color);
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1.05rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    resize: vertical;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.order-cta {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Анимации */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .composition-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-form {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    .order-form {
        padding: 25px 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
