body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e8f5e9; /* Açıq yaşıl */
    color: #4a4077; /* Tünd bənövşə */
    line-height: 1.6;
}

.header-container, .content-box, .footer-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 10px;
}

.main-header {
    background-color: #81c784; /* Orta yaşıl */
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #66bb6a;
}

.site-brand {
    font-family: 'Cormorant', serif;
    font-size: 26px;
    text-align: center;
    color: #4a4077;
    margin-bottom: 6px;
}

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

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

.nav-link:hover {
    color: #2f2d4e; /* Daha tünd bənövşə */
}

.cart-count {
    background-color: #2f2d4e;
    color: #fff;
    padding: 2px 4px;
    border-radius: 50%;
    font-size: 10px;
}

.content-area {
    padding: 30px 0;
}

.intro-block {
    background-color: #a5d6a7;
    padding: 25px 0;
    text-align: center;
    margin-bottom: 20px;
}

.intro-text h1 {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    color: #4a4077;
    margin-bottom: 10px;
}

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

.intro-button {
    display: inline-block;
    padding: 7px 13px;
    background-color: #2f2d4e;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

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

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

.content-box h2 {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: #4a4077;
    margin-bottom: 12px;
}

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

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

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

.product-item h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

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

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

.product-item button:hover {
    background-color: #4a4077;
}

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

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

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

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 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: #2f2d4e;
    color: #fff;
    border: none;
    border-radius: 2px;
}

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

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

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

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

.cart-clear {
    padding: 7px 13px;
    background-color: #81c784;
    color: #4a4077;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

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

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

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

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

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

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

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

.form-message {
    margin-top: 6px;
    color: #2f2d4e;
}

.main-footer {
    background-color: #4a4077;
    color: #e8f5e9;
    text-align: center;
    padding: 12px 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;
    right: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

.disclaimer-note {
    text-align: center;
    padding: 6px;
    background-color: #81c784;
    color: #4a4077;
    font-size: 11px;
    margin-top: 8px;
}