body {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e8f5e9; /* Светло зелено */
    color: #2e7d32; /* Длабоко зелено */
    line-height: 1.6;
}

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

.site-header {
    background-color: #81c784; /* Средно зелено */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #388e3c;
}

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

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

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

.nav-item:hover {
    color: #1b5e20; /* Поинтензивно зелено */
}

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

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

.hero-section {
    background-color: #c8e6c9;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: 'Lora', serif;
    font-size: 22px;
    color: #2e7d32;
    margin-bottom: 10px;
}

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

.hero-button {
    display: inline-block;
    padding: 7px 12px;
    background-color: #1b5e20;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #2e7d32;
}

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

.content-panel h2 {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: #2e7d32;
    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: #1b5e20;
    position: absolute;
    left: 0;
}

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

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

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

.product-item button:hover {
    background-color: #2e7d32;
}

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

.section-button:hover {
    background-color: #2e7d32;
}

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

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

.cart-item p {
    margin: 0;
}

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

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

.quantity-control button:hover {
    background-color: #2e7d32;
}

.btn-remove {
    background-color: #81c784;
    color: #1b5e20;
    padding: 2px 4px;
    border: none;
    border-radius: 2px;
}

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

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

.cart-clear {
    padding: 7px 12px;
    background-color: #81c784;
    color: #1b5e20;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

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

.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 #81c784;
    border-radius: 3px;
}

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

.form-button:hover {
    background-color: #2e7d32;
}

.form-message {
    margin-top: 5px;
    color: #1b5e20;
}

.site-footer {
    background-color: #2e7d32;
    color: #e8f5e9;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-links a {
    color: #81c784;
    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: #1b5e20;
    color: #fff;
}

.cookie-notice button:hover {
    background-color: #2e7d32;
}

.disclaimer-note {
    text-align: center;
    padding: 5px;
    background-color: #81c784;
    color: #1b5e20;
    font-size: 10px;
    margin-top: 8px;
}