body {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0eacf; /* Светло-зеленый */
    color: #4a704a; /* Темно-зеленый */
    line-height: 1.6;
}

.header-container, .content-area, .footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-header {
    background-color: #8bc34a; /* Средний зеленый */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #689f38;
}

.site-brand {
    font-family: 'Lora', serif;
    font-size: 24px;
    text-align: center;
    color: #4a704a;
    margin-bottom: 8px;
}

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

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

.nav-item:hover {
    color: #2f4f2f; /* Более темный зеленый */
}

.cart-count {
    background-color: #2f4f2f;
    color: #fff;
    padding: 2px 5px;
    border-radius: 50%;
    font-size: 11px;
}

.main-content {
    padding: 25px 0;
}

.welcome-block {
    background-color: #c5e1a5;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

.welcome-text h1 {
    font-family: 'Lora', serif;
    font-size: 22px;
    color: #4a704a;
    margin-bottom: 10px;
}

.welcome-text p {
    font-size: 13px;
    margin-bottom: 12px;
}

.welcome-link {
    display: inline-block;
    padding: 7px 12px;
    background-color: #2f4f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.welcome-link:hover {
    background-color: #4a704a;
}

.content-area {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-area h2 {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: #4a704a;
    margin-bottom: 10px;
}

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

.benefit-list li {
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.benefit-list li::before {
    content: "•";
    color: #2f4f2f;
    position: absolute;
    left: 0;
}

.product-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

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

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

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

.section-link {
    display: inline-block;
    padding: 7px 12px;
    background-color: #2f4f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.section-link:hover {
    background-color: #4a704a;
}

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

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

.cart-item p {
    margin: 0;
}

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

.quantity-control button {
    padding: 2px 4px;
    background-color: #2f4f2f;
    color: #fff;
    border: none;
    border-radius: 2px;
}

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

.btn-remove {
    background-color: #8bc34a;
    color: #4a704a;
    padding: 2px 4px;
    border: none;
    border-radius: 2px;
}

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

.cart-total {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 12px;
}

.cart-clear {
    padding: 7px 12px;
    background-color: #8bc34a;
    color: #4a704a;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

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

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

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

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

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

.form-button {
    padding: 7px 12px;
    background-color: #2f4f2f;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

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

.form-message {
    margin-top: 5px;
    color: #2f4f2f;
}

.main-footer {
    background-color: #4a704a;
    color: #e0eacf;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

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

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

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

.cookie-notice button {
    padding: 4px 8px;
    margin: 2px;
    border: none;
    border-radius: 2px;
    background-color: #2f4f2f;
    color: #fff;
}

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

.disclaimer-note {
    text-align: center;
    padding: 5px;
    background-color: #8bc34a;
    color: #4a704a;
    font-size: 10px;
    margin-top: 8px;
}