body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; /* Bej */
    color: #ff5722; /* Tünd portokal */
    line-height: 1.6;
}

.top-container, .content-box, .bottom-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-top {
    background-color: #ff8a50; /* Orta portokal */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #e64a19;
}

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

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

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

.nav-link:hover {
    color: #e64a19; /* Daha intensiv portokal */
}

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

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

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

.intro-content h1 {
    font-family: 'Noto Serif', serif;
    font-size: 22px;
    color: #ff5722;
    margin-bottom: 10px;
}

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

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

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

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

.content-box h2 {
    font-family: 'Noto Serif', serif;
    font-size: 18px;
    color: #ff5722;
    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: #e64a19;
    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: #e64a19;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

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

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

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

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

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

.cart-item p {
    margin: 0;
}

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

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

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

.btn-remove {
    background-color: #ff8a50;
    color: #e64a19;
    padding: 2px 4px;
    border: none;
    border-radius: 2px;
}

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

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

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

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

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

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

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

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

.site-bottom {
    background-color: #ff5722;
    color: #f5f5dc;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

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

.bottom-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: #e64a19;
    color: #fff;
}

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

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