body {
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    background-color: #f0e8f3; /* Лавандовый */
    color: #4a4060; /* Тёмно-фиолетовый */
    line-height: 1.6;
}

.header-inner, .content-wrapper, .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.main-header {
    background-color: #d4c4e0; /* Светло-лавандовый */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #b8a8cc;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    text-align: center;
    color: #4a4060;
    margin-bottom: 15px;
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-item {
    text-decoration: none;
    color: #4a4060;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #6d5a8c; /* Средний фиолетовый */
}

.cart-count {
    background-color: #6d5a8c;
    color: #fff;
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 14px;
}

.site-content {
    padding: 50px 0;
}

.intro-section {
    background-color: #e0d4e8;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.intro-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #4a4060;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    margin-bottom: 25px;
}

.intro-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #6d5a8c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.intro-button:hover {
    background-color: #4a4060;
}

.content-section {
    background-color: #fff;
    padding: 35px;
    margin-bottom: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #4a4060;
    margin-bottom: 20px;
}

.benefits-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: "•";
    color: #6d5a8c;
    position: absolute;
    left: 0;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-card p {
    margin: 0 0 12px 0;
}

.product-card button {
    padding: 10px 20px;
    background-color: #6d5a8c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.product-card button:hover {
    background-color: #4a4060;
}

.section-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #6d5a8c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.section-button:hover {
    background-color: #4a4060;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #d4c4e0;
}

.cart-item p {
    margin: 0;
}

.quantity-control {
    display: flex;
    gap: 8px;
}

.quantity-control button {
    padding: 5px 10px;
    background-color: #6d5a8c;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.quantity-control button:hover {
    background-color: #4a4060;
}

.btn-remove {
    background-color: #d4c4e0;
    color: #4a4060;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
}

.btn-remove:hover {
    background-color: #b8a8cc;
}

.cart-total {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.cart-clear {
    padding: 12px 25px;
    background-color: #d4c4e0;
    color: #4a4060;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.cart-clear:hover {
    background-color: #b8a8cc;
}

.order-form {
    margin-top: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4c4e0;
    border-radius: 6px;
}

.form-button {
    padding: 12px 25px;
    background-color: #6d5a8c;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.form-button:hover {
    background-color: #4a4060;
}

.form-message {
    margin-top: 15px;
    color: #6d5a8c;
}

.main-footer {
    background-color: #4a4060;
    color: #f0e8f3;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

.footer-links a {
    color: #d4c4e0;
    text-decoration: none;
    margin: 0 20px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-notice button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #6d5a8c;
    color: #fff;
}

.cookie-notice button:hover {
    background-color: #4a4060;
}

.disclaimer-note {
    text-align: center;
    padding: 15px;
    background-color: #d4c4e0;
    color: #4a4060;
    font-size: 14px;
    margin-top: 20px;
}