body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

.medical-red {
    color: #e53935;
}

.bg-medical-red {
    background-color: #e53935;
}

.border-medical-red {
    border-color: #e53935;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    /* Higher than notifications and hamburger */
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 72px;
}

@media (max-width: 768px) {
    .sticky-header {
        height: 60px;
    }
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: #e53935;
}

.nav-link.active {
    color: #e53935;
    font-weight: 600;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e53935;
    border-radius: 1px;
}

.order-btn {
    background-color: #e53935;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.order-btn:hover {
    background-color: #c62828;
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    height: 48px;
    width: 48px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    /* Higher than notifications */
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #4a5568;
    margin: 2px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #e53935;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #e53935;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10002;
    /* Highest z-index for mobile menu */
    overflow-y: auto;
    will-change: transform, opacity;
}

.mobile-nav.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-nav-content {
    padding: 24px 0;
}

.mobile-nav a {
    display: block;
    padding: 20px 24px;
    color: #1e293b;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 18px;
    text-decoration: none;
    border-left: 4px solid transparent;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInNav 0.3s ease forwards;
}

.mobile-nav a:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav a:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav a:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav a:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav a:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav a:hover {
    background: #f8fafc;
    color: #e53935;
    border-left-color: #e53935;
    transform: translateX(4px);
}

.mobile-nav a.active {
    color: #e53935;
    background: #fef2f2;
    font-weight: 600;
    border-left-color: #e53935;
}

.mobile-nav .order-now-mobile {
    margin: 32px 24px 24px;
    background: #e53935;
    color: white;
    text-align: center;
    padding: 18px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: calc(100% - 48px);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
}

