* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #2F4F2F;
    background-color: #E8F5E9;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.header {
    background: linear-gradient(45deg, #E8F5E9, #A5D6A7);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    color: #4CAF50;
}

.tagline {
    font-size: 0.9rem;
    color: #2F4F2F;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #2F4F2F;
    text-decoration: none;
    font-weight: 500;
}

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

.cart-link {
    position: relative;
}

.cart-count {
    background-color: #4CAF50;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    right: -10px;
}

.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #2F4F2F;
    color: #FFFFFF;
    padding: 15px;
    text-align: center;
    transition: bottom 0.5s ease;
    z-index: 1000;
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background-color: #A5D6A7;
    color: #2F4F2F;
}

.cookie-btn.decline {
    background-color: #81C784;
    color: #FFFFFF;
}

.hero {
    padding: 60px 0;
    background: linear-gradient(45deg, #E8F5E9, #A5D6A7);
}

.hero-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #4CAF50;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin: 15px 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #A5D6A7, #4CAF50);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
}

.cta-button:hover {
    background: linear-gradient(45deg, #81C784, #4CAF50);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 40px 0;
    color: #4CAF50;
}

.info, .tips, .products, .articles, .cart {
    padding: 40px 0;
}

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

.tip-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.1);
    padding: 20px;
    text-align: center;
}

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

.product-card {
    background: linear-gradient(135deg, #E8F5E9, #A5D6A7);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
    background-color: #FFFFFF;
}

.product-info h3 {
    font-size: 1.4rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.btn-add-cart {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background-color: #A5D6A7;
    color: #2F4F2F;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-add-cart:hover {
    background-color: #81C784;
}

.medical-disclaimer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #2F4F2F;
}

.articles .article-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

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

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #E8F5E9, #A5D6A7);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.2);
    transition: transform 0.3s ease;
}

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

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item div {
    flex-grow: 1;
}

.cart-item h3 {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-bottom: 5px;
}

.cart-item p {
    font-size: 1rem;
    color: #2F4F2F;
}

.cart-summary {
    background: linear-gradient(135deg, #E8F5E9, #A5D6A7);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.2);
    margin-top: 20px;
}

.cart-total {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.order-form {
    display: grid;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #2F4F2F;
}

.form-group input, .form-group textarea {
    padding: 10px;
    border: 1px solid #A5D6A7;
    border-radius: 5px;
    font-size: 1rem;
}

.order-form h3 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.footer {
    background: linear-gradient(45deg, #E8F5E9, #A5D6A7);
    padding: 20px 0;
    text-align: center;
    color: #2F4F2F;
}

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

.footer-links a:hover {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-item img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .cart-summary {
        padding: 15px;
    }
}