/* ==================================
   VIRAL MARKETING DESIGN - MODERN MINIMALIST
   High CTR | Influencer-Heavy | Conversion Optimized
   ================================== */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-600: #4B5563;
    --gray-900: #111827;
    --accent: #10B981;
    --accent-dark: #059669;
    --red: #EF4444;
    --orange: #F59E0B;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER - GLASSMORPHIC */
.header {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(31, 41, 55, 0.8) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Mobile: Hamburger left, Logo center, CTA right */
@media (max-width: 991px) {
    .header-flex {
        display: grid;
        grid-template-columns: minmax(auto, 1fr) auto minmax(auto, 1fr);
        align-items: center;
        gap: 0.5rem;
    }

    .hamburger-btn {
        order: 1;
    }

    .logo {
        order: 2;
        justify-self: center;
    }

    .cta-btn,
    a.cta-btn {
        display: none !important;
    }
}

/* Desktop: Logo left, Nav center, CTA right */
@media (min-width: 992px) {
    .header-flex {
        display: flex;
    }

    .hamburger-btn {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo i {
    font-size: 1.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* DESKTOP NAVIGATION */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-link {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
        position: relative;
        padding: 0.5rem 0;
    }

    .nav-link:hover {
        color: var(--accent);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
}

/* MOBILE HAMBURGER BUTTON */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1002;
}

/* Keep hamburger in grid flow on mobile */
@media (max-width: 991px) {
    .hamburger-btn {
        /* Position handled by grid in header-flex */
    }
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 992px) {
    .hamburger-btn {
        display: none;
    }
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Close Button */
.mobile-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s;
}

.mobile-close-btn:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    padding: 2rem;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.mobile-nav-link.cta-mobile {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.25) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.mobile-nav-link.cta-mobile:hover {
    background: var(--accent-dark);
    transform: translateX(0) translateY(-2px);
}

@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* HERO WITH GIF BACKGROUND */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -80px;
}

/* Ensure hero-title doesn't go under sticky header on mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 10rem;
        margin-top: 0;
    }
}

.hero-bg-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-bg-gif {
        background-position: 65% center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.75) 50%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.as-featured {
    margin-bottom: 2rem;
}

.as-featured span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0.9;
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.media-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-block {
    max-width: 500px;
    margin: 0 auto;
}

.cta-primary {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.cta-primary small {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.trust-line {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* VIRAL MOMENT - JOE ROGAN */
.viral-moment {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: var(--white);
    padding: 4rem 0;
}

.viral-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .viral-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.viral-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.viral-moment h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.viral-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.viral-source {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.viral-proof {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.proof-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.viral-visual {
    text-align: center;
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.video-frame:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.viral-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.video-frame:hover .play-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.play-overlay i {
    font-size: 4rem;
    color: var(--white);
    transition: transform 0.3s;
}

.video-frame:hover .play-overlay i {
    transform: scale(1.1);
}

.play-overlay span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.video-caption {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* UNDERSTANDING IVERMECTIN SECTION - MODERN REDESIGN */
.understanding-section {
    padding: 4rem 0;
    background: var(--white);
}

.understanding-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.understanding-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.understanding-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Key Facts - Horizontal Badges */
.key-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .key-facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .key-facts {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fact-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.fact-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
}

.fact-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.fact-content {
    flex: 1;
}

.fact-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.fact-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Detailed Information */
.understanding-details {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid var(--gray-100);
}

.understanding-details h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.understanding-details p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.understanding-details p:last-child {
    margin-bottom: 0;
}

/* DOCTORS SECTION */

/* DOCTORS SECTION */
.doctors-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.doctors-section .section-title {
    text-align: center;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.doctor-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.doctor-video-container {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--black);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.doctor-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Fix pixelation and improve rendering */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.viral-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.doctor-title {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.doctor-quote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    font-style: italic;
}


/* VIRAL MOMENT SECTION - MINIMAL */
.viral-moment {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.viral-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .viral-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Video Container */
.viral-video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--black);
}

.viral-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.viral-content {
    padding: 1rem 0;
}

.viral-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.viral-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.viral-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
}

.viral-attribution {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}


.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: #ff1744;
    animation: float-up 8s infinite ease-in;
    opacity: 0;
}

.floating-icons i:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.floating-icons i:nth-child(2) {
    left: 25%;
    animation-delay: 1.5s;
    font-size: 1.8rem;
}

.floating-icons i:nth-child(3) {
    left: 45%;
    animation-delay: 3s;
    font-size: 2.2rem;
}

.floating-icons i:nth-child(4) {
    left: 65%;
    animation-delay: 4.5s;
    font-size: 1.5rem;
}

.floating-icons i:nth-child(5) {
    left: 80%;
    animation-delay: 6s;
    font-size: 2rem;
}

.floating-icons i:nth-child(6) {
    left: 15%;
    animation-delay: 2s;
    font-size: 1.8rem;
}

.floating-icons i:nth-child(7) {
    left: 55%;
    animation-delay: 5s;
    font-size: 2.3rem;
}

.floating-icons i:nth-child(8) {
    left: 90%;
    animation-delay: 7s;
    font-size: 1.6rem;
}

@keyframes float-up {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(20px) rotate(15deg);
    }
}

/* Social Wall Section Title */
.social-wall .section-title {
    text-align: center;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}



.social-slider-wrapper {
    position: relative;
    max-width: 100%;
    padding: 0 1rem;
}

.social-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-nav-arrow:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-nav-left {
    left: -10px;
}

.social-nav-right {
    right: -10px;
}

/* Mobile rules moved to end of file for proper specificity */

.social-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.social-row::-webkit-scrollbar {
    display: none;
}

.social-post {
    position: relative;
    flex: 0 0 320px;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.social-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.post-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.post-header i {
    font-size: 1.25rem;
}

.verified-badge {
    color: #1DA1F2;
    font-size: 1rem;
    margin-left: 0.25rem;
}

.social-post p {
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 0.95rem;
}

.post-actions {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.post-actions i {
    margin-right: 0.25rem;
}

/* URGENCY BAR */
/* PHARMACY TRUST SECTION */
.pharmacy-trust {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-card.primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
    color: var(--white);
}

.trust-icon-large {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trust-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.trust-card.primary h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.trust-card.primary p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.trust-card-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-card.secondary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.trust-card.secondary i {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-card.secondary strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.trust-card.secondary span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* NO PRESCRIPTION INFO BAR */
.prescription-info-bar {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.prescription-info-bar::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: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.info-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.info-text strong {
    font-weight: 900;
    text-decoration: underline;
}

.info-badge {
    flex-shrink: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-badge i {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-badge span {
    font-weight: 900;
    color: var(--black);
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .info-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .info-text h3 {
        font-size: 1.5rem;
    }
}

/* LABORATORY CERTIFICATE SECTION */
.lab-certificate-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.certificate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certificate-image-side {
        order: 1;
    }

    .certificate-info-side {
        order: 2;
    }

    .certificate-img {
        max-width: 100%;
        width: 100%;
    }

    .certificate-info-side h2 {
        font-size: 2rem;
        text-align: center;
    }

    .certificate-badge {
        display: flex;
        margin: 0 auto 1.5rem;
    }

    .certificate-intro {
        text-align: center;
    }

    .certificate-actions {
        flex-direction: column;
    }
}

.certificate-image-side {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.certificate-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.certificate-img:hover {
    transform: scale(1.02);
}

.lab-certificate-video {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: block;
    object-fit: cover;
    transform: scale(1.15);
    margin: -50px 0;
}

.certificate-info-side h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.certificate-badge i {
    font-size: 1rem;
}

.certificate-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.certificate-details {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--gray-200);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.detail-item:first-child {
    padding-top: 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-item:last-child {
    padding-bottom: 0;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.detail-item span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    font-family: 'Courier New', monospace;
}

.certificate-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cert-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-btn.primary {
    background: var(--black);
    color: var(--white);
}

.cert-btn.primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cert-btn.secondary {
    background: var(--white);
    color: var(--black);
    border-color: var(--gray-300);
}

.cert-btn.secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.verification-note {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.verification-note i {
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.verification-note p {
    font-size: 0.9375rem;
    color: #1e40af;
    margin: 0;
    line-height: 1.6;
}

.verification-note strong {
    font-weight: 700;
}

/* WHY CHOOSE DOCTOR B - CERTIFICATIONS SLIDER */
.certifications-slider-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    overflow: hidden;
}

.cert-slider-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cert-slider-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cert-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.cert-slider-track {
    display: flex;
    gap: 2rem;
    animation: slideLeft 30s linear infinite;
}

.cert-slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cert-slide-card {
    flex: 0 0 280px;
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-slide-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.cert-slide-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
}

.cert-slide-card h3 {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cert-slide-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .cert-slide-card {
        flex: 0 0 220px;
    }

    .cert-slider-title {
        font-size: 2rem;
    }
}

/* MANUFACTURING FACILITY SECTION */
.manufacturing-facility {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.facility-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.facility-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.facility-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.facility-video-wrapper {
    max-width: 1100px;
    margin: 0 auto 5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.facility-video {
    width: 100%;
    display: block;
}

.production-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

.feature-card li strong {
    color: var(--black);
    font-weight: 700;
}

.qa-section {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qa-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    margin-bottom: 1rem;
}

.qa-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.qa-card {
    text-align: center;
}

.qa-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.qa-card:hover .qa-icon {
    background: var(--accent);
}

.qa-icon i {
    font-size: 2rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.qa-card:hover .qa-icon i {
    color: var(--white);
}

.qa-card h4 {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
}

.qa-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.qa-card li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.qa-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.25rem;
}

@media (max-width: 968px) {
    .production-features {
        grid-template-columns: 1fr;
    }

    .qa-grid {
        grid-template-columns: 1fr;
    }

    .facility-header h2 {
        font-size: 2rem;
    }

    .qa-section {
        padding: 2rem;
    }
}

/* PRODUCT SECTION */




/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.faq-q {
    padding: 1.75rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.faq-q:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.faq-q i:first-child {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-q span {
    flex: 1;
}

.faq-arrow {
    color: var(--gray-400);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-a {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-a {
    padding: 0 2rem 2rem 4.5rem;
    max-height: 800px;
}

.faq-a strong {
    color: var(--black);
    font-weight: 700;
}




/* FOOTER */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9375rem;
}

.footer-menu a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.address-block {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.address-block .company-name {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.address-block p {
    margin: 0.25rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}




/* MOBILE CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.2) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.2rem 1.5rem;
    box-shadow: 0 -4px 16px rgba(16, 185, 129, 0.2);
    z-index: 99;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
}


@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
    }
}

.mobile-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--black);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.mobile-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-btn:active {
    transform: translateY(0);
}


/* COMPARISON TABLE SECTION */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.comparison-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.comparison-table th:first-child {
    border-top-left-radius: 12px;
    text-align: left;
}

.comparison-table th:last-child {
    border-top-right-radius: 12px;
}

.feature-col {
    width: 40%;
}

.brand-col {
    width: 30%;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
}

.brand-badge i {
    font-size: 1.25rem;
}

.competitor {
    opacity: 0.7;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    vertical-align: middle;
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--gray-900);
}

.feature-name-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-name i {
    color: var(--accent);
    font-size: 1.25rem;
    min-width: 24px;
}

.check-content i {
    font-size: 2rem;
    color: var(--accent);
}

.cross-content i {
    font-size: 2rem;
    color: #dc2626;
}

.partial-content i {
    font-size: 2rem;
    color: var(--orange);
}

.check-cell i {
    font-size: 2rem;
    color: var(--accent);
}

.cross-cell i {
    font-size: 2rem;
    color: #dc2626;
}

.partial-cell i {
    font-size: 2rem;
    color: var(--orange);
}

.comparison-table small {
    font-size: 0.8125rem;
    color: var(--gray-600);
    display: block;
}

.highlight-row {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.08) 50%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 4px solid var(--accent);
}

.highlight-row:hover {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.12) 50%, rgba(16, 185, 129, 0.08) 100%);
}

.comparison-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-tagline {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.comparison-tagline i {
    color: var(--orange);
    font-size: 1.5rem;
}

.comparison-cta .cta-primary {
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Comparison Table */
@media (max-width: 768px) {
    .comparison-section {
        padding: 3rem 0;
    }

    .comparison-header h2 {
        font-size: 1.875rem;
    }

    .comparison-table-wrapper {
        padding: 1rem;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        font-size: 0.875rem;
        min-width: 550px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }

    .brand-badge {
        font-size: 0.875rem;
        padding: 0.375rem 1rem;
    }

    .feature-name {
        font-size: 0.875rem;
    }

    .feature-name i {
        font-size: 1rem;
    }

    .check-cell i,
    .cross-cell i,
    .partial-cell i {
        font-size: 1.5rem;
    }

    .comparison-tagline {
        font-size: 1rem;
        text-align: center;
    }
}

/* PREMIUM ADD TO CART SECTION */
.add-to-cart-section {
    padding: 3rem 0;
    background: var(--white);
}

.cart-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.cart-section-header p {
    font-size: 1rem;
    color: var(--gray-600);
}

.product-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
}

/* Product Image Side */
.product-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container {
    position: relative;
    width: 100%;
    max-width: 375px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gray-50);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 360 Video: Crop sides to 9:16 */
.product-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-badges {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
    width: 85%;
}

.image-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.image-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Product Options Side */
.product-options-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-title-block h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--orange);
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.review-count {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Package Selection */
.package-label,
.quantity-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    display: block;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-option {
    position: relative;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.package-option:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.package-option input[type="radio"]:checked+label {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: var(--accent);
}

.package-option input[type="radio"]:checked~label::before {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.package-option label {
    display: block;
    padding: 1rem 1.25rem;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
}

.package-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.package-bottles {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--black);
}

.package-tablets {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.package-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--black);
}

.package-unit {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
}

.package-perpill {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 700;
}

.package-perpill.animate-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        color: var(--accent);
    }

    50% {
        opacity: 0.6;
        color: var(--accent-dark);
    }
}

.package-save {
    margin-top: 0.5rem;
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-save.best {
    background: var(--orange);
}

.package-option.popular {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.popular-flag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Quantity Selection */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-100);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--gray-900);
}

.qty-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(16, 185, 129, 0.05);
}

.qty-btn:active {
    transform: scale(0.95);
}

#quantity-input {
    width: 80px;
    height: 44px;
    border: 2px solid var(--gray-100);
    border-radius: 8px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
}

/* Price Summary */
.price-summary {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.price-row.total {
    border-top: 2px solid var(--gray-100);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.price-value {
    font-weight: 700;
    color: var(--black);
}

.price-value.free {
    color: var(--accent);
}

#total-price {
    font-size: 1.5rem;
    color: var(--accent);
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(-2px);
}

.add-to-cart-btn i {
    font-size: 1.5rem;
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .product-image-container {
        max-width: 300px;
    }

    .cart-section-header h2 {
        font-size: 2rem;
    }

    .product-title-block h3 {
        font-size: 1.5rem;
    }

    .add-to-cart-btn {
        font-size: 1.125rem;
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .add-to-cart-section {
        padding: 3rem 0;
    }

    .product-card {
        padding: 1.5rem;
    }

    .cart-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-item {
        flex-direction: row;
        justify-content: flex-start;
    }

    .image-badges {
        flex-direction: column;
        gap: 0.25rem;
        bottom: 0.5rem;
    }

    .image-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* GUARANTEE BANNERS */
.guarantee-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid var(--accent);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    animation: guarantee-pulse 3s ease-in-out infinite;
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: guarantee-glow 4s linear infinite;
}

@keyframes guarantee-pulse {

    0%,
    100% {
        border-color: var(--accent);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }

    50% {
        border-color: rgba(16, 185, 129, 0.8);
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
    }
}

@keyframes guarantee-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.guarantee-banner.top-banner {
    margin-bottom: 2rem;
}

.guarantee-banner.bottom-banner {
    margin-top: 2rem;
}

.banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.banner-icon i {
    font-size: 2rem;
    color: var(--white);
}

.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.banner-content strong {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.banner-content span {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
}

.banner-badge {
    background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 1px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(251, 146, 60, 0.6);
    }
}

/* Responsive Guarantee Banners */
@media (max-width: 768px) {
    .guarantee-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }

    .banner-icon {
        width: 50px;
        height: 50px;
    }

    .banner-icon i {
        font-size: 1.5rem;
    }

    .banner-content strong {
        font-size: 1rem;
    }

    .banner-content span {
        font-size: 0.875rem;
    }

    .banner-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }

    /* Social Wall - Mobile 2-Card Carousel */
    .social-slider-wrapper {
        padding: 0 3rem;
        /* Space for arrows */
    }

    .social-row {
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .social-post {
        flex: 0 0 45%;
        /* Show 2 cards at once */
        min-width: 45%;
        max-width: 45%;
    }

    .social-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-nav-left {
        left: 5px;
    }

    .social-nav-right {
        right: 5px;
    }

    /* Instagram-style Mobile Overlay */
    .social-post {
        padding: 0 !important;
        /* Remove all container padding */
    }

    .post-content {
        padding: 0 !important;
        /* Remove all padding */
    }

    .post-header {
        position: absolute;
        top: 8px;
        left: 8px;
        margin-bottom: 0;
        font-size: 0.625rem;
        /* 2px smaller (was 0.8rem) */
        background: rgba(0, 0, 0, 0.4);
        padding: 0.25rem 0.5rem;
        /* Minimized padding */
        border-radius: 16px;
        backdrop-filter: blur(8px);
        z-index: 10;
    }

    .post-header i {
        font-size: 0.7rem;
        /* 2px smaller (was 0.9rem) */
    }

    .verified-badge {
        font-size: 0.6rem;
        /* Slightly smaller */
    }

    .social-post p {
        position: absolute;
        bottom: 2.5rem;
        /* Closer to bottom */
        left: 0;
        /* Full width */
        right: 0;
        /* Full width */
        width: 100%;
        /* Ensure full width */
        font-size: 0.625rem;
        /* 2px smaller (was 0.75rem) */
        line-height: 1.2;
        /* Tighter line height */
        margin: 0;
        padding: 0.35rem 0.5rem;
        /* Minimal padding */
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0;
        /* No radius for full width */
        backdrop-filter: blur(4px);
        box-sizing: border-box;
    }

    .post-actions {
        position: absolute;
        bottom: 0.5rem;
        /* Further down */
        left: 0.5rem;
        gap: 1rem;
        font-size: 0.625rem;
        /* 2px smaller (was 0.7rem) */
    }
}

/* ADD THIS TO THE END OF styles.css - PODCAST SECTION REDESIGN */

/* Podcast Player */
.podcast-player {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.player-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.podcast-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.play-overlay i {
    font-size: 4rem;
    color: var(--white);
    background: var(--accent);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-left: 8px;
}

/* Episode Info */
.episode-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.episode-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}

.meta-item i {
    color: var(--accent);
    font-size: 1.125rem;
}

/* Podcast Quote */
.podcast-quote {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.quote-content {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
}

.quote-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 2rem;
}

.quote-author strong {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 800;
}

.quote-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Podcast Highlights */
.podcast-highlights {
    max-width: 900px;
    margin: 0 auto;
}

.podcast-highlights h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.highlight-time {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* STOCK CHECKER SECTION */
.stock-checker {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.stock-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stock-header h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stock-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Retailers Grid */
.retailers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
    .retailers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .retailers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Retailer Card */
.retailer-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.retailer-card.official {
    border-color: var(--gray-200);
    background: var(--white);
    transition: all 0.6s ease;
}

.retailer-card.official.stock-revealed {
    border-color: var(--accent);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.retailer-card.official.stock-revealed .stock-status {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.retailer-card.official.stock-revealed .stock-status:hover {
    background: rgba(255, 255, 255, 0.3);
}

.retailer-card.official.stock-revealed .stock-status i {
    color: var(--white);
}

.retailer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Retailer Logo */
.retailer-logo {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retailer-logo img {
    max-height: 35px;
    max-width: 100px;
    width: auto;
    height: auto;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.stock-status.checking {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.stock-status.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.stock-status.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.stock-status.available:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.stock-status i {
    font-size: 0.9375rem;
}

/* Stock Loader */
.stock-loader {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Stock CTA */
.stock-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.stock-cta:hover {
    background: #059669;
    transform: translateX(4px);
}

/* Stock Notice */
.stock-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.stock-notice i {
    color: #2563eb;
    font-size: 1.25rem;
}

.stock-notice p {
    color: var(--gray-700);
    font-size: 0.875rem;
    margin: 0;
}

/* Official Store Logo Switcher */
.retailer-card.official .logo-dark {
    display: block !important;
}

.retailer-card.official .logo-light {
    display: none !important;
}

.retailer-card.official.stock-revealed .logo-dark {
    display: none !important;
}

.retailer-card.official.stock-revealed .logo-light {
    display: block !important;
}