/* Custom CSS for Prostabliss Page */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Roboto+Condensed:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #132C0D;
    --primary-dark: #132C0D;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --star-color: #ffc107;
    --star-empty: #e9ecef;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 70px;
    
}

/* Header Styles */
.header-section {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    text-decoration: none;
}

.logo-text {
    color: var(--primary-color);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
}

.navbar-nav {
    gap: 2rem;
    margin-left: auto;
    margin-right: 3rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
}

.navbar-cta {
    margin-left: 0;
}

.btn-cta {
    background-color: #FFC107;
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-cta:hover {
    background-color: #e0a800;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #e80211 0%, #e80211 100%);
    color: var(--white);
    padding: 1rem 0;
    margin-top: 0;
}

.promo-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}


p{
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}
/* Main Content */
.main-content {
    margin-top: 0;
}

/* Product Review Section */
/* --- VARIABLES --- */
:root {
    --ph-bg-dark: #0B0F19;
    --ph-bg-card: #151B2B;
    --ph-accent: #D4AF37; /* Premium Gold */
    --ph-accent-glow: rgba(212, 175, 55, 0.4);
    --ph-text-white: #FFFFFF;
    --ph-text-muted: #94A3B8;
    --ph-font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ph-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- WRAPPER & LAYOUT --- */
.ph-wrapper {
    position: relative;
    background-color: var(--ph-bg-dark);
    color: var(--ph-text-white);
    font-family: var(--ph-font-main);
    overflow: hidden;
    padding: 0px 0px;
    

    align-items: center;
}

.ph-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.ph-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- AMBIENT GLOWS --- */
.ph-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 1;
}

.ph-glow-1 {
    width: 400px;
    height: 400px;
    background: #1e3a8a;
    top: -100px;
    left: -100px;
}

.ph-glow-2 {
    width: 500px;
    height: 500px;
    background: #422006; /* Dark amber */
    bottom: -100px;
    right: -100px;
}

/* --- TYPOGRAPHY & TEXT --- */
.ph-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--ph-accent);
    margin-bottom: 24px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.ph-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ph-text-gradient {
    background: linear-gradient(90deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ph-subhead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ph-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.ph-subhead strong { color: var(--ph-text-white); }
.ph-subhead em { color: var(--ph-accent); font-style: normal; }

/* --- BENEFITS GRID --- */
.ph-benefits-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.ph-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ph-benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--ph-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* --- BUTTONS --- */
.ph-action-group {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ph-btn-primary {
    background: var(--ph-accent);
    color: #000;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ph-ease);
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4);
}

.ph-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(212, 175, 55, 0.5);
}

.ph-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.ph-btn-content small {
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.8;
    text-transform: uppercase;
}

.ph-btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ph-text-white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ph-btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--ph-text-white);
}

/* --- FOOTER META (Reviews/Doctor) --- */
.ph-footer-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ph-review-stack {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ph-avatars {
    display: flex;
}

.ph-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--ph-bg-dark);
    margin-left: -10px;
}
.ph-avatars img:first-child { margin-left: 0; }

.ph-avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ph-bg-card);
    border: 2px solid var(--ph-bg-dark);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.ph-rating-block {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.ph-stars { color: var(--ph-accent); letter-spacing: 2px; }

.ph-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.1);
}

.ph-doctor-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-doc-icon {
    font-size: 1.5rem;
}

