/* 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: #24252A;
    --primary-dark: #24252A;
    --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: 2px 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 */
.product-review {
    background-color: var(--white);
}

.product-image-container {
    text-align: center;
    padding: 1rem;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 10px;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 1.25rem;
    color: var(--star-color);
}

.stars .far {
    color: var(--star-empty);
}

.rating-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Fact Check Badge */
.fact-check-badge .badge {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Review Meta */
.review-meta {
    color: var(--text-gray);
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
}

.review-meta strong {
    color: var(--text-dark);
    font-weight: 700;
}

.last-updated {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Advertising Disclosure */
.advertising-disclosure {
    background-color: var(--light-gray);
    border: 1px dashed var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.disclosure-title {
    color: var(--primary-color);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.disclosure-content p {
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.disclosure-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.disclosure-link:hover {
    text-decoration: underline;
}

/* Section Divider */
.section-divider {
    border: none;
    height: 1px;
    background-color: #cccccc;
    margin: 0;
    opacity: 0.5;
}

/* Review Graphic Fix */
.review-graphic {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    padding: 3rem 2rem !important;
    transform: skew(-10deg);
    box-shadow: 0 15px 35px rgba(0, 188, 197, 0.2);
}

.review-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    transform: skew(10deg);
} 

.review-divider { 
    border: none; 
    height: 1px;
    background-color: black;
    margin: 3rem 0;
}

/* Overview Section */
.overview-section {
    background-color: var(--white);
}

/* 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: 3rem 0 !important;
}

/* Ingredients Section */
.ingredient-item {
    padding: 1rem 0;
    border-left: none;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 1rem;
    transition: none;
    border-bottom: 1px solid var(--primary-dark);
}

.ingredient-item:hover {
    box-shadow: none;
    transform: none;
}

.ingredient-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
}

.ingredient-header .fas.fa-check-circle {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #28a745;
    flex-shrink: 0;
}

.ingredient-header strong {
    font-weight: 600;
    line-height: 1.5rem;
}

.ingredient-item p {
    margin: 0;
    font-family: 'Jost', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-left: 2.25rem;
    font-size: 1.2rem;
}

.ingredient-summary {
    background-color: transparent;
    padding: 1rem 0;
    border-radius: 0;
    border: none;
    font-family: 'Jost', sans-serif;
    font-style: normal;
    color: var(--text-dark);
    margin-top: 1rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 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 {
    background-color: var(--white);
}

.faq-item {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: var(--primary-dark);
    transform: translateX(5px);
}

.faq-question {
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin: 0;
}

.faq-question i {
    color: var(--white) !important;
}

/* 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 {
    background-color: var(--white);
}

.review-item {
    background-color: #000000;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.review-item p {
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-style: italic;
    line-height: 1.6;
}

.review-item strong {
    color: var(--star-color);
    font-weight: 700;
}

/* 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 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 0 0;
    margin-top: 4rem;
    position: relative;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.logo-text-footer {
    color: var(--white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
}

.logo-text-footer .health {
    font-weight: 300;
}

.logo-text-footer .web {
    font-weight: 700;
    font-style: italic;
}

.logo-text-footer .magazine {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: -2px;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.back-to-top i {
    font-size: 1rem;
    margin-bottom: 2px;
}

.back-to-top span {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-section {
    margin-bottom: 1.5rem;
}

.disclaimer-title {
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.copyright-section {
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

/* 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 */
    .faq-item {
        padding: 0.75rem 1rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* 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: 4rem;
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 3rem 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; }
}

