/* 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: #189825;
    --primary-dark: #189825;
    --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 */
/* =============== HERO (premium) =============== */
.prm-hero{
  --prm-bg0:#0b1220;
  --prm-bg1:#0a1630;
  --prm-surface: rgba(255,255,255,.06);
  --prm-surface2: rgba(255,255,255,.10);
  --prm-text:#eaf0ff;
  --prm-muted: rgba(234,240,255,.78);
  --prm-line: rgba(255,255,255,.14);
  --prm-accent:#6ee7ff;
  --prm-accent2:#a78bfa;
  --prm-good:#34d399;

  position: relative;
  isolation: isolate;
  color: var(--prm-text);
  background:
    radial-gradient(900px 420px at 20% 30%, rgba(110,231,255,.16), transparent 60%),
    radial-gradient(900px 420px at 80% 20%, rgba(167,139,250,.16), transparent 60%),
    linear-gradient(180deg, var(--prm-bg1), var(--prm-bg0));
  overflow: hidden;
}

.prm-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 240px at 30% 80%, rgba(52,211,153,.10), transparent 55%),
    radial-gradient(700px 300px at 90% 70%, rgba(110,231,255,.10), transparent 55%);
  filter: blur(0px);
  pointer-events:none;
  z-index:-1;
}

.prm-hero__container{
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(2.25rem, 3.8vw, 4rem) 0;
}

.prm-hero__grid{
  display: grid;
  gap: clamp(1.25rem, 2.6vw, 2.25rem);
  align-items: start;
}

/* Desktop layout: media left, copy right */
@media (min-width: 900px){
  .prm-hero__grid{
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas:
      "media header"
      "media body";
    align-items: center;
  }
  .prm-hero__media{ grid-area: media; }
  .prm-hero__header{ grid-area: header; }
  .prm-hero__body{ grid-area: body; }
}

/* Mobile layout: headline first, then image, then body */
@media (max-width: 899px){
  .prm-hero__grid{
    grid-template-columns: 1fr;
  }
  .prm-hero__media{ order: 2; }
  .prm-hero__header{ order: 1; }
  .prm-hero__body{ order: 3; }
}

/* Header */
.prm-hero__trust{
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.prm-hero__trustItem{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .7rem;
  border: 1px solid var(--prm-line);
  background: linear-gradient(180deg, var(--prm-surface), transparent);
  border-radius: 999px;
  font-size: .92rem;
  color: var(--prm-muted);
  backdrop-filter: blur(10px);
}

.prm-hero__trustItem i{ color: var(--prm-good); }

.prm-hero__title{
  margin: 0;
  letter-spacing: -0.02em;
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.1;
}

.prm-hero__titleAccent{
  display: inline-block;
  padding: .12em .32em;
  margin-inline: .15em;
  border-radius: .65rem;
  background: linear-gradient(90deg, rgba(110,231,255,.25), rgba(167,139,250,.25));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

/* Media */
.prm-hero__media{ position: relative; }

.prm-hero__mediaCard{
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--prm-line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding: clamp(1rem, 2.2vw, 1.4rem);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.prm-hero__cert{
  position: absolute;
  top: .9rem;
  left: .9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--prm-line);
  background: rgba(10, 18, 32, .6);
  backdrop-filter: blur(10px);
  font-size: .92rem;
}

.prm-hero__cert i{ color: var(--prm-accent); }

.prm-hero__product{
  display: block;
  width: min(700px, 100%);
  height: auto;
  margin: 1.3rem auto .25rem auto;
  transform: translateZ(0);
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.45));
}