.mobile-nav .order-now-mobile:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Enhanced Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(45deg, #e53935, #ff5722);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(229, 57, 53, 0.6);
    border: 3px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    animation: pulseGlow 2s infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta:hover {
    background: linear-gradient(45deg, #c62828, #e64a19);
    transform: translateX(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(229, 57, 53, 0.8);
    animation: none;
}

.sticky-cta:active {
    transform: translateX(-50%) translateY(-1px) scale(0.98);
}

/* Optimized pulsing glow animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 8px 32px rgba(229, 57, 53, 0.6),
            0 0 20px rgba(229, 57, 53, 0.3);
        transform: translateX(-50%) scale(1);
    }

    50% {
        box-shadow:
            0 12px 40px rgba(229, 57, 53, 0.8),
            0 0 30px rgba(229, 57, 53, 0.5);
        transform: translateX(-50%) scale(1.02);
    }
}

/* Optimize animations for better performance */
.sticky-cta,
.fda-badge {
    will-change: transform, opacity;
}

/* Reduce animation complexity on mobile for better performance */
@media (max-width: 768px) {
    .animate-bounce {
        animation: none;
    }

    .animate-pulse {
        animation: none;
    }

    /* Simplify glow effects on mobile */
    .hero-product-glow {
        opacity: 0.1 !important;
        animation: none !important;
    }
}

/* Attention-grabbing badge */
.sticky-cta::before {
    content: "🔥 HOT DEAL";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff9800;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-2px);
    }
}

/* Animations */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

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

.heart-shadow {
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        min-height: 48px;
        min-width: 48px;
    }

    /* Mobile FDA Badge - Smaller and Better Positioned */
    .fda-badge {
        font-size: 10px !important;
        padding: 6px 12px !important;
        top: -25px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        letter-spacing: 0.5px !important;
        border-width: 1px !important;
    }

    .sticky-cta {
        padding: 16px 28px;
        font-size: 16px;
        bottom: 15px;
        left: 50%;
        right: auto;
        width: auto;
        max-width: calc(100% - 30px);
        transform: translateX(-50%);
        border-radius: 25px;
    }

    .sticky-cta:hover {
        transform: translateX(-50%) translateY(-3px) scale(1.02);
    }

    .sticky-cta::before {
        right: -8px;
        top: -6px;
        font-size: 9px !important;
        padding: 3px 6px !important;
    }

    /* Mobile Hero Section */
    .hero-section-mobile {
        padding: 1.5rem 1rem !important;
        min-height: auto !important;
        padding-top: 2rem !important;
    }

    /* Mobile Hero Adjustments */
    .hero-product-image {
        max-width: 260px !important;
        margin: 0 auto 1.5rem auto !important;
    }

    /* Mobile Content Adjustments */
    .mobile-content-spacing {
        gap: 2rem !important;
        margin-bottom: 1rem !important;
    }

    /* Mobile Typography - Better Readability */
    .mobile-headline {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem !important;
    }

    .mobile-stats {
        gap: 0.8rem !important;
        padding: 1rem 0 !important;
    }

    .mobile-stats .text-3xl {
        font-size: 1.8rem !important;
    }

    .mobile-stats .text-sm {
        font-size: 0.8rem !important;
    }

    /* Mobile Product Glow Effect */
    .hero-product-glow {
        width: 200px !important;
        height: 200px !important;
    }

    /* Mobile Testimonial Card - Better Layout */
    .mobile-testimonial {
        margin-top: 1.5rem !important;
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }

    .mobile-testimonial p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* Mobile Stock Alert */
    .mobile-stock-alert {
        margin-top: 1rem !important;
        padding: 0.75rem !important;
    }

    /* Mobile Value Proposition */
    .mobile-content-spacing .bg-white p {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .mobile-content-spacing .bg-white .text-xl {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    /* Mobile Buttons - Better Touch Targets */
    .w-full.lg\\:w-auto {
        font-size: 1.1rem !important;
        padding: 1rem 2rem !important;
        line-height: 1.2 !important;
    }

    /* Mobile Trust Indicators */
    .flex.flex-wrap span {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }

    /* Mobile Benefits Section */
    .grid.md\\:grid-cols-2>div {
        padding: 1.5rem !important;
    }

    .grid.md\\:grid-cols-2 h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .grid.md\\:grid-cols-2 p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* Mobile Section Headings */
    .text-4xl.lg\\:text-5xl {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        padding: 0 1rem !important;
    }

    /* Mobile How It Works */
    .grid.lg\\:grid-cols-3 h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }

    .grid.lg\\:grid-cols-3 p {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-product-image {
        max-width: 220px !important;
    }

    /* Extra Small FDA Badge */
    .fda-badge {
        font-size: 9px !important;
        padding: 5px 10px !important;
        top: -20px !important;
    }

    .mobile-headline {
        font-size: 1.8rem !important;
        padding: 0 !important;
    }

    .hero-section-mobile {
        padding: 1.5rem 0.75rem !important;
        padding-top: 2rem !important;
    }

    .sticky-cta {
        font-size: 14px !important;
        padding: 14px 24px !important;
    }

    .sticky-cta::before {
        font-size: 8px !important;
        padding: 2px 5px !important;
    }

    /* Extra Small Typography Adjustments */
    .mobile-content-spacing .bg-white .text-xl {
        font-size: 1.1rem !important;
    }

    .mobile-content-spacing .bg-white p {
        font-size: 1rem !important;
    }

    .mobile-stats .text-3xl {
        font-size: 1.5rem !important;
    }

    .mobile-testimonial {
        padding: 0.8rem !important;
        font-size: 0.85rem !important;
    }

    .text-4xl.lg\\:text-5xl {
        font-size: 1.8rem !important;
        padding: 0 0.5rem !important;
    }

    /* Extra Small Button Adjustments */
    .w-full.lg\\:w-auto {
        font-size: 1rem !important;
        padding: 0.9rem 1.5rem !important;
    }

    /* Extra Small Benefits Cards */
    .grid.md\\:grid-cols-2>div {
        padding: 1.2rem !important;
    }

    .grid.md\\:grid-cols-2 h3 {
        font-size: 1rem !important;
    }

    .grid.md\\:grid-cols-2 p {
        font-size: 0.85rem !important;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/* Add padding to body for fixed header */
body {
    padding-top: 72px;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

/* Section scroll spacing */
section[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 80px;
    }
}

/* Hide sticky button on very small screens */
@media (max-height: 500px) {
    .sticky-cta {
        display: none;
    }
}

/* Purchase Notification Styles */
.purchase-notification {
    position: fixed;
    bottom: 120px;
    left: 20px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #e53935;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-width: 320px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.purchase-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.purchase-notification.hide {
    transform: translateX(-120%);
    opacity: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
    object-fit: cover;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    color: #1a202c;
    font-size: 14px;
    margin-bottom: 2px;
}

.notification-action {
    color: #4a5568;
    font-size: 13px;
    line-height: 1.3;
}

.notification-location {
    color: #718096;
    font-size: 12px;
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.notification-time {
    color: #e53935;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.notification-icon {
    color: #10b981;
    font-size: 16px;
    margin-left: 8px;
}

/* Mobile adjustments for notifications - Top positioning */
@media (max-width: 768px) {
    .purchase-notification {
        top: 80px !important;
        bottom: auto !important;
        left: 15px;
        right: 15px;
        max-width: none;
        width: calc(100% - 30px);
        transform: translateX(0) translateY(-120%);
        z-index: 9999;
        /* Lower than header and hamburger menu */
    }

    .purchase-notification.show {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }

    .purchase-notification.hide {
        transform: translateX(0) translateY(-120%);
        opacity: 0;
    }

    .notification-avatar {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .notification-name {
        font-size: 13px;
    }

    .notification-action {
        font-size: 12px;
    }

    .notification-location {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .purchase-notification {
        top: 70px !important;
        padding: 12px;
    }
}

/* Testimonials Carousel Styles */
.testimonials-carousel-container {
    position: relative;
    padding-bottom: 80px;
    /* Extra space for navigation */
}

.carousel-dots .dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #e53935 !important;
    transform: scale(1.2);
}

.carousel-prev,
.carousel-next {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    opacity: 1;
}

.carousel-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-dots button.dot {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    padding: 0;
}

@media (max-width: 640px) {
    .carousel-dots button.dot {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        min-height: 16px !important;
        margin: 0 2px !important;
    }

    .carousel-dots {
        gap: 0 !important;
    }
}

/* Universal Responsive Text Scaling */
:root {
    /* Base font sizes that scale responsively */
    --text-xs: clamp(0.7rem, 0.5vw + 0.6rem, 0.75rem);
    --text-sm: clamp(0.8rem, 0.7vw + 0.7rem, 0.875rem);
    --text-base: clamp(0.9rem, 1vw + 0.8rem, 1rem);
    --text-lg: clamp(1rem, 1.2vw + 0.9rem, 1.125rem);
    --text-xl: clamp(1.1rem, 1.5vw + 1rem, 1.25rem);
    --text-2xl: clamp(1.3rem, 2vw + 1.1rem, 1.5rem);
    --text-3xl: clamp(1.6rem, 3vw + 1.3rem, 1.875rem);
    --text-4xl: clamp(2rem, 4vw + 1.5rem, 2.25rem);
    --text-5xl: clamp(2.5rem, 5vw + 2rem, 3rem);
    --text-6xl: clamp(3rem, 6vw + 2.5rem, 3.75rem);
}

/* Apply responsive font sizes globally */
.text-xs {
    font-size: var(--text-xs) !important;
}

.text-sm {
    font-size: var(--text-sm) !important;
}

.text-base {
    font-size: var(--text-base) !important;
}

.text-lg {
    font-size: var(--text-lg) !important;
}

.text-xl {
    font-size: var(--text-xl) !important;
}

.text-2xl {
    font-size: var(--text-2xl) !important;
}

.text-3xl {
    font-size: var(--text-3xl) !important;
}

.text-4xl {
    font-size: var(--text-4xl) !important;
}

.text-5xl {
    font-size: var(--text-5xl) !important;
}

.text-6xl {
    font-size: var(--text-6xl) !important;
}

/* Mobile carousel adjustments with responsive text */
@media (max-width: 768px) {
    .testimonial-slide .bg-gray-50 {
        padding: 1.5rem !important;
        margin: 0 0.5rem !important;
    }

    .testimonial-slide img {
        width: clamp(70px, 12vw, 80px) !important;
        height: clamp(70px, 12vw, 80px) !important;
        margin-right: 1rem !important;
    }

    .testimonial-slide h4 {
        font-size: var(--text-lg) !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .testimonial-slide p {
        font-size: var(--text-base) !important;
        line-height: 1.5 !important;
    }

    .testimonial-slide .text-xl {
        font-size: var(--text-lg) !important;
    }

    .testimonial-slide .text-sm {
        font-size: var(--text-xs) !important;
    }

    .carousel-prev {
        left: 4px !important;
        width: clamp(32px, 6vw, 40px) !important;
        height: clamp(32px, 6vw, 40px) !important;
    }

    .carousel-next {
        right: 4px !important;
        width: clamp(32px, 6vw, 40px) !important;
        height: clamp(32px, 6vw, 40px) !important;
    }

    .carousel-prev svg,
    .carousel-next svg {
        width: clamp(16px, 4vw, 20px) !important;
        height: clamp(16px, 4vw, 20px) !important;
    }
}

@media (max-width: 480px) {
    .testimonial-slide .bg-gray-50 {
        padding: 1.25rem !important;
        margin: 0 0.25rem !important;
    }

    .testimonial-slide img {
        width: clamp(60px, 14vw, 70px) !important;
        height: clamp(60px, 14vw, 70px) !important;
    }

    .carousel-dots {
        margin-top: 1.5rem !important;
    }

    .carousel-dots .dot {
        width: clamp(6px, 2vw, 8px) !important;
        height: clamp(6px, 2vw, 8px) !important;
    }
}

/* Responsive adjustments for all major text elements */

/* Navigation */
.nav-link {
    font-size: var(--text-lg) !important;
}

.order-btn {
    font-size: var(--text-sm) !important;
    padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 28px) !important;
}

/* Hero Section Responsive Text */
.mobile-headline {
    font-size: var(--text-5xl) !important;
    line-height: 1.1 !important;
}

.hero-section-mobile .text-xl,
.hero-section-mobile .text-2xl {
    font-size: var(--text-xl) !important;
    line-height: 1.4 !important;
}

.hero-section-mobile .text-lg {
    font-size: var(--text-lg) !important;
    line-height: 1.5 !important;
}

.mobile-stats .text-3xl {
    font-size: var(--text-3xl) !important;
}

.mobile-stats .text-sm {
    font-size: var(--text-sm) !important;
}

/* Mobile testimonial responsive text */
.mobile-testimonial h4 {
    font-size: var(--text-base) !important;
}

.mobile-testimonial p {
    font-size: var(--text-sm) !important;
    line-height: 1.4 !important;
}

.mobile-testimonial .text-xs {
    font-size: var(--text-xs) !important;
}

/* Section Headings */
.text-4xl.lg\\:text-5xl,
h2.text-4xl,
h2.text-5xl {
    font-size: var(--text-4xl) !important;
    line-height: 1.2 !important;
}

/* Benefits Section */
.grid.md\\:grid-cols-2 h3,
.grid.lg\\:grid-cols-3 h3 {
    font-size: var(--text-xl) !important;
    margin-bottom: 1rem !important;
}

.grid.md\\:grid-cols-2 p,
.grid.lg\\:grid-cols-3 p {
    font-size: var(--text-base) !important;
    line-height: 1.5 !important;
}

/* How It Works section */
.grid.lg\\:grid-cols-3 .text-2xl {
    font-size: var(--text-2xl) !important;
}

.grid.lg\\:grid-cols-3 .text-lg {
    font-size: var(--text-lg) !important;
}

/* Special Offer section */
.text-3xl {
    font-size: var(--text-3xl) !important;
}

.text-5xl {
    font-size: var(--text-4xl) !important;
}

/* FAQ Section */
.bg-gray-50 h3 {
    font-size: var(--text-2xl) !important;
}

.bg-gray-50 p {
    font-size: var(--text-lg) !important;
    line-height: 1.6 !important;
}

/* Buttons responsive sizing */
.w-full.lg\\:w-auto,
button.bg-medical-red {
    font-size: var(--text-lg) !important;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 48px) !important;
    line-height: 1.3 !important;
}

/* Sticky CTA responsive */
.sticky-cta {
    font-size: var(--text-lg) !important;
    padding: clamp(14px, 2.5vw, 18px) clamp(28px, 5vw, 36px) !important;
}

.sticky-cta::before {
    font-size: var(--text-xs) !important;
    padding: clamp(3px, 0.8vw, 6px) clamp(6px, 1.5vw, 10px) !important;
}

/* Purchase notification responsive */
.notification-name {
    font-size: var(--text-sm) !important;
}

.notification-action {
    font-size: var(--text-xs) !important;
}

.notification-location {
    font-size: var(--text-xs) !important;
}

.notification-time {
    font-size: var(--text-xs) !important;
}

/* FDA Badge responsive */
.fda-badge {
    font-size: var(--text-xs) !important;
    padding: clamp(4px, 1vw, 8px) clamp(8px, 2vw, 16px) !important;
}

/* Mobile navigation responsive */
.mobile-nav a {
    font-size: var(--text-lg) !important;
}

.order-now-mobile {
    font-size: var(--text-lg) !important;
}

/* Trust indicators responsive */
.flex.flex-wrap span {
    font-size: var(--text-sm) !important;
}

@media (max-width: 768px) {

    /* Override some elements for mobile */
    .mobile-headline {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
    }

    .hero-section-mobile .text-xl {
        font-size: clamp(1rem, 3.5vw, 1.2rem) !important;
    }

    .text-4xl.lg\\:text-5xl {
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    }
}

@media (max-width: 480px) {
    .mobile-headline {
        font-size: clamp(1.7rem, 9vw, 2rem) !important;
    }
}