.ph-doc-info {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.ph-doc-info span { color: var(--ph-text-muted); font-size: 0.75rem; }

/* --- RIGHT COLUMN (VISUAL) --- */
.ph-product-stage {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-main-bottle {
    max-height: 550px;
    width: auto;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: ph-float 6s ease-in-out infinite;
}

.ph-ring-graphic {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.ph-ring-graphic::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Glass Floating Cards */
.ph-float-card {
    position: absolute;
    background: rgba(21, 27, 43, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: ph-float-delayed 7s ease-in-out infinite;
}

.ph-card-icon {
    background: var(--ph-accent);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-card-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.2;
}

.ph-card-1 { top: 20%; right: 10%; }
.ph-card-2 { bottom: 20%; left: 0%; animation-delay: 1s; }

/* --- ANIMATIONS --- */
@keyframes ph-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes ph-float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .ph-headline { font-size: 2.8rem; }
    .ph-product-stage { height: 450px; }
    .ph-main-bottle { max-height: 400px; }
}

@media (max-width: 768px) {
    .ph-grid { grid-template-columns: 1fr; gap: 40px; }
    .ph-content-col { order: 2; text-align: center; }
    .ph-visual-col { order: 1; }
    
    .ph-headline { font-size: 2.2rem; }
    .ph-trust-pill { margin: 0 auto 20px auto; }
    .ph-subhead { margin: 0 auto 30px auto; }
    .ph-benefits-grid { justify-content: center; flex-wrap: wrap; }
    .ph-action-group { justify-content: center; }
    
    .ph-footer-meta { flex-direction: column; align-items: center; }
    .ph-divider { width: 50px; height: 1px; margin: 10px 0; }
    
    .ph-product-stage { height: 350px; }
    .ph-main-bottle { max-height: 320px; }
    .ph-ring-graphic { width: 300px; height: 300px; }
    .ph-ring-graphic::before { width: 220px; height: 220px; }
    
    .ph-float-card { padding: 8px 16px; transform: scale(0.9); }
    .ph-card-1 { right: 0; }
}


/* Section Title Interactive Styles */
.section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background-color: var(--primary-dark);
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 163, 171, 0.2);
}

.section-title:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 163, 171, 0.3);
}

.overview-content .lead {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Content Text */
.content-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.review-item p{
color: #ffffff;
} 

/* Prostabliss Review Section */
.prostabliss-review-section {
    margin: 3rem 0;
    border: 1px solid #dbdbdb;
    border-radius: 0;
    padding: 30px;
}

.review-bottle img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-bottle img:hover {
    transform: scale(1.05);
}

.health-web-logo {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Section Styles */
.what-is-section,
.company-section,
.how-it-works-section,
.ingredients-section {
    background-color: var(--white);
    padding: 1rem 0 !important;
}


/* Ingredients Section */

/* ==================== INGREDIENTS SECTION ==================== */
.ingredients-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ingredients-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.ingredients-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Roboto Condensed', sans-serif;
}

.ingredients-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: left;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 30px;
}

.ingredient-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ingredient-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5aa56f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ingredient-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(105, 186, 125, 0.15);
    border-color: var(--primary-color);
}

.ingredient-item:hover::before {
    opacity: 1;
}

.ingredient-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5aa56f 100%);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    box-shadow: 0 4px 15px rgba(105, 186, 125, 0.3);
    transition: transform 0.3s ease;
}

.ingredient-item:hover .ingredient-number {
    transform: scale(1.1) rotate(5deg);
}

.ingredient-content {
    flex: 1;
}

.ingredient-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.3;
}

.ingredient-description {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
}

