body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: #E8F5E9;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar {
    width: 250px;
    background: #F1F8E9;
    padding: 20px 0;
    position: fixed;
    height: 100%;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.sidebar.hidden {
    transform: translateX(-250px);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
}

.logo h1 {
    text-align: center;
    color: #4CAF50;
    margin: 0 0 15px;
    font-size: 24px;
}

.logo p {
    text-align: center;
    color: #666;
    margin: 0;
    font-size: 14px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: #E8F5E9;
    color: #4CAF50;
}

.recommendations {
    margin-top: 20px;
    padding: 0 20px;
}

.recommendations h3 {
    color: #4CAF50;
    font-size: 18px;
    margin-bottom: 10px;
}

.recommendations p a {
    color: #81C784;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recommendations p a:hover {
    color: #4CAF50;
}

.main-content {
    margin-left: 250px;
    width: calc(100% - 250px);
    padding: 20px;
    transition: margin-left 0.3s ease;
}

.main-content.shifted {
    margin-left: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #4CAF50;
}

.section-title {
    text-align: center;
    margin: 40px 0 25px;
    font-size: 28px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

button, .cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #4CAF50;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover, .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.hero {
    background: #C8E6C9;
    padding: 80px 0;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.product-list {
    padding: 40px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.product-item {
    background: #E8F5E9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    max-width: 250px;
    height: 300px;
    width: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.product-details h3 {
    margin: 10px 0;
    font-size: 20px;
}

.product-price {
    color: #4CAF50;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-section {
    padding: 40px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.cart-items {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #E8F5E9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-3px);
}

.cart-image {
    max-width: 200px;
    height: 233px;
    width: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.cart-details h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.cart-details p {
    margin: 5px 0;
    font-size: 16px;
}

.btn-remove {
    background: #A5D6A7;
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    transition: transform 0.3s ease;
}

.btn-remove:hover {
    transform: scale(1.05);
    background: #66BB6A;
}

.btn-minus, .btn-plus {
    background: #A5D6A7;
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    color: white;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.btn-minus:hover, .btn-plus:hover {
    transform: scale(1.05);
    background: #66BB6A;
}

.clear-cart-btn {
    background: #C8E6C9;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.clear-cart-btn:hover {
    transform: scale(1.05);
    background: #81C784;
}

.cart-total {
    font-size: 22px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 15px;
}

.lead-form, .contact-form {
    padding: 20px;
    background: #E8F5E9;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #4CAF50;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #C8E6C9;
    border-radius: 8px;
    font-size: 16px;
}

.form-message {
    margin-top: 10px;
    text-align: center;
}

.contact-info {
    background: #E8F5E9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.about-section {
    padding: 40px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.tips-list {
    padding: 40px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.tip-item {
    background: #E8F5E9;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.contact-section {
    padding: 40px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.footer {
    background: #4CAF50;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content a {
    color: #C8E6C9;
    margin: 0 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.8;
}

.medical-disclaimer {
    color: #4CAF50;
    text-align: center;
    font-size: 14px;
    margin: 15px 0;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 8px;
    animation: fadeIn 1s ease;
}

.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease;
}

.cookie-notice.show {
    display: block;
}

.cookie-btn {
    padding: 10px 20px;
    margin: 0 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .sidebar {
        transform: translateX(-250px);
    }
    .sidebar.visible {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    .main-content.shifted {
        margin-left: 0;
    }
    .nav-menu {
        flex-direction: column;
    }
    .nav-menu a {
        margin: 5px 0;
        padding: 10px;
    }
    .recommendations {
        display: none;
    }
    .product-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 30px 0;
    }
    .hero-text h1 {
        font-size: 24px;
    }
    .product-item img {
        max-width: 100%;
        height: auto;
    }
    .contact-form {
        padding: 10px;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .quantity-controls {
        margin-top: 10px;
    }
}