.prm-hero__halo{
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 70%;
  background: radial-gradient(circle at 50% 20%, rgba(110,231,255,.35), transparent 55%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

/* Mobile chips */
.prm-hero__chips{
  list-style: none;
  padding: 0;
  margin: .9rem 0 0 0;
  display: none;
  gap: .6rem;
  flex-wrap: wrap;
}

@media (max-width: 899px){
  .prm-hero__chips{ display: flex; }
}

.prm-hero__chip{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--prm-line);
  background: rgba(255,255,255,.06);
  color: var(--prm-muted);
  font-size: .95rem;
}

.prm-hero__chip i{ color: var(--prm-accent); }

/* Body */
.prm-hero__lead{
  margin: 0 0 1.1rem 0;
  color: var(--prm-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 62ch;
}

.prm-hero__rating{
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1rem;
  border: 1px solid var(--prm-line);
  background: rgba(255,255,255,.04);
  border-radius: 1rem;
  margin: 0 0 1.1rem 0;
}

.prm-hero__stars{
  display: inline-flex;
  gap: .22rem;
  color: #ffd166;
}

.prm-hero__ratingText{
  margin: 0;
  color: var(--prm-muted);
}

.prm-hero__ratingScore{ color: var(--prm-text); }
.prm-hero__ratingMeta{ opacity: .9; margin-left: .35rem; }

/* Benefits */
.prm-hero__benefits{
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

@media (max-width: 620px){
  .prm-hero__benefits{ grid-template-columns: 1fr; }
}

.prm-hero__benefit{
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem .95rem;
  border-radius: 1rem;
  border: 1px solid var(--prm-line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color: var(--prm-muted);
}

.prm-hero__benefit i{ color: var(--prm-accent2); }

/* CTAs */
.prm-hero__actions{
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
  margin: 0 0 1.25rem 0;
}

@media (min-width: 520px){
  .prm-hero__actions{ grid-template-columns: 1fr 1fr; }
}

.prm-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-decoration: none;
  border-radius: 1rem;
  padding: .95rem 1.05rem;
  border: 1px solid var(--prm-line);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  will-change: transform;
}

.prm-hero__btn:focus-visible{
  outline: 3px solid rgba(110,231,255,.45);
  outline-offset: 3px;
}

.prm-hero__btn--primary{
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(110,231,255,.22), rgba(167,139,250,.22));
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.prm-hero__btnTop{ font-weight: 700; color: var(--prm-text); }
.prm-hero__btnSub{ font-size: .92rem; color: var(--prm-muted); }

.prm-hero__btn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--prm-text);
}

.prm-hero__btn:hover{ transform: translateY(-2px); }
.prm-hero__btn--primary:hover{ box-shadow: 0 28px 90px rgba(0,0,0,.45); }
.prm-hero__btn--ghost:hover{ background: rgba(255,255,255,.07); }

/* Proof */
.prm-hero__proof{
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem;
  margin: 0 0 1rem 0;
  border: 1px solid var(--prm-line);
  background: rgba(255,255,255,.04);
  border-radius: 1rem;
}

.prm-hero__faces{
  display: inline-flex;
  align-items: center;
}

.prm-hero__face{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.22);
  margin-left: -10px;
  background: rgba(255,255,255,.08);
}

.prm-hero__face:first-child{ margin-left: 0; }

.prm-hero__faceMore{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 40px;
  margin-left: -10px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.22);
  background: rgba(11,18,32,.6);
  font-weight: 700;
  color: var(--prm-text);
  font-size: .92rem;
}

.prm-hero__proofText p{ margin: 0; }
.prm-hero__proofSub{ color: var(--prm-muted); margin-top: .15rem; }

/* Review badge */
.prm-hero__review{
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid var(--prm-line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius: 1rem;
}

.prm-hero__review i{ color: var(--prm-accent); font-size: 1.1rem; }
.prm-hero__reviewLabel{ display: block; color: var(--prm-muted); font-size: .92rem; }
.prm-hero__reviewName{ display: block; }

/* Desktop floating badges */
.prm-hero__float{
  position: absolute;
  display: none;
  align-items: center;
  gap: .55rem;
  padding: .65rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--prm-line);
  background: rgba(10, 18, 32, .55);
  color: var(--prm-muted);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.prm-hero__float i{ color: var(--prm-accent); }

@media (min-width: 900px){
  .prm-hero__float{ display: inline-flex; }
  .prm-hero__float--one{ top: 18%; left: 6%; }
  .prm-hero__float--two{ top: 58%; left: 8%; }
}

/* Lightweight entrance motion */
.prm-hero__header,
.prm-hero__mediaCard,
.prm-hero__body{
  animation: prmFadeUp .55s ease both;
}

.prm-hero__mediaCard{ animation-delay: .05s; }
.prm-hero__header{ animation-delay: .08s; }
.prm-hero__body{ animation-delay: .12s; }

@keyframes prmFadeUp{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce){
  .prm-hero *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


/* Section Title Interactive Styles */
.section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background-color: var(--primary-dark);
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 163, 171, 0.2);
}

.section-title:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 163, 171, 0.3);
}

.overview-content .lead {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Content Text */
.content-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.review-item p{
color: #ffffff;
} 

/* Prostabliss Review Section */
.prostabliss-review-section {
    margin: 3rem 0;
    border: 1px solid #dbdbdb;
    border-radius: 0;
    padding: 30px;
}

.review-bottle img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-bottle img:hover {
    transform: scale(1.05);
}

.health-web-logo {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Section Styles */
.what-is-section,
.company-section,
.how-it-works-section,
.ingredients-section {
    background-color: var(--white);
    padding: 1rem 0 !important;
}


/* Ingredients Section */

/* ==================== INGREDIENTS SECTION ==================== */
.ingredients-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ingredients-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.ingredients-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Roboto Condensed', sans-serif;
}

.ingredients-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: left;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 30px;
}

.ingredient-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ingredient-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5aa56f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ingredient-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(105, 186, 125, 0.15);
    border-color: var(--primary-color);
}

.ingredient-item:hover::before {
    opacity: 1;
}

.ingredient-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5aa56f 100%);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    box-shadow: 0 4px 15px rgba(105, 186, 125, 0.3);
    transition: transform 0.3s ease;
}

.ingredient-item:hover .ingredient-number {
    transform: scale(1.1) rotate(5deg);
}

.ingredient-content {
    flex: 1;
}

.ingredient-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.3;
}

.ingredient-description {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
}

