.elementor-698 .elementor-element.elementor-element-d25f84d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-698 .elementor-element.elementor-element-3b7fe50{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-498591e *//* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 17px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 17px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #e74c3c;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #e74c3c;
}

.order-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 10px;
    border-radius: 8px;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav li {
    text-align: center;
    padding: 10px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.headline {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.subheadline {
    font-size: 24px;
    margin-bottom: 30px;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.mobile-certs {
    display: none;
    gap: 15px;
    margin: 20px 0;
}

.mobile-certs img {
    height: 40px;
    width: auto;
}

.hero-description p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    font-size: 16px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-image {
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.desktop-certs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.desktop-certs img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Storytelling Section */
.storytelling {
    padding: 80px 0;
    background: #f8f9fa;
}

.storytelling h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background: white;
}

.ingredients h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ingredient-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}

.ingredient-item h3 {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 15px;
}

.ingredient-item p {
    font-size: 16px;
    line-height: 1.6;
}

.quality-certs {
    text-align: center;
}

.quality-certs img {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-item img:hover {
    transform: scale(1.02);
}

/* Checkout Section */
.checkout {
    padding: 80px 0;
    background: white;
}

.checkout h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.checkout-subtitle {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.checkout-item {
    position: relative;
    text-align: center;
}

.checkout-item.featured {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
}

.checkout-link {
    display: block;
    text-decoration: none;
}

.checkout-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid #e74c3c;
}

.checkout-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: #f8f9fa;
}

.guarantee h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.guarantee-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.guarantee-text ul {
    list-style: none;
    margin-top: 20px;
}

.guarantee-text li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #27ae60;
    font-weight: 500;
}

.guarantee-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Free Shipping */
.free-shipping {
    padding: 60px 0;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    text-align: center;
}

.free-shipping h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.free-shipping p {
    font-size: 18px;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Scientific References */
.scientific-references {
    padding: 80px 0;
    background: #f8f9fa;
}

.scientific-references h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.scientific-references > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reference-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo h3 {
    font-size: 28px;
    color: #e74c3c;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    text-align: left;
}

.disclaimer p {
    margin-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Header Mobile */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .headline {
        font-size: 32px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .mobile-certs {
        display: flex;
        justify-content: center;
    }
    
    .desktop-certs {
        display: none;
    }
    
    /* Story Mobile */
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-images {
        flex-direction: row;
        gap: 15px;
    }
    
    /* Ingredients Mobile */
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Checkout Mobile */
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 300px;
    }
    
    .checkout-item.featured {
        transform: none;
        order: 2;
    }
    
    .checkout-item:first-child {
        order: 1;
    }
    
    .checkout-item:last-child {
        order: 3;
    }
    
    /* Guarantee Mobile */
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* References Mobile */
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* General Mobile */
    .container {
        padding: 0 17px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 28px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .checkout-image {
        max-width: 200px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .faq-answer.active {
        padding: 15px;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-btn,
    .checkout,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}/* End custom CSS */