body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #3a3a3a;
    background: linear-gradient(135deg, #f0f4f1 0%, #d9e6d2 100%); /* Delikatny zielony gradient */
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #4a704a; /* Głęboka zieleń */
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin: 60px 0 40px;
    color: #3a3a3a;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #8a9a5b; /* Brązowo-zielony akcent */
    margin: 15px auto;
    border-radius: 2px;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #8a9a5b;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #6b8250;
    transform: translateY(-3px);
}

.hero-btn {
    background: #4a704a;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
    background: #3a5a3a;
    transform: translateY(-3px);
}

.main-header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-section {
    text-align: center;
}

.logo-section h1 {
    font-size: 34px;
    margin: 0;
    color: #3a3a3a;
}

.contact-info {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: #3a3a3a;
    padding: 10px 18px;
    border-radius: 5px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-menu a:hover {
    background: #4a704a;
    color: #fff;
}

.cart-link {
    position: relative;
}

.cart-count {
    background: #4a704a;
    color: #fff;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 14px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.cart-dropdown {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 300px;
    z-index: 100;
    border: 1px solid #8a9a5b;
}

.cart-dropdown.active {
    display: block;
}

.cart-preview {
    max-height: 200px;
    overflow-y: auto;
}

.cart-preview-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-preview-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.cart-preview-item p {
    margin: 0;
    color: #3a3a3a;
}

.cart-go {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    padding: 8px;
    background: #4a704a;
    border-radius: 5px;
}

.cart-go:hover {
    background: #3a5a3a;
}

.hero-section {
    background: linear-gradient(135deg, #e0ece1 0%, #c9d8c2 100%);
    padding: 120px 0;
    text-align: center;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 48px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.featured-products {
    background: #fff;
    padding: 50px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #e0ece1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-info h3 {
    font-size: 20px;
    color: #3a3a3a;
    margin: 15px 0;
}

.price {
    color: #8a9a5b;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-section {
    background: linear-gradient(135deg, #e0ece1 0%, #fff 100%);
    padding: 50px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    gap: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.cart-item img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    margin: 0 0 10px;
    color: #3a3a3a;
}

.product-details p {
    margin: 5px 0;
    color: #666;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control button {
    padding: 6px 12px;
    background: #4a704a;
    color: #fff;
}

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

.btn-remove {
    background: #8a9a5b;
    padding: 6px 12px;
    border-radius: 5px;
}

.btn-remove:hover {
    background: #6b8250;
}

.cart-total {
    font-size: 24px;
    color: #8a9a5b;
    text-align: right;
    margin: 20px 0;
}

.cart-actions {
    text-align: center;
    margin: 20px 0;
}

.clear-btn {
    background: #8a9a5b;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
}

.clear-btn:hover {
    background: #6b8250;
}

.order-form {
    max-width: 500px;
    margin-top: 30px;
    background: #e0ece1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    color: #3a3a3a;
    margin-bottom: 5px;
}

.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.form-message {
    margin-top: 10px;
    color: #4a704a;
}

.health-tips {
    background: #d9e6d2;
    padding: 50px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.tip-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.inspiration-section, .customer-reviews, .promo-section, .about-preview, .contact-preview {
    padding: 50px 0;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.inspiration-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.inspiration-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.review-card {
    background: #e0ece1;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.site-footer {
    background: #3a3a3a;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

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

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

.disclaimer-note {
    text-align: center;
    padding: 10px;
    background: #d9e6d2;
    color: #666;
    font-size: 14px;
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 300px;
}

.cookie-content {
    text-align: center;
}

.cookie-btns {
    margin-top: 10px;
}

.cookie-accept, .cookie-decline {
    padding: 8px 15px;
    margin: 0 5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.cookie-accept {
    background: #4a704a;
    color: #fff;
}

.cookie-decline {
    background: #8a9a5b;
    color: #fff;
}

.cookie-accept:hover {
    background: #3a5a3a;
}

.cookie-decline:hover {
    background: #6b8250;
}