/* Ingredients CTA Banner */
.ingredients-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffb300 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.ingredients-cta-content p {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .ingredients-section {
        padding: 50px 20px;
    }

    .ingredients-header h2 {
        font-size: 34px;
    }

    .ingredients-intro {
        font-size: 18px;
    }

    .ingredient-item {
        padding: 25px;
        gap: 20px;
    }

    .ingredient-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .ingredient-title {
        font-size: 22px;
    }

    .ingredient-description {
        font-size: 17px;
    }

    .ingredients-cta-content h3 {
        font-size: 28px;
    }

    .ingredients-cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ingredients-section {
        padding: 40px 15px;
    }

    .ingredients-header {
        margin-bottom: 35px;
    }

    .ingredients-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .ingredients-intro {
        font-size: 17px;
    }

    .ingredients-list {
        gap: 20px;
    }

    .ingredient-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ingredient-item:hover {
        transform: translateY(-3px);
    }

    .ingredient-number {
        margin-bottom: 15px;
    }

    .ingredient-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .ingredient-description {
        font-size: 16px;
    }

    .ingredients-cta {
        padding: 30px 20px;
    }

    .ingredients-cta-content h3 {
        font-size: 24px;
    }

    .ingredients-cta-content p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .ingredients-section {
        padding: 30px 15px;
    }

    .ingredients-header h2 {
        font-size: 24px;
    }

    .ingredients-intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .ingredients-list {
        gap: 15px;
    }

    .ingredient-item {
        padding: 15px;
    }

    .ingredient-number {
        width: 45px;
        height: 45px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .ingredient-title {
        font-size: 18px;
    }

    .ingredient-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .ingredients-cta {
        padding: 20px 15px;
    }

    .ingredients-cta-content h3 {
        font-size: 20px;
    }

    .ingredients-cta-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* Pros and Cons Section */
.pros-cons-section {
    background-color: var(--white);
}

.pros-section,
.cons-section {
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
}

.pros-section {
    background-color: #f8f9fa;
    border-left: 4px solid #28a745;
}

.cons-section {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
}

.pros-title,
.cons-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 20px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.3;
}

.faq-questions {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.faq-item.active {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(105, 186, 125, 0.15);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    padding-right: 40px;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-q::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 0;
}

.faq-a.active {
    max-height: 1000px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #e0e0e0;
}

/* FAQ Banner Styles */
.faq-banners {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5aa56f 100%);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner-image {
    flex-shrink: 0;
}

.banner-image img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

.banner-content {
    flex: 1;
    text-align: center;
}

.banner-content h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.max-button-padding {
    padding: 15px 30px !important;
    font-size: 22px !important;
}

/* FAQ Answer Block */
.faq-answer-block {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
}

.faq-answer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.faq-text-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.faq-text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.answer-subheading {
    font-weight: 700 !important;
    color: #000 !important;
    margin-top: 20px !important;
}

.faq-image-content {
    text-align: center;
}

.checkout-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom Banner */
.faq-banner.bottom-banner {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bottom-banner h3 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.bottom-banner img {
    max-width: 400px;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

.regular-price {
    display: block;
    font-size: 20px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.regular-price.small {
    font-size: 18px;
}

.discounted {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .faq-answer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-image-content {
        order: -1;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-item {
        padding: 15px 20px;
    }

    .faq-q {
        font-size: 18px;
        padding-right: 35px;
    }

    .faq-q::after {
        font-size: 28px;
    }

    .faq-a {
        font-size: 16px;
    }

    .faq-banners {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .banner-image img {
        max-width: 200px;
    }

    .banner-content h3 {
        font-size: 24px;
    }

    .max-button-padding {
        padding: 12px 20px !important;
        font-size: 18px !important;
    }

    .faq-answer-block {
        padding: 30px 20px;
    }

    .faq-text-content h3 {
        font-size: 24px;
    }

    .faq-text-content p {
        font-size: 16px;
    }

    .bottom-banner {
        padding: 30px 20px;
    }

    .bottom-banner h3 {
        font-size: 24px;
    }

    .bottom-banner img {
        max-width: 250px;
    }

    .discounted {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .faq-heading {
        font-size: 26px;
    }

    .faq-item {
        padding: 12px 15px;
        margin-bottom: 12px;
    }

    .faq-q {
        font-size: 16px;
        padding-right: 30px;
    }

    .faq-q::after {
        font-size: 24px;
    }

    .faq-a {
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-banners {
        padding: 20px 15px;
    }

    .banner-image img {
        max-width: 150px;
    }

    .banner-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .max-button-padding {
        padding: 10px 15px !important;
        font-size: 16px !important;
    }

    .faq-answer-block {
        padding: 20px 15px;
    }

    .faq-text-content h3 {
        font-size: 20px;
    }

    .faq-text-content p {
        font-size: 15px;
    }

    .bottom-banner {
        padding: 20px 15px;
    }

    .bottom-banner h3 {
        font-size: 20px;
    }

    .bottom-banner img {
        max-width: 180px;
    }

    .regular-price.small {
        font-size: 16px;
    }

    .discounted {
        font-size: 20px;
    }
}


/* Research & Rating Section */
.research-rating-section {
    background-color: var(--white);
}

.rating-criteria {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.criteria-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.criteria-item:last-child {
    border-bottom: none;
}

.rating-score {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
}

/* 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; }
}




