/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333333;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #28A745;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

.cookie-btn.customize {
    background-color: #FFA500;
    color: white;
}

.cookie-btn.customize:hover {
    background-color: #e69500;
}

.cookie-btn.decline {
    background-color: #6c757d;
    color: white;
}

.cookie-btn.decline:hover {
    background-color: #5a6268;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1E90FF 0%, #007BFF 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo .tagline {
    font-size: 12px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FFA500;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFA500;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-count {
    background-color: #FF6600;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333333;
}

.feature-icon {
    font-size: 24px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #28A745;
    color: white;
}

.cta-button.primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.cta-button.secondary:hover {
    background-color: #007BFF;
    color: white;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1E90FF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666666;
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FF6600;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

.product-info p {
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    margin-bottom: 20px;
}

.price-old {
    color: #999999;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-current {
    color: #28A745;
    font-size: 24px;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    background-color: #1E90FF;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-add-cart:hover {
    background-color: #0d6efd;
}

.btn-view {
    background-color: #FFA500;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-view:hover {
    background-color: #e69500;
}

/* Health Tips Section */
.health-tips {
    padding: 80px 0;
    background: linear-gradient(135deg, #28A745 0%, #00C853 100%);
    color: white;
}

.health-tips .section-title {
    color: white;
}

.health-tips .section-title::after {
    background-color: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 20px;
}

.about-text p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #1E90FF;
}

.stat-label {
    font-size: 14px;
    color: #666666;
}

.btn-learn-more {
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #0056b3;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Medical Disclaimer */
.medical-disclaimer {
    padding: 40px 0;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-icon {
    font-size: 48px;
    color: #856404;
}

.disclaimer-text h3 {
    color: #856404;
    margin-bottom: 10px;
}

.disclaimer-text p {
    color: #856404;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #333333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #1E90FF;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section h4 {
    color: #FFA500;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1E90FF;
}

.contact-info p {
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555555;
    color: #cccccc;
}

/* Cart Styles */
.cart-container {
    padding: 40px 0;
    min-height: 60vh;
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.cart-empty h2 {
    color: #666666;
    margin-bottom: 20px;
}

.cart-items {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h3 {
    margin-bottom: 5px;
    color: #333333;
}

.cart-item-price {
    color: #28A745;
    font-weight: bold;
    font-size: 18px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
}

.remove-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.cart-total {
    text-align: right;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.cart-total h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
}

.checkout-btn {
    background-color: #28A745;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #218838;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007BFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.form-btn:hover {
    background-color: #0056b3;
}

/* Product Detail Styles */
.product-detail {
    padding: 40px 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-detail-info h1 {
    font-size: 32px;
    color: #333333;
    margin-bottom: 20px;
}

.product-detail-price {
    margin-bottom: 30px;
}

.product-detail-price .price-old {
    color: #999999;
    text-decoration: line-through;
    font-size: 18px;
    margin-right: 15px;
}

.product-detail-price .price-current {
    color: #28A745;
    font-size: 36px;
    font-weight: bold;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666666;
}

.product-composition {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-composition h3 {
    color: #333333;
    margin-bottom: 15px;
}

.product-composition ul {
    list-style: none;
    padding-left: 0;
}

.product-composition li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.product-composition li:last-child {
    border-bottom: none;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.product-actions .btn-add-cart {
    flex: 1;
    padding: 15px;
    font-size: 16px;
}

.product-actions .btn-buy-now {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-actions .btn-buy-now:hover {
    background-color: #e65c00;
}

/* Reviews Section */
.reviews-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.reviews-section h3 {
    margin-bottom: 30px;
    color: #333333;
}

.review-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.review-form h4 {
    margin-bottom: 20px;
    color: #333333;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input label:hover,
.rating-input label.active {
    color: #FFA500;
}

.reviews-list {
    space-y: 20px;
}

.review {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: bold;
    color: #333333;
}

.review-rating {
    color: #FFA500;
}

.review-text {
    color: #666666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content,
    .about-content,
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefits-grid,
    .products-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .benefits,
    .products,
    .health-tips,
    .about-preview {
        padding: 40px 0;
    }
    
    .benefit-card,
    .product-card,
    .tip-card {
        padding: 20px;
    }
    
    .product-detail-price .price-current {
        font-size: 28px;
    }
}