/* Ingredients CTA Banner */
.ingredients-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffb300 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.ingredients-cta-content p {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .ingredients-section {
        padding: 50px 20px;
    }

    .ingredients-header h2 {
        font-size: 34px;
    }

    .ingredients-intro {
        font-size: 18px;
    }

    .ingredient-item {
        padding: 25px;
        gap: 20px;
    }

    .ingredient-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .ingredient-title {
        font-size: 22px;
    }

    .ingredient-description {
        font-size: 17px;
    }

    .ingredients-cta-content h3 {
        font-size: 28px;
    }

    .ingredients-cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ingredients-section {
        padding: 40px 15px;
    }

    .ingredients-header {
        margin-bottom: 35px;
    }

    .ingredients-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .ingredients-intro {
        font-size: 17px;
    }

    .ingredients-list {
        gap: 20px;
    }

    .ingredient-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ingredient-item:hover {
        transform: translateY(-3px);
    }

    .ingredient-number {
        margin-bottom: 15px;
    }

    .ingredient-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .ingredient-description {
        font-size: 16px;
    }

    .ingredients-cta {
        padding: 30px 20px;
    }

    .ingredients-cta-content h3 {
        font-size: 24px;
    }

    .ingredients-cta-content p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .ingredients-section {
        padding: 30px 15px;
    }

    .ingredients-header h2 {
        font-size: 24px;
    }

    .ingredients-intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .ingredients-list {
        gap: 15px;
    }

    .ingredient-item {
        padding: 15px;
    }

    .ingredient-number {
        width: 45px;
        height: 45px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .ingredient-title {
        font-size: 18px;
    }

    .ingredient-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .ingredients-cta {
        padding: 20px 15px;
    }

    .ingredients-cta-content h3 {
        font-size: 20px;
    }

    .ingredients-cta-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* Pros and Cons Section */
.pros-cons-section {
    background-color: var(--white);
}

.pros-section,
.cons-section {
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
}

.pros-section {
    background-color: #f8f9fa;
    border-left: 4px solid #28a745;
}

.cons-section {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
}

.pros-title,
.cons-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 20px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.3;
}

.faq-questions {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.faq-item.active {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(105, 186, 125, 0.15);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    padding-right: 40px;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-q::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 0;
}

.faq-a.active {
    max-height: 1000px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #e0e0e0;
}

/* FAQ Banner Styles */
.faq-banners {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5aa56f 100%);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner-image {
    flex-shrink: 0;
}

.banner-image img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

.banner-content {
    flex: 1;
    text-align: center;
}

.banner-content h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.max-button-padding {
    padding: 15px 30px !important;
    font-size: 22px !important;
}

/* FAQ Answer Block */
.faq-answer-block {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
}

.faq-answer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.faq-text-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.faq-text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.answer-subheading {
    font-weight: 700 !important;
    color: #000 !important;
    margin-top: 20px !important;
}

.faq-image-content {
    text-align: center;
}

.checkout-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom Banner */
.faq-banner.bottom-banner {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bottom-banner h3 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.bottom-banner img {
    max-width: 400px;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

.regular-price {
    display: block;
    font-size: 20px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.regular-price.small {
    font-size: 18px;
}

.discounted {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .faq-answer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-image-content {
        order: -1;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-item {
        padding: 15px 20px;
    }

    .faq-q {
        font-size: 18px;
        padding-right: 35px;
    }

    .faq-q::after {
        font-size: 28px;
    }

    .faq-a {
        font-size: 16px;
    }

    .faq-banners {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .banner-image img {
        max-width: 200px;
    }

    .banner-content h3 {
        font-size: 24px;
    }

    .max-button-padding {
        padding: 12px 20px !important;
        font-size: 18px !important;
    }

    .faq-answer-block {
        padding: 30px 20px;
    }

    .faq-text-content h3 {
        font-size: 24px;
    }

    .faq-text-content p {
        font-size: 16px;
    }

    .bottom-banner {
        padding: 30px 20px;
    }

    .bottom-banner h3 {
        font-size: 24px;
    }

    .bottom-banner img {
        max-width: 250px;
    }

    .discounted {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .faq-heading {
        font-size: 26px;
    }

    .faq-item {
        padding: 12px 15px;
        margin-bottom: 12px;
    }

    .faq-q {
        font-size: 16px;
        padding-right: 30px;
    }

    .faq-q::after {
        font-size: 24px;
    }

    .faq-a {
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-banners {
        padding: 20px 15px;
    }

    .banner-image img {
        max-width: 150px;
    }

    .banner-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .max-button-padding {
        padding: 10px 15px !important;
        font-size: 16px !important;
    }

    .faq-answer-block {
        padding: 20px 15px;
    }

    .faq-text-content h3 {
        font-size: 20px;
    }

    .faq-text-content p {
        font-size: 15px;
    }

    .bottom-banner {
        padding: 20px 15px;
    }

    .bottom-banner h3 {
        font-size: 20px;
    }

    .bottom-banner img {
        max-width: 180px;
    }

    .regular-price.small {
        font-size: 16px;
    }

    .discounted {
        font-size: 20px;
    }
}


/* Research & Rating Section */
.research-rating-section {
    background-color: var(--white);
}

.rating-criteria {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.criteria-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.criteria-item:last-child {
    border-bottom: none;
}

.rating-score {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
}

/* ===== REVIEWS SECTION VARIABLES ===== */
:root {
    --rv-bg: #F8FAFC;
    --rv-card-bg: #FFFFFF;
    --rv-text-primary: #1E293B;
    --rv-text-secondary: #64748B;
    --rv-accent: #0EA5E9;
    --rv-verified: #10B981;
    --rv-star: #F59E0B;
    --rv-border: #E2E8F0;
    --rv-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --rv-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --rv-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ===== SECTION WRAPPER ===== */
.rv-showcase {
    background: var(--rv-bg);
    padding: 100px 20px;
    font-family: var(--rv-font);
    position: relative;
}

.rv-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.rv-header {
    text-align: center;
    margin-bottom: 64px;
}

.rv-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.rv-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--rv-text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.rv-description {
    font-size: 1.125rem;
    color: var(--rv-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== REVIEWS GRID ===== */
.rv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* ===== TESTIMONIAL CARD ===== */
.rv-card {
    background: var(--rv-card-bg);
    border: 1px solid var(--rv-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--rv-shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.rv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0EA5E9 0%, #10B981 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.rv-card:hover {
    box-shadow: var(--rv-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--rv-accent);
}

.rv-card:hover::before {
    transform: scaleX(1);
}

/* ===== CARD HEADER ===== */
.rv-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rv-border);
}

.rv-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rv-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rv-border);
    transition: transform 0.3s ease;
}

.rv-card:hover .rv-avatar {
    transform: scale(1.05);
}

.rv-identity {
    display: flex;
    flex-direction: column;
}

.rv-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0;
    line-height: 1.3;
}

.rv-location {
    font-size: 0.875rem;
    color: var(--rv-text-secondary);
    margin-top: 2px;
}

/* ===== META (VERIFIED + STARS) ===== */
.rv-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rv-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--rv-verified);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rv-check-icon {
    width: 18px;
    height: 18px;
}

.rv-stars {
    display: flex;
    gap: 2px;
    font-size: 1.1rem;
}

.rv-star {
    color: var(--rv-star);
}

.rv-star-empty {
    color: #CBD5E1;
}

/* ===== TESTIMONY TEXT ===== */
.rv-testimony {
    margin: 0;
}

.rv-testimony p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--rv-text-secondary);
    margin: 0;
}

/* ===== TRUST FOOTER ===== */
.rv-trust-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--rv-border);
}

.rv-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rv-text-primary);
}

.rv-trust-icon {
    width: 24px;
    height: 24px;
    color: var(--rv-accent);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .rv-showcase {
        padding: 60px 16px;
    }

    .rv-title {
        font-size: 2rem;
    }

    .rv-description {
        font-size: 1rem;
    }

    .rv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rv-card {
        padding: 24px;
    }

    .rv-trust-footer {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .rv-title {
        font-size: 1.75rem;
    }

    .rv-card-header {
        gap: 12px;
    }

    .rv-avatar {
        width: 56px;
        height: 56px;
    }

    .rv-name {
        font-size: 1rem;
    }

    .rv-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Final Verdict Section */
.final-verdict-section {
    background-color: var(--white);
}

/* Top Supplements Comparison Section */
.top-supplements-section {
    background-color: var(--white);
}

.supplements-comparison {
    margin-top: 2rem;
}

.comparison-title {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.comparison-title h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.supplement-card {
    text-align: center;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.supplement-card:hover {
    transform: translateY(-5px);
    
}

.product-image-wrapper {
    margin-bottom: 1rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.supplement-image {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
}

.product-name {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.comparison-content {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-row {
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.rating-row {
    background-color: #28a745;
    color: var(--white);
}

.ingredients-row {
    background-color: var(--white);
    padding: 1.5rem 0;
}

.benefits-row {
    background-color: #e8f7ff;
    padding: 1.5rem 0;
}

.satisfaction-row {
    background-color: var(--white);
    padding: 1.5rem 0;
}

.criteria-label {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
}

.rating-row .criteria-label {
    background-color: rgba(255, 255, 255, 0.2);
}

.ingredients-row .criteria-label,
.benefits-row .criteria-label,
.satisfaction-row .criteria-label {
    background-color: #f8f9fa;
    color: var(--white);
    border: 1px solid #e9ecef;
}

.rating-box {
    padding: 1rem;
    text-align: center;
}

.stars-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stars-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-number {
    margin-left: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.ingredients-box,
.benefits-box,
.satisfaction-box {
    padding: 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredients-box p,
.benefits-box p,
.satisfaction-box p {
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-dark);
}

/* Detailed Product Reviews Section */
.detailed-reviews-section {
    background-color: var(--white);
}

.product-review-card {
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    background-color: var(--white);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 188, 197, 0.1);
}

.card-header {
    background-color: var(--white);
    padding: 2rem;
    border-bottom: 2px solid var(--primary-color);
}

.rank-badge {
    text-align: center;
    position: relative;
}

.rank-image {
    max-width: 230px;
    height: auto;
}

.rank-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-title-review {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-align: center !important;
}

.product-image-review {
    text-align: center;
    margin-top: 1rem;
}

.product-image-review img {
    max-width: 400px;
    height: auto;
}

.grade-section {
    text-align: center;
    background-color: #e8f7ff;
    padding: 1.5rem;
    border-radius: 10px;
}

.grade-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.grade-score {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.grade-a {
    color: #28a745;
}

.grade-b {
    color: #ffc107;
}

.btn-learn-more {
    background-color: var(--primary-dark);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.card-content {
    padding: 2rem;
}

.section-heading {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pros-section-review .section-heading {
    color: #28a745;
}

.cons-section-review .section-heading {
    color: #dc3545;
}

.pros-list-review,
.cons-list-review {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list-review li,
.cons-list-review li {
    padding: 0.5rem 0;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.pros-list-review li:last-child,
.cons-list-review li:last-child {
    border-bottom: none;
}

.pros-list-review li {
    color: #28a745;
}

.cons-list-review li {
    color: #dc3545;
}

.bottom-line {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.bottom-line-title {
    color: var(--primary-color);
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bottom-line p {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.btn-learn-more-bottom {
    background-color: var(--primary-dark);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-learn-more-bottom:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Product Comparison Section */
.product-comparison-section {
    background-color: var(--white);
}

.intro-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: justify;
}

.evaluation-card {
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.prostabliss-card {
    background: linear-gradient(135deg, #e8f7ff 0%, #f0fbff 100%);
    border: 2px solid var(--primary-color);
}

.prostara-card {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
}

.product-image-eval {
    text-align: center;
    margin-bottom: 1rem;
}

.product-image-eval img {
    max-width: 250px;
    height: auto;
}

.product-name-eval {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.product-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.rating-items {
    margin-top: 1rem;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 188, 197, 0.2);
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.stars-eval {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.stars-eval i {
    color: var(--star-color);
    font-size: 1rem;
}

.stars-eval .far {
    color: var(--star-empty);
}

.alternative-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.overall-rating {
    text-align: center;
    margin-top: 1rem;
}

.progress-items {
    margin-top: 1rem;
}

.progress-item {
    margin-bottom: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.progress-percentage {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.prostara-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.prostara-description p {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.health-tips-section {
    background: linear-gradient(135deg, #e8f7ff 0%, #f0fbff 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.tips-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 0.75rem 0;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 188, 197, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.tips-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tips-list li:last-child {
    border-bottom: none;
}

.disclaimers {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.disclaimer-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.final-conclusion {
    margin-top: 2rem;
}

.final-conclusion p {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: var(--text-dark);
}

.link-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.link-text:hover {
    text-decoration: underline;
}

/* Footer Section */

/* ==================== FOOTER SECTION ==================== */
.footer-section {
    background-color: #ffffff;
    padding: 40px 20px 20px;
    border-top: 1px solid #e0e0e0;
}

/* Disclaimer Text */
.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-disclaimer p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: justify;
}

.footer-disclaimer p strong {
    font-weight: 700;
    color: #000;
}

/* Footer Bottom Section */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border: 2px solid #000;
    border-radius: 30px;
    background-color: #ffffff;
    text-align: center;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.social-icon:hover {
    background-color: #000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Links */
.footer-links {
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0 5px;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-links .separator {
    color: #666;
    margin: 0 8px;
}

/* Copyright */
.footer-copy {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .footer-section {
        padding: 30px 15px 15px;
    }

    .footer-disclaimer {
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .footer-disclaimer p {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }

    .footer-bottom {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .social-icons {
        gap: 12px;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-links {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.8;
    }

    .footer-links .separator {
        margin: 0 5px;
    }

    .footer-copy {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 25px 10px 10px;
    }

    .footer-disclaimer {
        padding: 0 5px;
        margin-bottom: 25px;
    }

    .footer-disclaimer p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 20px 12px;
        border-radius: 15px;
        border-width: 1.5px;
    }

    .social-icons {
        gap: 10px;
        margin-bottom: 18px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-width: 1.5px;
    }

    .footer-links {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links a {
        display: inline-block;
        padding: 2px 3px;
    }

    .footer-links .separator {
        margin: 0 3px;
    }

    .footer-copy {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ==================== ALTERNATIVE LAYOUTS ==================== */
/* Option 1: Stacked Links on Mobile */
@media (max-width: 380px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-links .separator {
        display: none;
    }

    .footer-links a {
        display: block;
    }
}

/* Option 2: Smaller Social Icons on Very Small Screens */
@media (max-width: 360px) {
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .social-icons {
        gap: 8px;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .header-section {
        position: sticky;
    }
    
    .promo-banner {
        margin-top: 0;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .navbar-nav {
        gap: 0;
        text-align: center;
        margin: 1rem 0 !important;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 0 !important;
    }
    
    .navbar-cta {
        margin: 1rem 0 0 0;
        text-align: center;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .rating-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .advertising-disclosure {
        padding: 1rem;
    }
    
    .promo-title {
        font-size: 1rem;
    }
    
    /* New sections responsive */
    .review-graphic {
        margin-bottom: 2rem;
        padding: 2rem 1rem !important;
    }
    
    .review-title {
        font-size: 1.5rem;
    }
    
    .ingredient-item {
        padding: 1rem;
    }
    
    .ingredient-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .ingredient-item p {
        padding-left: 0;
    }
    
    .content-text p {
        text-align: left;
    }
    
    /* Pros and Cons responsive */
    .pros-section,
    .cons-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .pros-title,
    .cons-title {
        font-size: 1.1rem;
    }
    
    .pros-list li,
    .cons-list li {
        font-size: 1.2rem;
    }
    
    /* FAQ responsive */

    
    /* Rating criteria responsive */
    .rating-criteria {
        padding: 1rem;
    }
    
    .criteria-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Review items responsive */
    .review-item {
        padding: 1rem;
    }
    
    /* Top supplements comparison responsive */
    .comparison-title h3 {
        font-size: 1.2rem;
    }
    
    .supplement-card {
        margin-bottom: 1.5rem;
    }
    
    .product-image-wrapper {
        height: 150px;
    }
    
    .supplement-image {
        max-height: 130px;
    }
    
    .product-name {
        font-size: 1.8rem;
    }
    
    .comparison-row {
        margin-bottom: 1rem;
    }
    
    .criteria-label {
        padding: 0.75rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .rating-box,
    .ingredients-box,
    .benefits-box,
    .satisfaction-box {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .stars-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rating-number {
        margin-left: 0;
        font-size: 1rem;
    }
    
    .ingredients-box p,
    .benefits-box p,
    .satisfaction-box p {
        font-size: 0.85rem;
    }
    
    /* Detailed review cards responsive */
    .card-header {
        padding: 1rem;
    }
    
    .product-title-review {
        font-size: 1.4rem;
    }
    
    .product-subtitle {
        font-size: 0.9rem;
    }
    
    .product-image-review img {
        max-width: 200px;
    }
    
    .grade-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .grade-score {
        font-size: 2rem;
    }
    
    .btn-learn-more {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .section-heading {
        font-size: 1.1rem;
    }
    
    .pros-list-review li,
    .cons-list-review li {
        font-size: 0.85rem;
    }
    
    .bottom-line {
        padding: 1rem;
    }
    
    .bottom-line-title {
        font-size: 1.1rem;
    }
    
    .bottom-line p {
        font-size: 1.2rem;
    }
    
    .btn-learn-more-bottom {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Product comparison responsive */
    .evaluation-card {
        padding: 1rem;
    }
    
    .product-name-eval {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .product-tagline {
        text-align: center;
    }
    
    .product-image-eval img {
        max-width: 220px;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating-label {
        font-size: 0.85rem;
    }
    
    .alternative-title {
        font-size: 1.2rem;
    }
    
    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .progress-label {
        font-size: 0.85rem;
    }
    
    .health-tips-section {
        padding: 1rem;
    }
    
    .tips-title {
        font-size: 1.1rem;
    }
    
    .tips-list li {
        font-size: 0.9rem;
    }
    
    .disclaimers {
        padding: 1rem;
    }
    
    .disclaimer-text {
        font-size: 1rem;
    }
    
    .final-conclusion p {
        font-size: 1.2rem;
        text-align: left;
    }
    
    /* Footer responsive */
    .footer-section {
        padding: 2rem 0 0 0;
    }
    
    .logo-text-footer {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top i {
        font-size: 0.9rem;
    }
    
    .back-to-top span {
        font-size: 0.55rem;
    }
    
    .disclaimer-title {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .copyright-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 1.75rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .promo-title {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
        padding: 0.75rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn-cta:focus,
.nav-link:focus,
.disclosure-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading Animation */
.product-image {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Top Supplements Comparison Section Styles */

/* Special Header with Triangle Design */
.special-header-wrapper {
    margin-bottom: 4rem;
    position: relative;
}

.triangle-background {
    background: var(--primary-dark);
    position: relative;
    padding: 4rem 2rem 6rem 2rem;
    margin: 0 -15px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.triangle-background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 60px solid #00BCC5;
    transform: translateY(100%);
}

.triangle-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.triangle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.special-section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    line-height: 0.9;
    letter-spacing: -2px;
}

.special-section-title .title-line {
    display: block;
    position: relative;
}

.special-section-title .title-line:nth-child(2) {
    font-size: 4rem;
    color: #FFE066;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.header-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Enhanced Product Cards */
.enhanced-supplement-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    height: 100%;
    min-height: 500px;
}

.enhanced-supplement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,188,197,0.2);
}

.winner-card {
    border: 3px solid #FFD700;
    background: linear-gradient(145deg, #fffef7 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Badge Styles */
.winner-badge, .runner-up-badge, .third-place-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 3;
}

.winner-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
}

.runner-up-badge {
    background: linear-gradient(45deg, #C0C0C0, #999);
    color: white;
}

.third-place-badge {
    background: linear-gradient(45deg, #CD7F32, #A0522D);
    color: white;
}

/* Product Image Wrapper */
.product-image-wrapper {
    margin: 2rem 0 1.5rem 0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.winner-card .product-image-wrapper {
    background: linear-gradient(145deg, #fff9e6, #fff3d3);
}

.supplement-image {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.enhanced-supplement-card:hover .supplement-image {
    transform: scale(1.1);
}

/* Product Name */
.product-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.0rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Product Rating */
.product-rating {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars-display {
    display: flex;
    gap: 0.2rem;
}

.stars-display i {
    color: #FFD700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.rating-text {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

/* Product Highlights */
.product-highlights {
    margin-bottom: 2rem;
}

.product-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    flex-wrap: wrap;
}

.product-highlights li {
    padding: 0.5rem 0;
    font-size: 1.2rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.product-highlights li i {
    color: #28a745;
    font-size: 0.8rem;
    width: 12px;
}

/* Enhanced CTA Buttons */
.cta-section {
    margin-top: auto;
}

.enhanced-cta-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.primary-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: rgb(0, 0, 0);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.primary-cta:hover {
    background: linear-gradient(45deg, #FFA500, #FFA500);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.secondary-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: rgb(0, 0, 0);
    box-shadow: 0 6px 20px rgba(0, 188, 197, 0.4);
}

.secondary-cta:hover {
    background: linear-gradient(45deg, #FFA500, #FFA500);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 197, 0.6);
}

.tertiary-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: rgb(0, 0, 0);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.tertiary-cta:hover {
    background: linear-gradient(45deg, #FFA500, #FFA500);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.6);
}

.cta-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    font-style: italic;
    text-align: center !important;
}

/* Enhanced Comparison Table */
.enhanced-comparison-table {
    margin-top: 4rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.table-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
}

.table-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.table-subtitle {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 1.1rem;
    text-align: center !important;
}

.comparison-content {
    padding: 0;
}

.comparison-row {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.comparison-row:hover {
    background-color: #f8f9fa;
}

.comparison-row:last-child {
    border-bottom: none;
}

.criteria-label {
    background: linear-gradient(135deg, #495057, #343a40);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.criteria-label i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #04e923;
}

.ingredients-box, .benefits-box, .satisfaction-box {
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.winner-content {
    background: linear-gradient(145deg, #fff9e6, #fff3d3);
    border-left: 4px solid #FFD700;
    position: relative;
}

.winner-content::before {
    content: '👑';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
}

.ingredients-box p, .benefits-box p, .satisfaction-box p {
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #2c2c2c;
}

/* Bottom CTA Section */
.bottom-cta-section {
    margin-top: 2rem;
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 1rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.bottom-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: center !important;
}

.final-cta-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    margin-bottom: 2rem;
}

.final-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.final-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.badge-item i {
    font-size: 2rem;
    color: #FFD700;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .special-section-title {
        font-size: 2.5rem;
    }
    
    .special-section-title .title-line:nth-child(2) {
        font-size: 3rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .triangle-background {
        padding: 3rem 1rem 4rem 1rem;
        margin: 0 -10px;
    }
    
    .triangle-background::before {
        border-top: 40px solid #00BCC5;
    }
    
    .enhanced-supplement-card {
        padding: 1.5rem 1rem;
        min-height: 450px;
    }
    
    .product-image-wrapper {
        height: 150px;
        margin: 1.5rem 0 1rem 0;
    }
    
    .supplement-image {
        max-height: 150px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-highlights li {
        font-size: 1.2rem;
    }
    
    .enhanced-cta-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .criteria-label {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .criteria-label i {
        font-size: 1.2rem;
    }
    
    .ingredients-box, .benefits-box, .satisfaction-box {
        padding: 1.5rem 1rem;
    }
    
    .ingredients-box p, .benefits-box p, .satisfaction-box p {
        font-size: 0.9rem;
    }
    
    .table-title {
        font-size: 1.5rem;
    }
    
    .table-subtitle {
        font-size: 1rem;
    }
    
    .table-header {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .final-cta-btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .guarantee-badges {
        gap: 1rem;
    }
    
    .badge-item i {
        font-size: 1.5rem;
    }
    
    .badge-item span {
        font-size: 0.8rem;
    }
    
    .bottom-cta-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .special-section-title {
        font-size: 2rem;
    }
    
    .special-section-title .title-line:nth-child(2) {
        font-size: 2.5rem;
    }
    
    .triangle-background {
        padding: 2rem 0.5rem 3rem 0.5rem;
        margin: 0 -5px;
    }
    
    .enhanced-supplement-card {
        margin-bottom: 2rem;
        min-height: 400px;
    }
    
    .comparison-row {
        margin-bottom: 1rem;
    }
    
    .criteria-label {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .ingredients-box, .benefits-box, .satisfaction-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .final-cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .guarantee-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Additional animations and effects */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.winner-badge {
    animation: pulse 2s infinite;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enhanced-supplement-card {
    animation: slideInUp 0.6s ease-out;
}

.enhanced-supplement-card:nth-child(1) { animation-delay: 0.1s; }
.enhanced-supplement-card:nth-child(2) { animation-delay: 0.2s; }
.enhanced-supplement-card:nth-child(3) { animation-delay: 0.3s; }

/* Hover effects for interactive elements */
.enhanced-cta-btn {
    position: relative;
    overflow: hidden;
}

.enhanced-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.enhanced-cta-btn:hover::before {
    left: 100%;
}

/* Focus states for accessibility */
.enhanced-cta-btn:focus,
.final-cta-btn:focus {
    outline: 3px solid rgba(0, 188, 197, 0.5);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .triangle-background,
    .bottom-cta-section {
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    .enhanced-cta-btn,
    .final-cta-btn {
        border: 2px solid #333 !important;
        background: white !important;
        color: #333 !important;
    }
}

/* Countdown Timer Styles */
.countdown-timer-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0 3rem 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.countdown-timer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: timerShimmer 3s infinite;
}

@keyframes timerShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.timer-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
}

.timer-alert i {
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-unit {
    background: linear-gradient(145deg, #FFD700, #FFA500);
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    min-width: 80px;
    position: relative;
    overflow: hidden;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

.time-number {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.time-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.time-separator {
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.timer-warning {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

/* Urgent state when less than 2 minutes */
.countdown-timer.urgent .time-unit {
    background: linear-gradient(145deg, #FF4444, #CC0000);
    color: white;
    animation: urgentPulse 0.5s infinite alternate;
}

@keyframes urgentPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.countdown-timer.urgent .timer-alert {
    color: #FF4444;
}

.countdown-timer.urgent .time-separator {
    color: #FF4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-timer-wrapper {
        padding: 1rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .time-unit {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .timer-alert {
        font-size: 1rem;
    }
    
    .timer-warning {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.5rem 0.75rem;
        min-width: 50px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
}

/* Add to your stylesheet */
.urgent {
    color: #ff0000;
    font-weight: bold;
}

@keyframes urgentPulse {
    from { opacity: 1; }
    to { opacity: 0.7; }
}




