/* 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: #C32D77;
    --primary-dark: #C32D77;
    --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 */
/* --- CSS VARIABLES & RESET --- */
:root {
    --clr-bg: #F9F9F7;            /* Alabaster */
    --clr-surface: #FFFFFF;       /* Pure White */
    --clr-primary: #1A1A1A;       /* Onyx */
    --clr-secondary: #2C4C3B;     /* Deep Forest Green */
    --clr-accent: #D4AF37;        /* Muted Gold */
    --clr-accent-hover: #B5952F;
    --clr-text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    --shadow-soft: 0 10px 40px -10px rgba(44, 76, 59, 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Base Styles */
.hero-premium {
    background-color: var(--clr-bg);
    font-family: var(--font-body);
    color: var(--clr-primary);
    overflow: hidden; /* Prevent floating elements overflow */
    padding: 2rem 1rem;
    position: relative;
}

.hero-premium__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* --- LEFT COLUMN: CONTENT --- */
.hero-premium__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

/* Trust Pill */
.hero-premium__badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(44, 76, 59, 0.08); /* Transparent Green */
    color: var(--clr-secondary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Typography */
.hero-premium__headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.15;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.hero-premium__headline .text-highlight {
    color: var(--clr-accent);
    display: block; /* Stacks on its own line */
    font-weight: 700;
}

.hero-premium__headline .text-italic {
    display: block;
    font-size: 0.6em; /* Smaller subtitle look */
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-premium__description {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Social Proof */
.hero-premium__social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.avatars {
    display: flex;
}
.avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--clr-bg);
    margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--clr-bg);
    margin-left: -12px;
}

.rating-text span { font-size: 0.9rem; }
.rating-text strong { color: var(--clr-secondary); }
.stars { color: #F5C518; font-size: 0.8rem; margin-bottom: 2px; }

/* Buttons */
.hero-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.btn-gold-primary {
    background-color: var(--clr-accent);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s ease, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    text-align: center;
}

.btn-gold-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
}

.btn-text { font-weight: 700; font-size: 1rem; }
.btn-sub { font-size: 0.75rem; opacity: 0.9; font-weight: 500; }

.btn-link-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-link-secondary:hover { opacity: 0.7; }
.play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
}

/* Feature Grid */
.hero-premium__features {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-secondary);
}
.feature-item i { color: var(--clr-accent); }

/* Medical Disclaimer */
.hero-premium__medical {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- RIGHT COLUMN: VISUAL --- */
.hero-premium__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Abstract Background Circle */
.visual-circle-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #EAECE9 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-premium__product-img {
    width: auto;
    max-height: 650px;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

/* Glass Floating Badges */
.glass-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 2;
    animation: floatDelayed 7s ease-in-out infinite;
}

.glass-badge .icon-box {
    width: 32px;
    height: 32px;
    background: var(--clr-secondary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.glass-badge .text-box {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    line-height: 1.2;
}

.badge-shipping { top: 10%; right: 5%; }
.badge-guarantee { bottom: 15%; left: 0%; }

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes floatDelayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (min-width: 992px) {
    .hero-premium__container {
        grid-template-columns: 1.2fr 1fr; /* Text wider than image */
        padding: 0rem 0rem;
    }
    
    .hero-premium__headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-premium__container {
        text-align: center;
    }

    .hero-premium__content {
        align-items: center;
        order: 2; /* Image on top for mobile? Or Text? Usually Image top for brands */
    }
    
    /* Reordering for Mobile: Image First usually works well for products, 
       BUT for conversion, Headline -> Image -> CTA is standard. 
       Let's stick to standard flow: Content First */
    
    .hero-premium__content { order: 1; }
    .hero-premium__visual { order: 2; margin-top: -20px; }
    
    .hero-premium__headline { font-size: 2.2rem; }
    .hero-premium__description { margin: 0 auto 2rem; }
    
    .hero-premium__actions { justify-content: center; }
    .hero-premium__features { justify-content: center; }

    .hero-premium__product-img { max-height: 300px; }
    .visual-circle-bg { width: 280px; height: 280px; }
    
    .glass-badge { transform: scale(0.9); }
    .badge-shipping { top: 0; right: 0; }
    .badge-guarantee { bottom: 0; left: 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 STYLES --- */
.science-grid {
    background-color: #FFFFFF; /* Clean contrast against hero's Alabaster */
    padding: 6rem 1rem;
    position: relative;
    font-family: var(--font-body);
}

.science-grid__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.science-grid__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.header-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.header-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.header-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* Grid Layout */
.science-grid__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Card Styling */
.science-card {
    background: #FAFAFA;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.science-card:hover {
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(44, 76, 59, 0.1);
}

.science-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-index {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(0,0,0,0.05);
    font-weight: 700;
    line-height: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--clr-bg); /* Alabaster from previous section */
    color: var(--clr-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.science-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}

/* Badges */
.science-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.badge-neutral {
    background: #F0F0F0;
    color: #666;
}

.badge-warning {
    background: #FEF3C7;
    color: #92400E;
}

.science-card__text {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex-grow: 1; /* Pushes content to fill height uniformly */
}

.science-card__text strong {
    color: var(--clr-secondary);
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .science-grid { padding: 4rem 1rem; }
    
    .header-title { font-size: 2rem; }
    
    .science-grid__layout {
        grid-template-columns: 1fr; /* Stack cards */
    }
    
    .science-card { padding: 2rem; }
}


/* 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);
}

/* Customer Reviews Section */
/* ==================== CUSTOMER REVIEWS SECTION ==================== */
.reviews-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.reviews-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.reviews-subtitle {
    font-size: 22px;
    color: #666;
    font-weight: 500;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.reviewer-profile {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.reviewer-image {
    flex-shrink: 0;
}

.reviewer-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.reviewer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.verified-badge svg {
    color: #2e7d32;
}

.reviewer-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating svg {
    fill: var(--accent-color);
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 15px;
    }

    .reviews-header h2 {
        font-size: 32px;
    }

    .reviews-subtitle {
        font-size: 18px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .reviewer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reviewer-info {
        align-items: center;
    }

    .reviewer-image img {
        width: 80px;
        height: 80px;
    }

    .reviewer-name {
        font-size: 18px;
    }

    .review-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-header h2 {
        font-size: 28px;
    }

    .reviews-subtitle {
        font-size: 16px;
    }

    .review-card {
        padding: 15px;
    }

    .reviewer-image img {
        width: 70px;
        height: 70px;
    }

    .verified-badge {
        font-size: 12px;
        padding: 4px 10px;
    }

    .reviewer-name {
        font-size: 16px;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .rating svg {
        width: 16px;
        height: 16px;
    }
}

/* 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; }
}




