/* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Hero Banner Styles */
.hero-banner {
    background-color: #3cbeb0;
    padding: 1.5rem 1rem;
}

.hero-text {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.stock-alert {
    text-decoration: underline;
    font-weight: 700;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 3px solid #3cbeb0;
    background: #f0fffd;
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(60,190,176,0.2);
}

.pricing-card h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.product-image {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.price-box {
    margin: 1.5rem 0;
}

.price {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.per-bottle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.savings {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bonus {
    color: #3cbeb0;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-add-to-cart {
    background-color: #ffd700;
    color: #000;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-add-to-cart:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
}

.btn-add-to-cart.glow {
    animation: glowing 1.5s infinite;
    box-shadow: 0 0 20px #ffd700;
}

@keyframes glowing {
    0% { box-shadow: 0 0 10px #ffd700; }
    50% { box-shadow: 0 0 20px #ffd700; }
    100% { box-shadow: 0 0 10px #ffd700; }
}

.guarantee-box {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.guarantee-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.guarantee-badge {
    max-width: 80px;
    height: auto;
}

.payment-methods {
    max-width: 400px;
    height: auto;
}

/* Reviews Section Styles */
.reviews-section {
    background-color: white;
    border-top: 1px solid #eee;
}

.reviews-main-title {
    color: #3cbeb0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(60,190,176,0.1);
}

.review-stars {
    color: #ffd700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.review-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.review-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #3cbeb0;
}

.reviewer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.reviewer-location {
    color: #3cbeb0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Breakthrough Section Styles */
.breakthrough-section {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.breakthrough-title {
    color: #3cbeb0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.breakthrough-content {
    font-size: 1.1rem;
    line-height: 1.6;
}

.question {
    font-style: italic;
    color: #555;
    font-size: 1.3rem;
    font-weight: 500;
}

.highlight {
    color: #3cbeb0;
    font-size: 1.4rem;
    font-weight: 600;
}

.emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.guarantee-highlight {
    background-color: rgba(60, 190, 176, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
}

.creator-signature {
    margin-top: 3rem;
}

.creator-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.creator-title {
    color: #666;
    font-weight: 500;
}

/* Features Section Styles */
.features-section {
    background-color: white;
    border-top: 1px solid #eee;
}

.feature-card {
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(60, 190, 176, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(60, 190, 176, 0.1);
    border-radius: 50%;
    padding: 1.5rem;
}

.feature-img {
    width: 100%;
    height: auto;
}

.feature-title {
    color: #3cbeb0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Bonuses Section Styles */
.bonuses-section {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.bonus-headline {
    color: #3cbeb0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(60,190,176,0.2);
}

.bonus-img-wrapper {
    flex: 0 0 150px;
}

.bonus-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.bonus-content {
    flex: 1;
}

.bonus-label {
    display: inline-block;
    background-color: #3cbeb0;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.bonus-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bonus-type {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0;
}

.btn-order {
    background-color: #ffd700;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: glowing 1.5s infinite;
}

.btn-order:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    color: #000;
}

/* Ingredients Section Styles */
.ingredients-section {
    background-color: white;
    border-top: 1px solid #eee;
}

.ingredients-headline {
    color: #3cbeb0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.ingredient-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(60,190,176,0.1);
}

.ingredient-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3cbeb0;
}

.ingredient-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-title {
    color: #3cbeb0;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.ingredient-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Energy CTA Section Styles */
.energy-cta-section {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.cta-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cta-image:hover {
    transform: scale(1.02);
}

.cta-content {
    padding: 2rem;
}

.cta-title {
    color: #3cbeb0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.cta-text {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-text strong {
    color: #333;
    font-weight: 700;
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.faq-title {
    color: #3cbeb0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(60,190,176,0.1);
}

.faq-question {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.faq-question::before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: #3cbeb0;
    font-weight: 700;
}

.faq-answer {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 2rem;
    position: relative;
}

.faq-answer::before {
    content: "A:";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.footer-links {
    font-size: 1.1rem;
}

.footer-link {
    color: #3cbeb0;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 1rem;
}

.footer-link:hover {
    color: #2a8478;
    text-decoration: underline;
}

.separator {
    color: #ccc;
}

.disclaimer-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Policy Pages Styles */
.policy-section {
    background-color: white;
}

.policy-title {
    color: #3cbeb0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    color: #333;
}

.policy-content h2 {
    color: #3cbeb0;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.policy-content p,
.policy-content li {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-text {
        font-size: 1.25rem;
    }
    .pricing-card {
        padding: 1.5rem;
    }
    .pricing-card.featured {
        transform: translateY(0);
    }
    .price {
        font-size: 2rem;
    }
    .breakthrough-title {
        font-size: 2rem;
    }
    .breakthrough-content {
        font-size: 1rem;
    }
    .question,
    .highlight,
    .emphasis {
        font-size: 1.1rem;
    }
    .creator-name {
        font-size: 1.2rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        padding: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 1rem;
    }
    .hero-text {
        font-size: 1.1rem;
    }
    .pricing-card h3 {
        font-size: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bonus-headline {
        font-size: 2rem;
    }

    .bonus-card {
        padding: 1.5rem;
    }

    .bonus-img-wrapper {
        flex: 0 0 120px;
    }

    .ingredients-headline {
        font-size: 2rem;
    }

    .ingredient-card {
        padding: 1.5rem;
    }

    .ingredient-img-wrapper {
        width: 100px;
        height: 100px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-content {
        padding: 1.5rem;
    }

    .reviews-main-title {
        font-size: 2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .bonus-headline {
        font-size: 1.8rem;
    }

    .bonus-title {
        font-size: 1.1rem;
    }

    .bonus-img-wrapper {
        flex: 0 0 100px;
    }

    .btn-order {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .ingredients-headline {
        font-size: 1.8rem;
    }

    .ingredient-title {
        font-size: 1.2rem;
    }

    .ingredient-desc {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-content {
        padding: 1rem 0;
    }

    .reviews-main-title {
        font-size: 1.8rem;
    }

    .review-title {
        font-size: 1.2rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .faq-question,
    .faq-answer {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-links {
        font-size: 1rem;
    }
    
    .footer-link {
        padding: 0 0.5rem;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 1rem;
    }
}

/* Cookie Policy Popup Styles */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    display: none;
}

.cookie-popup p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background-color: #3cbeb0;
    color: white;
}

.cookie-accept:hover {
    background-color: #2a8478;
}

.cookie-close {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-close:hover {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .cookie-popup {
        bottom: 10px;
        padding: 15px;
    }

    .cookie-popup p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .cookie-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
} 