:root {
    --color-primary: #101010;
    --color-secondary: #A5C9FF;
    --color-accent: #B87333;
    --color-background: #E8E8E8;
    --color-text: #1F1F1F;
    --font-heading: 'Cormorant Garamond', serif;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 4px;
    --shadow: 0 4px 20px rgba(16, 16, 16, 0.1);
    --spacing: 2rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(232, 232, 232, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 16, 16, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-name {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    overflow: hidden;
    max-width: 200px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hero-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.trust-badge {
    position: absolute;
    top: -2rem;
    right: 0;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-accent);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 500px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-stars {
    color: var(--color-accent);
    font-size: 1.25rem;
}

.rating-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text);
    opacity: 0.7;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.25rem;
    color: var(--color-text);
    opacity: 0.4;
    text-decoration: line-through;
}

.current-price {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(16, 16, 16, 0.2);
    background: white;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cta-button,
.cta-button-link {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.25rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.cta-button::before,
.cta-button-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.cta-button-link:hover::before {
    left: 100%;
}

.cta-button:hover,
.cta-button-link:hover {
    background: var(--color-accent);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 16, 16, 0.2);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.product-image-container {
    position: relative;
    margin: 0;
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(16, 16, 16, 0.15));
    transition: var(--transition);
    opacity: 0.9;
}

.product-image:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 30px 60px rgba(16, 16, 16, 0.25));
}


.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.features-section,
.benefits-section,
.description-section,
.usage-section,
.ingredients-section,
.reviews-section,
.faq-section {
    padding: 6rem 0;
}

.features-grid,
.benefits-grid,
.usage-grid,
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    align-items: start;
}

.feature-card,
.benefit-item,
.usage-step,
.ingredient-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(16, 16, 16, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-card:hover,
.benefit-item:hover,
.usage-step:hover,
.ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(16, 16, 16, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title,
.benefit-heading,
.step-title,
.ingredient-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.feature-text,
.benefit-description,
.step-text,
.ingredient-info {
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-text {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    align-items: start;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--color-accent);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.review-rating {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-author {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text);
    opacity: 0.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(16, 16, 16, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"]::after {
    content: '−';
}

.faq-question:hover {
    background: rgba(16, 16, 16, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.7;
}

.cta-section {
    padding: 8rem 2rem;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-link {
    background: var(--color-accent);
    color: white;
}

.cta-button-link:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: rgba(16, 16, 16, 0.05);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: var(--color-text);
    opacity: 0.7;
    line-height: 1.6;
}

.footer {
    background: var(--color-primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(16, 16, 16, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.875rem;
    opacity: 0.9;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border: 1px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn:hover {
    background: white;
    color: var(--color-primary);
}

.cookie-btn.accept-all {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.cookie-btn.accept-all:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.cookie-settings {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    z-index: 2001;
    box-shadow: 0 -4px 20px rgba(16, 16, 16, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    display: none;
}

.cookie-settings.show {
    display: block;
}

.cookie-settings-content {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-settings-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.cookie-setting-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(16, 16, 16, 0.02);
    border-radius: var(--radius);
}

.cookie-setting-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.cookie-setting-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -4px 0 20px rgba(16, 16, 16, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 0.5rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .product-image {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .section-container {
        padding: 3rem 1.5rem;
    }

    .features-grid,
    .benefits-grid,
    .usage-grid,
    .ingredients-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .features-section,
    .benefits-section,
    .description-section,
    .usage-section,
    .ingredients-section,
    .reviews-section,
    .faq-section {
        padding: 4rem 0;
    }
}

