:root {
    --bg-primary: #fdf8f5;
    --bg-secondary: #fff5f0;
    --bg-dark: #2a2a2a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-gold: #d4a574;
    --accent-rose: #e8b4c8;
    --accent-highlight: #f5d5c8;
    --border-color: #e8d5cc;
}

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

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

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

.header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 180ms ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.btn-cta {
    background-color: var(--accent-gold);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 200ms ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #c99563;
    transform: scale(1.04);
    color: white;
}

.hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-filled {
    background-color: var(--accent-gold);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 200ms ease;
}

.btn-filled:hover {
    background-color: #c99563;
    transform: scale(1.04);
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 200ms ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.04);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.zora-probuzhdane {
    background-color: var(--bg-secondary);
}

.zora-probuzhdane h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.awakening-point {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 200ms ease;
}

.awakening-point:hover {
    box-shadow: 0 8px 16px rgba(212, 165, 116, 0.15);
    transform: translateY(-4px);
}

.awakening-point h3 {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.awakening-point p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.quick-tiles {
    background-color: white;
}

.quick-tiles h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.quick-tile {
    background-color: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    transition: all 200ms ease;
    border: 1px solid var(--border-color);
}

.quick-tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 200ms ease;
}

.quick-tile:hover img {
    transform: scale(1.05);
}

.quick-tile h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: var(--accent-gold);
}

.quick-tile p {
    padding: 0 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.tile-subtitle {
    display: block;
    padding: 10px 20px 20px;
    color: var(--accent-rose);
    font-size: 13px;
    font-weight: 500;
}

.barzhi-belezhi {
    background-color: var(--bg-secondary);
}

.barzhi-belezhi h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.tip-badge {
    background-color: white;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.rituali-na-zornata {
    background-color: white;
}

.rituali-na-zornata h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.ritual-card {
    background-color: var(--bg-primary);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.ritual-card h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.ritual-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.zora-core-svetlina h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 200ms ease;
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(212, 165, 116, 0.2);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-rose);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-card h4 {
    padding: 15px 15px 5px;
    font-size: 16px;
    color: var(--text-primary);
}

.product-meta {
    padding: 0 15px 5px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-desc {
    padding: 5px 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

.availability {
    padding: 5px 15px;
    font-size: 12px;
    color: var(--accent-gold);
}

.price {
    padding: 10px 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
}

.btn-product {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 10px;
    background-color: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
}

.btn-product:hover {
    background-color: #c99563;
    transform: scale(1.02);
}

.vechni-zori h2,
.harmoniya-na-utrinniya-blyask h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.glow-tip {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 200ms ease;
}

.glow-tip:hover {
    box-shadow: 0 8px 16px rgba(212, 165, 116, 0.15);
    transform: translateY(-4px);
}

.glow-tip h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 15px;
}

.glow-tip p {
    color: var(--text-secondary);
    font-size: 13px;
}

.harmony-card {
    background-color: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.harmony-card h4 {
    color: var(--accent-rose);
    margin-bottom: 10px;
    font-size: 15px;
}

.harmony-card p {
    color: var(--text-secondary);
    font-size: 13px;
}

.faq {
    background-color: var(--bg-secondary);
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.faq-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-card h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 15px;
}

.faq-card p {
    color: var(--text-secondary);
    font-size: 13px;
}

.zoryano-probuzhdane-cta {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(232, 180, 200, 0.2) 100%);
}

.zoryano-probuzhdane-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.zoryano-probuzhdane-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer h5 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer p {
    font-size: 13px;
    line-height: 1.8;
    color: #ccc;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 180ms ease;
}

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

.footer hr {
    border-color: #444;
}

.footer .text-center {
    font-size: 12px;
    color: #999;
}

.page-intro {
    background-color: var(--bg-secondary);
    text-align: center;
}

.page-intro h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.page-intro p {
    font-size: 16px;
    color: var(--text-secondary);
}

.product-detail {
    background-color: white;
}

.product-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.product-detail h1 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.product-tagline {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 20px;
}

.product-detail p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.specs-list {
    background-color: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    list-style: none;
    margin: 20px 0;
}

.specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

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

.price-tag {
    color: var(--accent-gold);
    font-size: 28px;
    margin: 20px 0;
}

.btn-order {
    background-color: var(--accent-gold);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: all 200ms ease;
}

.btn-order:hover {
    background-color: #c99563;
    transform: scale(1.02);
}

.legal-section h2 {
    font-size: 24px;
    color: var(--accent-gold);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 15px;
}

.legal-section li {
    margin-bottom: 8px;
}

.about-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.module-block {
    background-color: var(--bg-primary);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.module-block h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.module-block p {
    color: var(--text-secondary);
    font-size: 14px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.rule-item {
    background-color: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.rule-item h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 15px;
}

.rule-item p {
    color: var(--text-secondary);
    font-size: 13px;
}

.essence-point {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 200ms ease;
}

.essence-point:hover {
    box-shadow: 0 8px 16px rgba(212, 165, 116, 0.15);
}

.essence-point h4 {
    color: var(--accent-rose);
    margin-bottom: 10px;
    font-size: 15px;
}

.essence-point p {
    color: var(--text-secondary);
    font-size: 13px;
}

.guide-point {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.guide-point h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 15px;
}

.guide-point p {
    color: var(--text-secondary);
    font-size: 13px;
}

.contact-section {
    background-color: white;
}

.contact-section h2 {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.custom-checkbox {
    display: flex;
    align-items: center;
}

.custom-checkbox input {
    margin-right: 10px;
}

.custom-checkbox label {
    margin: 0;
    font-weight: normal;
}

.custom-checkbox a {
    color: var(--accent-gold);
    text-decoration: none;
}

.custom-checkbox a:hover {
    text-decoration: underline;
}

.thank-you-section {
    background-color: var(--bg-secondary);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-section h1 {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.thank-you-section .lead {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.thank-you-section p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.filter-section {
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 180ms ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
}

.products-grid h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.95);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    font-size: 14px;
}

.consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.consent-content p {
    margin: 0;
}

.btn-consent {
    background-color: var(--accent-gold);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 180ms ease;
}

.btn-consent:hover {
    background-color: #c99563;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .header .col-auto:last-child {
        display: none;
    }

    h2 {
        font-size: 24px !important;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .consent-banner {
        flex-direction: column;
        gap: 15px;
    }

    .consent-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-consent {
        width: 100%;
    }
}
