body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa; /* Açıq mavi */
    color: #3e4a3d; /* Tünd ağac */
    line-height: 1.6;
}

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

.top-header {
    background-color: #80deea; /* Orta mavi */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #4fc3f7;
}

.site-title {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    text-align: center;
    color: #3e4a3d;
    margin-bottom: 8px;
}

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

.menu-item {
    text-decoration: none;
    color: #3e4a3d;
    padding: 6px 10px;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #2d3a2c; /* Daha tünd ağac */
}

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

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

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

.welcome-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #3e4a3d;
    margin-bottom: 10px;
}

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

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

.welcome-button:hover {
    background-color: #3e4a3d;
}

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

.content-wrapper h2 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: #3e4a3d;
    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: #2d3a2c;
    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: #2d3a2c;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.product-card button:hover {
    background-color: #3e4a3d;
}

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

.section-button:hover {
    background-color: #3e4a3d;
}

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

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

.cart-item p {
    margin: 0;
}

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

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

.quantity-control button:hover {
    background-color: #3e4a3d;
}

.btn-remove {
    background-color: #80deea;
    color: #3e4a3d;
    padding: 2px 4px;
    border: none;
    border-radius: 2px;
}

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

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

.cart-clear {
    padding: 7px 12px;
    background-color: #80deea;
    color: #3e4a3d;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

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

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

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

.form-button:hover {
    background-color: #3e4a3d;
}

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

.main-footer {
    background-color: #3e4a3d;
    color: #e0f7fa;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-links a {
    color: #80deea;
    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: #2d3a2c;
    color: #fff;
}

.cookie-notice button:hover {
    background-color: #3e4a3d;
}

.disclaimer-note {
    text-align: center;
    padding: 5px;
    background-color: #80deea;
    color: #3e4a3d;
    font-size: 10px;
    margin-top: 8px;
}