body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5ece3; /* Песочный */
    color: #5c4033; /* Тёмно-оливковый */
    line-height: 1.6;
}

.header-container, .section-container, .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-header {
    background-color: #d9c2a8; /* Светло-оливковый */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #b89d7f;
}

.logo {
    font-size: 32px;
    font-family: 'Cormorant', serif;
    text-align: center;
    color: #5c4033;
    margin-bottom: 10px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #5c4033;
    padding: 8px 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8a6d53; /* Средний оливковый */
}

.cart-count {
    background-color: #8a6d53;
    color: #fff;
    padding: 2px 7px;
    border-radius: 50%;
    font-size: 12px;
}

.site-main {
    padding: 40px 0;
}

.hero-banner {
    background-color: #e0d1c1;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
}

.banner-content h1 {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    color: #5c4033;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.banner-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8a6d53;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #5c4033;
}

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

.section-container h2 {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    color: #5c4033;
    margin-bottom: 20px;
}

.benefits-list, .product-item {
    padding-left: 20px;
}

.benefits-list li, .product-item {
    margin-bottom: 15px;
    position: relative;
}

.benefits-list li::before {
    content: "•";
    color: #8a6d53;
    position: absolute;
    left: -10px;
}

.product-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.product-item p {
    margin: 0 0 10px 0;
}

.product-item button {
    padding: 8px 15px;
    background-color: #8a6d53;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.product-item button:hover {
    background-color: #5c4033;
}

.section-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8a6d53;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.section-button:hover {
    background-color: #5c4033;
}

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

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

.cart-item p {
    margin: 0;
}

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

.quantity-control button {
    padding: 3px 8px;
    background-color: #8a6d53;
    color: #fff;
    border: none;
    border-radius: 3px;
}

.quantity-control button:hover {
    background-color: #5c4033;
}

.btn-remove {
    background-color: #d9c2a8;
    color: #5c4033;
    padding: 3px 8px;
    border: none;
    border-radius: 3px;
}

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

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

.cart-clear {
    padding: 10px 20px;
    background-color: #d9c2a8;
    color: #5c4033;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

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

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d9c2a8;
    border-radius: 5px;
}

.form-submit {
    padding: 10px 20px;
    background-color: #8a6d53;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-submit:hover {
    background-color: #5c4033;
}

.form-message {
    margin-top: 10px;
    color: #8a6d53;
}

.site-footer {
    background-color: #5c4033;
    color: #f5ece3;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-notice button {
    padding: 8px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #8a6d53;
    color: #fff;
}

.cookie-notice button:hover {
    background-color: #5c4033;
}

.disclaimer-note {
    text-align: center;
    padding: 10px;
    background-color: #d9c2a8;
    color: #5c4033;
    font-size: 14px;
    margin-top: 20px;
}