:root {
    --color-bg: #f5f1ed;
    --color-text: #4a4240;
    --color-primary: #e8d4cc;
    --color-secondary: #d4c5c0;
    --color-accent: #c9b8b3;
    --color-highlight: rgba(255, 255, 255, 0.6);
    --color-dark: #2a2420;
    --color-border: rgba(201, 184, 179, 0.3);
    --transition: 250ms ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--color-dark);
}

h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary);
}

.header-section {
    background: linear-gradient(135deg, rgba(245, 241, 237, 0.95), rgba(232, 212, 204, 0.8));
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-dark) !important;
}

.navbar-brand:hover {
    color: var(--color-primary) !important;
}

.nav-link {
    color: var(--color-text) !important;
    margin: 0 0.5rem;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.btn-catalog {
    background: rgba(201, 184, 179, 0.4);
    border: 1px solid var(--color-secondary);
    color: var(--color-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all var(--transition);
}

.btn-catalog:hover {
    background: var(--color-primary);
    transform: scale(1.03);
}

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(232, 212, 204, 0.3) 100%);
    overflow: hidden;
}

.hero-wave {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    opacity: 0.8;
    border-radius: 50% 30% 45% 40% / 30% 45% 40% 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    transition: all var(--transition);
    font-weight: 600;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--color-primary);
    transform: scale(1.03);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-secondary);
}

.cta-btn.secondary:hover {
    background: var(--color-secondary);
    color: white;
    transform: scale(1.03);
}

.essence-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(201, 184, 179, 0.1) 0%, transparent 100%);
}

.essence-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 45% 35% 40% 30% / 35% 40% 30% 45%;
    opacity: 0.85;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.essence-text {
    padding: 2rem;
}

.essence-text p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.benefits-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(232, 212, 204, 0.2) 0%, var(--color-bg) 100%);
}

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

.benefit-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: all var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

.drop-shape {
    border-radius: 50% 50% 50% 0;
}

.wave-shape {
    border-radius: 50% 50% 50% 50% / 60% 40% 30% 40%;
}

.feather-shape {
    border-radius: 50% 20% 40% 30% / 30% 50% 40% 50%;
}

.circle-shape {
    border-radius: 50%;
}

.oval-shape {
    border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%;
}

.swirl-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.ritual-section {
    padding: 4rem 0;
}

.ritual-wave {
    position: relative;
    padding: 3rem;
}

.ritual-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
    margin: 2rem 0;
    opacity: 0.85;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ritual-text {
    background: rgba(232, 212, 204, 0.2);
    padding: 2rem;
    border-radius: 50% 50% 50% 0 / 0 50% 50% 50%;
    margin: 2rem 0;
}

.core-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(201, 184, 179, 0.1) 0%, rgba(232, 212, 204, 0.1) 100%);
}

.core-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-products {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(232, 212, 204, 0.15) 100%);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all var(--transition);
}

.product-card:hover img {
    filter: brightness(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-info h3 a {
    color: var(--color-dark);
}

.product-info h3 a:hover {
    color: var(--color-primary);
}

.product-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.product-meta {
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.btn-product {
    background: var(--color-secondary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all var(--transition);
    display: inline-block;
}

.btn-product:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.story-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(201, 184, 179, 0.1) 0%, rgba(232, 212, 204, 0.2) 100%);
}

.story-text {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50% 50% 50% 0 / 0 50% 50% 50%;
}

.catalog-hero {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(232, 212, 204, 0.2) 0%, rgba(201, 184, 179, 0.1) 100%);
}

.catalog-intro {
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem;
}

.filter-btn {
    background: rgba(201, 184, 179, 0.2);
    border: 2px solid rgba(201, 184, 179, 0.4);
    color: var(--color-text);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.catalog-essence,
.catalog-deep,
.catalog-closing {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(232, 212, 204, 0.1) 100%);
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: all var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.product-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(232, 212, 204, 0.15) 0%, rgba(201, 184, 179, 0.1) 100%);
    text-align: center;
}

.product-detail {
    padding: 3rem 0;
}

.product-image-section {
    display: flex;
    align-items: center;
}

.product-image-section img {
    width: 100%;
    border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-content-section {
    padding: 2rem;
}

.product-specs {
    background: rgba(232, 212, 204, 0.15);
    padding: 1.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 184, 179, 0.2);
}

.specs-list li:last-child {
    border-bottom: none;
}

.product-price-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-primary);
    border-radius: 25px;
    text-align: center;
}

.product-description,
.product-usage,
.product-philosophy {
    margin: 2rem 0;
}

.btn-order,
.btn-submit {
    background: var(--color-dark);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all var(--transition);
    display: inline-block;
    border: 2px solid var(--color-dark);
}

.btn-order:hover,
.btn-submit:hover {
    background: transparent;
    color: var(--color-dark);
    transform: scale(1.03);
}

.contact-section,
.about-hero,
.about-story,
.about-values,
.legal-section {
    padding: 3rem 2rem;
}

.contact-intro,
.about-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-block {
    padding: 1.5rem;
    background: rgba(232, 212, 204, 0.15);
    border-radius: 25px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-family: inherit;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(232, 212, 204, 0.1);
}

.form-check-label {
    margin-left: 0.5rem;
    color: var(--color-text);
}

.thank-you-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(232, 212, 204, 0.2) 0%, rgba(201, 184, 179, 0.1) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0;
    max-width: 800px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    text-align: center;
    transition: all var(--transition);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-section {
    background: linear-gradient(135deg, #3a3430 0%, #2a2420 100%);
    color: #ccc;
    padding: 4rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-block h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 36, 32, 0.95);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 1000;
    flex-wrap: wrap;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-content p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

.btn-consent {
    background: var(--color-primary);
    color: var(--color-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-consent:hover {
    transform: scale(1.05);
    background: var(--color-secondary);
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-wave {
        flex-direction: column;
    }

    .hero-image {
        max-width: 300px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-showcase {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding: 1rem 0;
    }

    .product-detail .row {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
