/* EDMeds Main Stylesheet - Version 2.1 - Dropdown Fix Applied */

/* =============== CSS VARIABLES =============== */
:root {
    /* Colors */
    --color-dark-gray: #404040;
    --color-light-gray: #BEBEBE;
    --color-cream: #FFF8F0;
    --color-peach: #F9DCCD;
    --color-dark-text: #303030;
    --color-orange: #FE5A13;
    --color-medium-gray: #8D8D8B;
    --color-charcoal: #2D2E29;
    --color-blue: #3E4581;
    --color-dark-red: #811C1C;
    
    /* Typography */
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Gilroy", "Poppins", sans-serif;
    --font-fallback: Arial, sans-serif;
    --font-weight-medium: 500;
}

/* Global Styles */
img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }

/* Fix for anchor link navigation with sticky header */
html {
    scroll-padding-top: 120px;
}

/* Alternative method for specific sections */
#faq,
#products,
#who-is-it-for,
#delivery-features,
#about-medlocker,
#compliance,
#customer-support {
    scroll-margin-top: 120px;
}

/* Responsive scroll padding adjustments */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px;
    }
    
    #faq,
    #products,
    #who-is-it-for,
    #delivery-features,
    #about-medlocker,
    #compliance,
    #customer-support {
        scroll-margin-top: 100px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 80px;
    }
    
    #faq,
    #products,
    #who-is-it-for,
    #delivery-features,
    #about-medlocker,
    #compliance,
    #customer-support {
        scroll-margin-top: 80px;
    }
}

img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

/* Typography */
body {
    font-size: 14px;
    line-height: 1.8;
    font-family: var(--font-primary) !important;
    font-weight: var(--font-weight-medium);
    margin: 0;
    padding: 0;
    color: var(--color-dark-text);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-text);
    overflow-x: hidden;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
    color: #fff;
    background: #000;
    text-decoration: none;
    padding: 8px 16px;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* =============== NOTICE BAR =============== */
.notice-bar {
    background-color: #FFECC1;
    padding: 12px 0;
    text-align: center;
    font-size: 18px;
    color: var(--color-dark-red);
    border-bottom: 1px solid rgba(129, 28, 28, 0.1);
    display: block;
    transition: all 0.3s ease;
}

.notice-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice-text {
    line-height: 1.4;
}

.notice-text strong {
    color: var(--color-dark-red);
    font-weight: 700;
}

/* =============== HEADER WRAPPER =============== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

/* Reduce header z-index when mobile menu is open */
body.mobile-menu-open .header-wrapper {
    z-index: 997;
}

/* =============== TOP HEADER BAR =============== */
.top-header-bar {
    background-color: var(--color-dark-gray);
    padding: 8px 0;
    font-size: 12px;
    transition: transform 0.3s ease;
    position: relative;
}

.top-header-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.top-header-bar .container {
    position: relative;
    z-index: 2;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-left,
.top-header-center,
.top-header-right {
    display: flex;
    align-items: center;
    color: #fff;
}

.top-header-left {
    gap: 30px;
}

.top-header-left .phone,
.top-header-left .email,
.top-header-center .email,
.top-header-right .address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
}

.top-header-left .email svg,
.top-header-right .address svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* Header scroll states - No longer needed since top header is outside sticky wrapper */

/* =============== MAIN HEADER =============== */
.main-header {
    background: var(--color-peach);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

.main-header .container {
    position: relative;
    z-index: 2;
}

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

/* Logo */
.header-logo .logo {
    height: 40px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark-text);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-item.current .nav-link {
    color: var(--color-orange);
}

/* Enhanced specificity for navigation link hover on all pages */
html body .header-wrapper .main-header .main-navigation .nav-menu .nav-item .nav-link:hover,
html body .header-wrapper .main-header .main-navigation .nav-menu .nav-item.current .nav-link {
    color: var(--color-orange) !important;
    transition: color 0.3s ease !important;
}

/* Exclude ED phone number and other phone elements from navigation hover effects */
.ed-phone-number,
.ed-phone-number span,
.ed-phone-number a,
a[href^="tel:"],
.phone-number {
    color: inherit !important;
}

.ed-phone-number:hover,
.ed-phone-number span:hover,
.ed-phone-number a:hover,
a[href^="tel:"]:hover,
.phone-number:hover {
    color: inherit !important;
}

/* Ensure navigation links have proper styling on home page */
html body .header-wrapper .main-header .main-navigation .nav-menu .nav-item .nav-link {
    text-decoration: none !important;
    color: var(--color-dark-text) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    padding: 10px 0 !important;
    display: flex !important;
    align-items: center !important;
    transition: color 0.3s ease !important;
}

/* Dropdown Arrow */
.dropdown-arrow::after {
    content: "▼";
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999 !important; /* Enhanced z-index to prevent conflicts */
    list-style: none;
    padding: 10px 0;
    pointer-events: none; /* Prevent accidental interactions when hidden */
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.dropdown-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Enable interactions when visible */
    min-width: 220px;
}

/* Enhanced dropdown positioning for home page compatibility */
.main-navigation .has-dropdown {
    position: relative;
    z-index: 1;
}

.main-navigation .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
    display: block !important;
}

/* Ensure dropdown menu appears above all other content */
.header-wrapper {
    position: relative;
    z-index: 999;
}

.main-header {
    position: relative;
    z-index: 2;
}

/* Additional safety for dropdown visibility on home page */
body .main-navigation .has-dropdown .dropdown-menu {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
}

/* Enhanced specificity for dropdown styling on all pages */
html body .header-wrapper .main-header .main-navigation .has-dropdown .dropdown-menu {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e1e5e9 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
    border-radius: 6px !important;
    min-width: 220px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
}

/* Dropdown link styling with high specificity */
html body .header-wrapper .main-header .main-navigation .has-dropdown .dropdown-menu .dropdown-link {
    display: block !important;
    padding: 12px 20px !important;
    color: var(--color-dark-text) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
}

/* Dropdown link hover with high specificity */
html body .header-wrapper .main-header .main-navigation .has-dropdown .dropdown-menu .dropdown-link:hover {
    background: var(--color-cream) !important;
    color: var(--color-orange) !important;
}

/* Active state styling with enhanced specificity */
html body .header-wrapper .main-header .main-navigation .has-dropdown.dropdown-active .dropdown-arrow::after,
html body .header-wrapper .main-header .main-navigation .has-dropdown:hover .dropdown-arrow::after {
    transform: rotate(180deg) !important;
}

/* Ensure arrow styling is consistent */
html body .header-wrapper .main-header .main-navigation .has-dropdown .dropdown-arrow::after {
    content: "▼" !important;
    margin-left: 5px !important;
    font-size: 10px !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--color-dark-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: var(--color-cream);
    color: var(--color-orange);
}

/* Header Phone */
.header-phone .phone-number {
    color: var(--color-orange);
    font-weight: 600;
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-navigation {
    display: block;
    background: #F9DCCD;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
    transition: right 0.3s ease;
    transform: translateX(0);
}

.mobile-navigation.active {
    right: 0;
    transform: translateX(0);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

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

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

.mobile-nav-menu {
    list-style: none;
    padding: 80px 0 20px 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: none;
    margin-bottom: 0;
}

.mobile-nav-link {
    display: block;
    padding: 18px 25px;
    color: var(--color-dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-link:hover,
.mobile-nav-item.current .mobile-nav-link {
    color: var(--color-orange);
    background: rgba(255,255,255,0.1);
}

/* Close button for mobile menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-orange);
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    z-index: 1000;
}

/* =============== HERO SECTION =============== */
.hero-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.3) 100%);
    min-height: 900px;
    display: flex;
    align-items: center;
    padding: 40px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 45%;
    padding-right: 40px;
}

.hero-review-badge {
    margin: 30px 0;
    text-align: center;
}

.hero-review-badge img {
    max-width: 200px;
    height: auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-medium-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-button {
    background: var(--color-orange);
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 90, 19, 0.3);
    margin-bottom: 30px;
}

.hero-button:hover {
    background: #e54e0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 90, 19, 0.4);
    color: #fff;
}

.hero-description {
    font-size: 18px;
    color: var(--color-medium-gray);
    line-height: 1.8;
}

/* =============== ED INFO SECTION =============== */
.ed-info-section {
    padding: 60px 0;
    text-align: center;
}

.ed-info-content {
    background: linear-gradient(135deg, #FFE4D6 0%, #FFCCB2 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 200px;
}

.ed-info-text {
    text-align: center;
}

.ed-info-text p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-dark-text);
    margin: 0;
    font-weight: 400;
}

.ed-info-text strong {
    color: var(--color-charcoal);
    font-weight: 700;
}

.ed-info-cta {
    text-align: center;
}

.ed-cta-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin: 0 0 15px 0;
}

.ed-phone-number {
    margin-top: 10px;
}

.ed-phone-number span {
    font-size: 44px;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: 1px;
}

.ed-phone-number span:hover {
    color: var(--color-orange);
}

.get-started-btn {
    background: var(--color-orange);
    color: #fff;
    padding: 25px 60px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 90, 19, 0.3);
    white-space: nowrap;
    min-width: 375px;
    text-align: center;
}

@media (max-width: 768px) {
    .get-started-btn {
        padding: 20px 40px;
        font-size: 18px;
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .get-started-btn {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 220px;
    }
}

.get-started-btn:hover {
    background: #e54e0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 90, 19, 0.4);
    color: #fff;
}

/* =============== WHO IS IT FOR SECTION =============== */
.who-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.who-content {
    display: flex;
    gap: 20px;
    align-items: stretch;
    min-height: 600px;
}

.who-left {
    flex: 0 0 500px;
    padding: 40px;
    background: #F5F5F5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.who-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.who-subtitle {
    font-size: 18px;
    color: var(--color-medium-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.medication-bottles {
    text-align: center;
}

.medication-bottles img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.who-right {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.who-card {
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.who-card-1 {
    background: url(/assets/images/who-is-it-for/Group\ 5198@2x.png) center bottom / contain no-repeat, #EAE7E0;
    padding: 40px 55px;
}

/* .who-card-1 .who-card-content {
    justify-content: flex-start;
    align-items: center;
} */

.who-card-1 h3 {
    margin-top: 0;
    margin-bottom: auto;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 90%;
}

.who-card-2 {
    background: url(/assets/images/who-is-it-for/holdhands@2x.png) center/cover no-repeat, #F5F5F5;
    padding: 25px 70px;
}

.who-card-3 {
    background: url(/assets/images/who-is-it-for/Group\ 5200@2x.png) center/contain no-repeat, #F5F5F5;
    padding: 40px 55px;
}

.who-card-4 {
    background: linear-gradient(135deg, #FFE4D6 0%, #FFCCB2 100%);
    padding: 40px 30px;
}

.who-card-4 .who-card-content {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.who-card-4 h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.who-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.who-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.who-card-image {
    margin-top: 20px;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.who-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.who-card-icon {
    margin-top: auto;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.who-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =============== ABOUT SECTION =============== */
.about-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-medium-gray);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.feature-title {
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-description {
    color: var(--color-medium-gray);
    line-height: 1.6;
}

.how-it-works {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.how-it-works-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.work-title {
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.work-description {
    color: var(--color-medium-gray);
    line-height: 1.6;
}

.how-it-works-image img {
    max-width: 100%;
    height: auto;
}

/* =============== PRODUCTS SECTION =============== */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.products-subtitle {
    font-size: 18px;
    color: var(--color-dark-text);
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.products-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.product-card-new {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.prescription-badge {
    background: #6B9BFF;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-image-new {
    margin: -30px 0 30px;
}

.product-image-new img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal) !important;
    margin-bottom: 8px;
}

/* Product name highlight for orange text */
.product-name-highlight {
    color: #FF5722;
}

.product-subtitle {
    font-size: 14px;
    color: var(--color-medium-gray);
    margin-bottom: 5px;
}

.product-active {
    font-size: 14px;
    color: var(--color-medium-gray);
    margin-bottom: 20px;
}

.product-info {
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-info p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark-text);
    margin-bottom: 15px;
}

.disclaimer-box {
    background: #FFF8F0;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.disclaimer-box p {
    margin: 0;
    font-size: 12px;
    color: var(--color-medium-gray);
}

.read-more-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    text-decoration: underline;
    color: #e54e0f;
}

.dosage-select-wrapper {
    margin-bottom: 20px;
    margin-top: auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Ensure wrapper constrains dropdown */
    max-width: 100%;
    box-sizing: border-box;
    /* FORCE CONTAINER CONSTRAINTS */
    display: block !important;
    contain: layout !important;
}

.dosage-select-new {
    width: 100%;
    height: 48px;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    cursor: pointer;
    outline: none;
    
    /* Remove default styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Custom arrow */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    
    /* Text handling */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    
    /* Interaction */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.dosage-select-new:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(254, 90, 19, 0.1);
}

.dosage-select-new:hover {
    border-color: #cbd5e0;
}

.dosage-select-new option {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    background-color: #ffffff;
    padding: 12px 16px;
    line-height: 1.5;
    border: none;
    outline: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .dosage-select-new {
        padding-right: 30px;
        background-position: right 8px center;
        text-indent: 0.01px;
        text-overflow: '';
        /* Force dropdown width in Firefox */
        width: 100% !important;
    }
    
    .dosage-select-new option {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* IE/Edge specific fixes */
.dosage-select-new::-ms-expand {
    display: none;
}

/* Safari specific fixes */
@supports (-webkit-appearance: none) {
    .dosage-select-new {
        -webkit-appearance: none;
        appearance: none;
        background-clip: padding-box;
    }
}

/* Chrome/Webkit specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .dosage-select-new {
        background-clip: padding-box;
        /* Force consistent width in Chrome */
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .dosage-select-new option {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Additional cross-browser compatibility */
.dosage-select-new {
    /* Ensure consistent box model */
    box-sizing: border-box !important;
    
    /* Prevent zoom on iOS */
    font-size: max(16px, 14px);
    
    /* Ensure proper line height */
    line-height: 1.5;
    
    /* Prevent text selection issues */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* Force consistent styling across all browsers */
    border-style: solid !important;
    border-color: #e1e5e9 !important;
    background-color: #ffffff !important;
    
    /* Ensure proper text alignment */
    text-align: left;
    text-align-last: left;
    
    /* Remove any inherited styles */
    margin: 0;
    
    /* Ensure proper display */
    display: block;
    width: 100% !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .dosage-select-new {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

/* Dropdown list container styling */
.dosage-select-new {
    /* Force dropdown to match select width */
    min-width: 0;
    max-width: 100%;
}

/* Webkit-specific dropdown styling */
.dosage-select-new::-webkit-scrollbar {
    width: 8px;
}

.dosage-select-new::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 4px;
}

.dosage-select-new::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.dosage-select-new::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Force dropdown options to respect container width */
.dosage-select-new optgroup,
.dosage-select-new option {
    min-width: 0;
    max-width: 100%;
    width: auto;
}

/* CRITICAL DROPDOWN ALIGNMENT FIX - MAXIMUM SPECIFICITY */
.product-card-new .dosage-select-wrapper .dosage-select-new {
    /* Prevent dropdown from expanding beyond container */
    contain: layout style !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1 !important;
}

/* FORCE DROPDOWN WIDTH ALIGNMENT - HIGHEST PRIORITY */
.product-card-new .dosage-select-wrapper select.dosage-select-new {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    position: relative !important;
}

/* FORCE OPTION ALIGNMENT - CRITICAL */
.product-card-new .dosage-select-wrapper select.dosage-select-new option {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    background: #ffffff !important;
    color: #2d3748 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* BROWSER-SPECIFIC DROPDOWN FIXES */
@supports (-webkit-appearance: none) {
    .product-card-new .dosage-select-wrapper select.dosage-select-new {
        -webkit-appearance: none !important;
        appearance: none !important;
    }
}

@-moz-document url-prefix() {
    .product-card-new .dosage-select-wrapper select.dosage-select-new {
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    .product-card-new .dosage-select-wrapper select.dosage-select-new option {
        padding: 12px 16px !important;
        text-indent: 0 !important;
    }
}

.product-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}

.product-price-new {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.buy-now-btn-new {
    background: var(--color-orange);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.buy-now-btn-new:hover {
    background: #e54e0f;
    transform: translateY(-1px);
    color: #fff;
}

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

.bottom-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-charcoal);
}

/* =============== DELIVERY FEATURES SECTION =============== */
.delivery-section {
    padding: 100px 0;
    background: linear-gradient(166deg, #F9DCCD 0%, #FFCCB2 100%);
}

.delivery-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.delivery-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.delivery-subtitle {
    font-size: 18px;
    color: var(--color-dark-text);
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1500px;
    margin: 0 auto;
}

.delivery-item {
    text-align: center;
    position: relative;
    padding: 60px 30px 40px;
    background: #fde2ce;
    border-radius: 25px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 30px;
    line-height: 1;
}

.delivery-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Fixed height for consistent alignment */
}

.delivery-icon img {
    max-width: 60px;
    max-height: 60px; /* Ensures icons don't exceed container */
    width: auto;
    height: auto;
    object-fit: contain;
}

.delivery-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 52px; /* Ensures consistent height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.delivery-feature-description {
    font-size: 16px;
    color: var(--color-dark-text);
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    margin-bottom: 25px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.product-type {
    font-size: 18px;
    color: var(--color-medium-gray);
    margin-bottom: 15px;
}

.product-ingredient {
    font-size: 14px;
    color: var(--color-light-gray);
    margin-bottom: 20px;
}

.product-description {
    font-size: 14px;
    color: var(--color-medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.read-more {
    color: var(--color-orange);
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
}

.hidden-text {
    display: none;
}

/* Old dosage-select class removed - using dosage-select-new instead */

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.buy-now-btn {
    background: var(--color-orange);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.buy-now-btn:hover {
    background: #e54e0f;
    transform: translateY(-1px);
    color: #fff;
}

/* =============== CONTACT SECTION =============== */
.contact-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-section:not(.site-footer .contact-section) .contact-info .contact-item {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-label {
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 5px;
}

.contact-value {
    color: var(--color-orange);
    font-weight: 500;
}

/* Contact item spacing fix */
.site-footer .contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.site-footer .contact-section .contact-item span:first-child {
    width: 16px;
    flex-shrink: 0;
}

.site-footer .contact-section .contact-item span:last-child {
    color: #666;
}

/* =============== FAQ SECTION =============== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    flex: 0 0 400px;
    padding-right: 40px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--color-medium-gray);
    line-height: 1.6;
    margin: 0;
}

.faq-right {
    flex: 1;
    padding-left: 40px;
    border-left: 1px solid #0a0a0a;
}

.faq-list {
    width: 100%;
}

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #fff;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 500;
    color: var(--color-charcoal);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: color 0.3s ease;
    border: none;
    border-radius: 0;
    margin: 0;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    color: var(--color-orange);
    background: transparent;
}

.faq-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-orange);
    font-weight: 400;
    flex-shrink: 0;
}

.faq-answer {
    padding: 25px;
    color: var(--color-medium-gray);
    line-height: 1.6;
    font-size: 14px;
    border-top: none;
    display: block;
    border-left: 4px solid var(--color-orange);
    margin-left: 25px;
    margin-right: 25px;
    padding-left: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =============== FOOTER =============== */
.site-footer {
    width: 100%;
    background: #f8f9fa;
    color: #333;
    padding: 50px 0 0;
    margin-top: 0;
    position: relative;
    border-top: 1px solid #e0e0e0;
}

.site-footer .container {
    max-width: 1900px !important;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2.5fr 1fr 1.2fr;
    gap: 70px;
    margin-bottom: 0;
    align-items: start;
    align-content: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Ensure all footer sections start at same baseline */
.footer-section:nth-child(2),
.footer-section:nth-child(3),
.footer-section:nth-child(4) {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Force all footer titles to same baseline */
.footer-section .footer-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
    line-height: 1.2 !important;
    display: block !important;
}

/* Reset any potential margin/padding on contact section */
.footer-section.contact-section {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-section.contact-section .footer-title {
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 8px !important;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
}

.footer-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    height: 30px;
    width: auto;
}

.footer-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff6b35;
}

/* Footer Menu Columns */
.footer-menu-columns {
    display: flex;
    gap: 50px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.footer-menu a:hover {
    color: #333;
}

/* Operating Hours */
.operating-hours {
    margin-top: 0;
    margin-bottom: 25px;
}

.operating-hours p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 5px;
}

.operating-hours strong {
    color: #333;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    position: relative;
}

/* Force Contact Info title alignment - Cache Buster v2 */
.site-footer .footer-section.contact-section .footer-title {
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    position: relative !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
}

.site-footer .footer-section.contact-section .footer-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background: #ff6b35 !important;
}

.site-footer .contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.site-footer .contact-section .contact-item span:first-child {
    width: 16px;
    flex-shrink: 0;
}

.site-footer .contact-section .contact-item span:last-child {
    color: #666;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin: 15px 0;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    transition: none;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: #999;
}

.social-icon:hover {
    background: #f5f5f5;
    color: #666;
}

.social-icon:hover svg {
    fill: #666;
}

/* HIPAA Badge */
.hipaa-badge {
    margin-top: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hipaa-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.footer-bottom {
    background: #444;
    color: #fff;
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom .container {
    max-width: 1900px !important;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-copyright p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* =============== RESPONSIVE DESIGN =============== */
/* Hide mobile menu overlay on desktop */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .mobile-navigation {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .products-grid-new {
        gap: 30px;
        max-width: 900px;
    }
    
    .product-card-new {
        padding: 25px;
    }
    
    .product-image-new img {
        max-height: 280px;
    }
    
    .how-it-works {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Who Section for tablets */
    .who-content {
        gap: 30px;
    }
    
    .who-left {
        flex: 0 0 auto;
        max-width: 600px;
        margin: 0 auto;
        padding: 35px;
    }
    
    .who-title {
        font-size: 36px;
    }
    
    .who-subtitle {
        font-size: 17px;
    }
    
    .who-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .who-card {
        min-height: 200px;
        padding: 30px 25px;
    }
    
    .who-card h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }
    
    .compliance-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .notice-bar {
        padding: 10px 0;
        font-size: 16px;
    }
    
    .notice-text {
        padding: 0 15px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .mobile-navigation {
        display: block;
        max-width: 280px;
        right: -100%;
    }
    
    .mobile-navigation.active {
        right: 0;
    }
    
    /* Top Header Mobile Layout */
    .top-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 0 15px;
    }
    
    .top-header-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        order: 1;
        width: 100%;
    }
    
    .top-header-center {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
        width: 100%;
    }
    
    .top-header-right {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;
        width: 100%;
    }
    
    /* Style individual contact items */
    .top-header-left .phone,
    .top-header-left .email,
    .top-header-center .email,
    .top-header-right .address {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .header-phone {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .ed-info-section {
        padding: 40px 0;
    }

.ed-info-content {
        margin: 0 20px;
        padding: 35px 30px;
        gap: 18px;
    }

    .ed-info-text p {
        font-size: 15px;
        line-height: 1.4;
    }

    .ed-cta-title {
        font-size: 18px;
    }

    .ed-phone-number a {
        font-size: 26px;
    }
    
    .who-section {
        padding: 40px 0;
        background: var(--color-cream);
    }
    
    .who-content {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .who-left {
        flex: none;
        padding: 25px 20px;
        text-align: left;
        background: #F5F5F5;
        border-radius: 20px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        min-height: 180px;
    }
    
    .who-left-content {
        flex: 1;
        max-width: 60%;
    }
    
    .who-title {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 700;
        color: var(--color-charcoal);
        line-height: 1.2;
        text-align: left;
    }
    
    .who-subtitle {
        font-size: 14px;
        margin-bottom: 0;
        color: var(--color-medium-gray);
        line-height: 1.5;
        text-align: left;
    }
    
    .medication-bottles {
        flex-shrink: 0;
        text-align: right;
        max-width: 35%;
    }
    
    .medication-bottles img {
        max-height: 140px;
        width: auto;
        object-fit: contain;
    }
    
    .who-right {
        width: 100%;
    }
    
    .who-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .who-card {
        min-height: 120px;
        padding: 20px;
        border-radius: 15px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    .who-card h3 {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        z-index: 2;
        position: relative;
        max-width: 70%;
        font-weight: 600;
        color: var(--color-charcoal);
    }
    
    .who-card-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        z-index: 2;
        position: relative;
    }
    
    /* Mobile-specific card styling to match reference image */
    .who-card-1 {
        background: url(/assets/images/who-is-it-for/Mask\ Group\ 36@2x.png) right center / auto 80% no-repeat, #EAE7E0;
        padding: 20px;
    }
    
    .who-card-1 h3 {
        margin-top: 10px;
        max-width: 60%;
    }
    
    .who-card-2 {
        background: url(/assets/images/who-is-it-for/holdhands@2x.png) right center / auto 90% no-repeat, #F5F5F5;
        padding: 20px;
    }
    
    .who-card-2 h3 {
        margin-top: 10px;
        max-width: 60%;
    }
    
    .who-card-3 {
        background: url(/assets/images/who-is-it-for/Group\ 5200@2x.png) center/contain no-repeat, #F5F5F5;
        padding: 40px 55px;
    }
    
    .who-card-3 h3 {
        margin-top: 10px;
        max-width: 60%;
    }
    
    .who-card-4 {
        background: linear-gradient(135deg, #FFE4D6 0%, #FFCCB2 100%);
        padding: 40px 30px;
    }
    
    .who-card-4 .who-card-content {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .who-card-4 h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    /* .who-card-content {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }
     */
    .who-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--color-charcoal);
        line-height: 1.4;
        margin: 0;
        text-align: center;
    }
    
    .who-card-image {
        margin-top: 20px;
        width: 100px;
        height: 100px;
        z-index: 1;
    }
    
    .who-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .who-card-icon {
        margin-top: auto;
        margin-bottom: 20px;
        width: 80px;
        height: 80px;
        z-index: 1;
    }
    
    .who-card-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .ed-info-text {
        max-width: 100%;
    }
    
    .ed-info-text p {
        font-size: 16px;
    }
    
    .features-grid,
    .products-grid,
    .products-grid-new,
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-new {
        gap: 30px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .product-card-new {
        padding: 20px;
        margin: 0;
    }
    
    .product-image-new {
        margin: -20px 0 20px;
    }
    
    .product-image-new img {
        max-height: 250px;
    }
    
    .dosage-select-new {
        height: 44px;
        font-size: 16px !important; /* Prevent zoom on iOS */
        padding: 10px 35px 10px 14px;
        border-width: 1px;
        background-position: right 10px center;
        background-size: 14px 14px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .dosage-select-new option {
        font-size: 13px;
        padding: 10px 14px;
        line-height: 1.4;
    }
    
    .products-title {
        font-size: 28px;
    }
    
    .bottom-title {
        font-size: 24px;
    }
    
    .delivery-title {
        font-size: 28px;
    }
    
    .delivery-subtitle {
        font-size: 16px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .delivery-feature-title {
        font-size: 18px;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-menu-columns {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .support-item {
        text-align: left;
        justify-content: center;
    }
    
    .compliance-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .compliance-badge {
        width: 100px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .faq-left {
        flex: none;
        padding-right: 0;
        text-align: center;
    }
    
    .faq-right {
        padding-left: 0;
        border-left: none;
    }
    
    .faq-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top header adjustments for small mobile */
    .top-header-content {
        gap: 6px;
        padding: 0 10px;
    }
    
    .top-header-left {
        gap: 15px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    
    .top-header-left .phone,
    .top-header-left .email,
    .top-header-center .email,
    .top-header-right .address {
        font-size: 11px;
        gap: 6px;
    }
    
    .hero-section {
        padding: 20px 0 10px 0;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-button {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Enhanced Who Section for small mobile */
    .who-section {
        padding: 30px 0;
    }
    
    .who-content {
        max-width: 350px;
        gap: 25px;
    }
    
    .who-left {
        flex: none;
        padding: 25px 15px;
        text-align: left;
        background: #F5F5F5;
        border-radius: 15px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        max-width: 100%;
        min-height: 160px;
    }
    
    .who-left-content {
        flex: 1;
        max-width: 60%;
    }
    
    .who-title {
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: 700;
        color: var(--color-charcoal);
        line-height: 1.2;
        text-align: left;
    }
    
    .who-subtitle {
        font-size: 13px;
        margin-bottom: 0;
        color: var(--color-medium-gray);
        line-height: 1.5;
        text-align: left;
    }
    
    .medication-bottles {
        flex-shrink: 0;
        text-align: right;
        max-width: 35%;
    }
    
    .medication-bottles img {
        max-height: 160px;
    }
    
    .who-grid {
        gap: 12px;
    }
    
    .who-card {
        min-height: 110px;
        padding: 18px 15px;
        border-radius: 12px;
    }
    
    .who-card h3 {
        font-size: 13px;
        line-height: 1.3;
        max-width: 65%;
        margin-top: 8px;
    }
    
    /* Adjust background images for small screens */
    .who-card-1 {
        background: url(/assets/images/who-is-it-for/Mask\ Group\ 36@2x.png) right center / auto 75% no-repeat, #EAE7E0;
        padding: 15px;
    }
    
    .who-card-2 {
        background: url(/assets/images/who-is-it-for/holdhands@2x.png) right center / auto 85% no-repeat, #F5F5F5;
        padding: 15px;
    }
    
    .who-card-3 {
        background: url(/assets/images/who-is-it-for/Group\ 5200@2x.png) center/contain no-repeat, #F5F5F5;
        padding: 40px 55px;
    }
    
    .who-card-1 h3,
    .who-card-2 h3,
    .who-card-3 h3 {
        margin-top: 8px;
        font-size: 13px;
        max-width: 65%;
    }
    
    .who-card-4 {
        padding: 18px 15px;
    }
    
    .who-card-4 h3 {
        font-size: 13px;
        line-height: 1.3;
        margin: 8px 0 0 0;
        max-width: 100%;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-footer-new {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .products-grid-new {
        gap: 20px;
        padding: 0 10px;
    }
    
    .product-card-new {
        padding: 15px;
    }
    
    .product-image-new {
        margin: -15px 0 15px;
    }
    
    .product-image-new img {
        max-height: 200px;
    }
    
    .product-name {
        font-size: 20px;
    }
    
    .product-price-new {
        font-size: 20px;
    }
    
    .buy-now-btn-new {
        flex-shrink: 0;
        min-width: 120px;
        text-align: center;
        padding: 12px 20px;
    }

    .ed-info-section {
        padding: 30px 0;
    }

    .ed-info-content {
        margin: 0 15px;
        padding: 30px 25px;
        gap: 15px;
    }

    .ed-info-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .ed-cta-title {
        font-size: 16px;
    }

    .ed-phone-number span {
        font-size: 22px;
    }
    
    /* Footer mobile fixes */
    .site-footer .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .footer-menu-columns {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .payment-methods {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

/* =============== ANIMATIONS =============== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item,
.product-card,
.work-item,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.feature-item.animate-in,
.product-card.animate-in,
.work-item.animate-in,
.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Header scrolled state */
.header-wrapper.scrolled .main-header {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    background: rgba(249,220,205,0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-wrapper.scrolled .main-header::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 50%, rgba(0,0,0,0.03) 100%);
}

/* =============== UTILITIES =============== */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FORCE FOOTER CHANGES - Cache Buster v3 */

/* This is now handled above in the main footer section */

/* Force HIPAA Badge Centering */
.site-footer .footer-section .hipaa-badge {
    margin-top: 15px !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* Remove ALL animations from contact items */
.site-footer .contact-section .contact-item,
.site-footer .contact-section .contact-item *,
.site-footer .contact-section .social-icons,
.site-footer .contact-section .social-icons * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* Force contact items to be simple */
.site-footer .contact-section .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transition: none !important;
    animation: none !important;
}

/* Force social icons to be simple */
.site-footer .contact-section .social-icon {
    width: 32px !important;
    height: 32px !important;
    color: #999 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 14px !important;
    background: #fff !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.site-footer .contact-section .social-icon:hover {
    background: #f5f5f5 !important;
    color: #666 !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* FOOTER LAYOUT FIX - CLEAN VERSION */
.site-footer .container {
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
}

.site-footer .footer-content {
    display: grid !important;
    grid-template-columns: 2fr 2.5fr 1fr 1.2fr !important;
    gap: 70px !important;
    margin-bottom: 0 !important;
    align-items: start !important;
    align-content: start !important;
    width: 100% !important;
}

.site-footer .footer-section .footer-menu-columns {
    display: flex !important;
    gap: 100px !important;
    width: 100% !important;
}

.footer-bottom .container {
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
}

/* Mobile Footer Responsive Override */
@media (max-width: 768px) {
    .site-footer .container,
    .footer-bottom .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .site-footer .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .site-footer .footer-section .footer-menu-columns {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

/* Force refresh - Cache Buster v4 */

/* =============== MOBILE-ONLY FOOTER =============== */
.mobile-footer {
    display: none;
    background: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 0;
    border-top: 1px solid #e0e0e0;
}

.mobile-footer .container {
    max-width: 100%;
    padding: 0 15px;
}

.mobile-footer-brand {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-footer-logo {
    margin-bottom: 15px;
}

.mobile-footer-logo .logo {
    height: 45px;
    width: auto;
}

.mobile-footer-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mobile-payment-methods .payment-icon {
    height: 30px;
    width: auto;
}

.mobile-footer-section {
    margin-bottom: 30px;
    text-align: center;
}

.mobile-footer-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.mobile-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #ff6b35;
}

.mobile-operating-hours p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 5px;
}

.mobile-operating-hours strong {
    color: #333;
    font-weight: 600;
}

.mobile-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-menu-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.mobile-menu-column a:hover {
    color: #333;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.mobile-contact-item span:first-child {
    width: 145px;
    flex-shrink: 0;
}

.mobile-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.mobile-social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-social-icon:hover {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255,107,53,0.3);
}

.mobile-footer-bottom {
    background: #444;
    color: #fff;
    padding: 25px 0;
    margin-top: 20px;
}

.mobile-footer-bottom .container {
    max-width: 100%;
    padding: 0 15px;
}

.mobile-footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-footer-links a:hover {
    color: #ff6b35;
}

.mobile-footer-copyright p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* Show mobile footer only on mobile devices */
@media (max-width: 768px) {
    .site-footer {
        display: none !important;
    }
    
    .mobile-footer {
        display: block;
    }
    
    .footer-bottom {
        display: none !important;
    }
}

/* =============== DROPDOWN ALIGNMENT EMERGENCY FIX =============== */
/* This section has the highest priority and should override everything */

/* FINAL DROPDOWN FIX - NO RESET, JUST FORCE ALIGNMENT */
body .product-card-new .dosage-select-wrapper select.dosage-select-new {
    /* Force exact dimensions */
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: 48px !important;
    
    /* Force styling */
    display: block !important;
    box-sizing: border-box !important;
    padding: 12px 40px 12px 16px !important;
    border: 2px solid #e1e5e9 !important;
    border-radius: 8px !important;
    background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") no-repeat right 12px center !important;
    background-size: 16px 16px !important;
    
    /* Force typography */
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2d3748 !important;
    line-height: 1.5 !important;
    text-align: left !important;
    
    /* Force behavior */
    cursor: pointer !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    
    /* Force overflow handling */
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    
    /* Force positioning */
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
}

/* FORCE OPTION ALIGNMENT - CRITICAL */
body .product-card-new .dosage-select-wrapper select.dosage-select-new option {
    /* Force option dimensions to match select */
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    
    /* Force option styling */
    display: block !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    
    /* Force option appearance */
    background-color: #ffffff !important;
    color: #2d3748 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    
    /* Force option text handling */
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    
    /* Force option behavior */
    cursor: pointer !important;
}

/* Force wrapper constraints */
.dosage-select-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Browser-specific emergency fixes */
@supports (-webkit-appearance: none) {
    .dosage-select-new,
    select.dosage-select-new {
        -webkit-appearance: none !important;
        appearance: none !important;
    }
}

@-moz-document url-prefix() {
    .dosage-select-new,
    select.dosage-select-new {
        -moz-appearance: none !important;
        appearance: none !important;
    }
}

/* IE/Edge emergency fix */
.dosage-select-new::-ms-expand,
select.dosage-select-new::-ms-expand {
    display: none !important;
}

/* =============== SPECIFIC FIX FOR 430x932 VIEWPORT (iPhone 14 Pro Max) =============== */
@media screen and (max-width: 430px) and (max-height: 932px) {
    /* Force container width on iPhone 14 Pro Max */
    .product-card-new .dosage-select-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        position: relative !important;
        contain: layout !important;
    }
    
    /* Force dropdown width on iPhone 14 Pro Max */
    .product-card-new .dosage-select-wrapper select.dosage-select-new {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding: 10px 35px 10px 14px !important;
        font-size: 16px !important;
        height: 44px !important;
        border-width: 1px !important;
        background-position: right 10px center !important;
        background-size: 14px 14px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        position: relative !important;
        display: block !important;
        margin: 0 !important;
        contain: layout !important;
    }
    
    /* Force option width on iPhone 14 Pro Max */
    .product-card-new .dosage-select-wrapper select.dosage-select-new option {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding: 10px 14px !important;
        margin: 0 !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        display: block !important;
        border: none !important;
        outline: none !important;
        background: #ffffff !important;
        color: #2d3748 !important;
        text-align: left !important;
    }
    
    /* Force product card constraints on iPhone 14 Pro Max */
    .product-card-new {
        overflow: hidden !important;
        contain: layout !important;
        max-width: 100% !important;
    }
    
    /* Additional container constraints */
    .products-grid-new {
        overflow: hidden !important;
        contain: layout !important;
    }
    
    /* Who Section for iPhone 14 Pro Max */
    .who-section {
        padding: 35px 0;
    }
    
    .who-content {
        max-width: 380px;
        gap: 28px;
    }
    
    .who-left {
        padding: 25px 20px;
        border-radius: 15px;
        margin-bottom: 18px;
    }
    
    .who-title {
        font-size: 23px;
        margin-bottom: 15px;
    }
    
    .who-subtitle {
        font-size: 14px;
        margin-bottom: 22px;
    }
    
    .medication-bottles img {
        max-height: 170px;
    }
    
    .who-grid {
        gap: 14px;
    }
    
    .who-card {
        min-height: 115px;
        padding: 20px 18px;
        border-radius: 14px;
    }
    
    .who-card h3 {
        font-size: 14px;
        line-height: 1.35;
        max-width: 65%;
        margin-top: 8px;
    }
    
    .who-card-1 {
        background: url(/assets/images/who-is-it-for/Mask\ Group\ 36@2x.png) right center / auto 78% no-repeat, #EAE7E0;
        padding: 18px;
    }
    
    .who-card-2 {
        background: url(/assets/images/who-is-it-for/holdhands@2x.png) right center / auto 88% no-repeat, #F5F5F5;
        padding: 18px;
    }
    
    .who-card-3 {
        background: url(/assets/images/who-is-it-for/Group\ 5200@2x.png) center/contain no-repeat, #F5F5F5;
        padding: 40px 55px;
    }
    
    .who-card-1 h3,
    .who-card-2 h3,
    .who-card-3 h3 {
        margin-top: 8px;
        font-size: 14px;
        max-width: 65%;
    }
    
    .who-card-4 {
        padding: 20px 18px;
    }
    
    .who-card-4 h3 {
        font-size: 14px;
        line-height: 1.35;
        margin: 8px 0 0 0;
        max-width: 100%;
    }
}

/* =============== MOBILE-ONLY HERO SECTION =============== */
.mobile-hero-section {
    display: none;
    background: url(/assets/images/Header/Group\ 5201.png) center center / cover no-repeat, linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.3) 100%);
    padding: 40px 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    align-items: flex-start;
    justify-content: center;
}

.mobile-hero-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.mobile-hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: 15px;
    text-align: center;
}

.mobile-hero-subtitle {
    font-size: 16px;
    color: var(--color-medium-gray);
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

.mobile-hero-review-badge {
    margin: 30px 0;
    text-align: center;
}

.mobile-hero-review-badge img {
    max-width: 180px;
    height: auto;
}

/* Show mobile hero only on mobile devices */
@media (max-width: 768px) {
    .hero-section {
        display: none !important;
    }
    
    .mobile-hero-section {
        display: flex;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .mobile-hero-section {
        padding: 30px 0 15px;
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
    }
    
    .mobile-hero-content {
        max-width: 350px;
        padding: 0 15px;
        padding-top: 30px;
    }
    
    .mobile-hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .mobile-hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .mobile-hero-review-badge {
        margin: 25px 0;
    }
    
    .mobile-hero-review-badge img {
        max-width: 160px;
    }
}

/* =============== PAGE CONTENT STYLES =============== */
.content-area {
    padding: 80px 0;
    background: #fff;
}

.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-page-article {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.entry {
    padding: 60px;
    line-height: 1.8;
}

.entry h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 30px;
    text-align: center;
}

.entry h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin: 40px 0 20px 0;
    border-bottom: 2px solid var(--color-orange);
    padding-bottom: 10px;
}

.entry p {
    font-size: 16px;
    color: var(--color-dark-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.entry ul,
.entry ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry li {
    font-size: 16px;
    color: var(--color-dark-text);
    margin-bottom: 10px;
    line-height: 1.6;
}

.entry strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

.entry em {
    font-style: italic;
    color: var(--color-medium-gray);
    font-size: 14px;
}

/* Responsive design for page content */
@media (max-width: 768px) {
    .content-area {
        padding: 40px 0;
    }
    
    .site-content {
        padding: 0 15px;
    }
    
    .entry {
        padding: 30px 20px;
    }
    
    .entry h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .entry h3 {
        font-size: 20px;
        margin: 30px 0 15px 0;
    }
    
    .entry p,
    .entry li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .entry {
        padding: 20px 15px;
    }
    
    .entry h2 {
        font-size: 24px;
    }
    
    .entry h3 {
        font-size: 18px;
    }
}

/* =============== PRESCRIPTION ASSISTANCE PAGE =============== */
.prescription-assistance-section {
    padding: 40px 0 40px;
    background-color: #ffffff;
    background-image: url(images/11/137374_different-drugs-and-health-supplement-pills-in-a-question-mark-poured-from-a-medicine-bottle-1@2x.jpg), url(../images/11/137374_different-drugs-and-health-supplement-pills-in-a-question-mark-poured-from-a-medicine-bottle-1@2x.jpg), url(/assets/images/11/137374_different-drugs-and-health-supplement-pills-in-a-question-mark-poured-from-a-medicine-bottle-1@2x.jpg);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: auto;
    position: relative;
}

.prescription-assistance-section > .container {
    position: relative;
    z-index: 2;
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.header-icon {
    flex-shrink: 0;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin: 0;
    line-height: 1.2;
}

/* Main Content Card */
.prescription-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.content-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-header p {
    font-size: 16px;
    color: var(--color-dark-text);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Support Section */
.support-section {
    text-align: center;
    margin-bottom: 20px;
}

.support-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 30px;
}

.support-btn {
    background: var(--color-orange);
    color: #fff;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 90, 19, 0.3);
    min-width: 320px;
}

.support-btn:hover {
    background: #e54e0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 90, 19, 0.4);
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .prescription-content-card {
        padding: 45px;
    }
}

@media (max-width: 768px) {
    .prescription-assistance-section {
        padding: 20px 0 30px;
        background-color: #FFF8F0;
        background-image: none;
    }
    
    .page-header {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        margin-bottom: 30px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .prescription-content-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .content-header h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .content-header p {
        font-size: 15px;
    }
    
    .support-section {
        margin-bottom: 15px;
    }
    
    .support-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .support-btn {
        padding: 18px 40px;
        font-size: 16px;
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .prescription-assistance-section {
        background-color: #FFF8F0;
        background-image: none;
    }
    
    .page-header {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .prescription-content-card {
        padding: 25px 20px;
    }
    
    .content-header h2 {
        font-size: 24px;
    }
    
    .content-header p {
        font-size: 14px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .support-section h3 {
        font-size: 20px;
    }
    
    .support-btn {
        padding: 16px 30px;
        font-size: 15px;
        min-width: 260px;
    }
}

/* =============== ABOUT MEDLOCKER SECTION =============== */
.about-medlocker-section {
    padding: 80px 0;
    background: #F5F5F5;
    text-align: center;
}

.about-medlocker-content {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-medlocker-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 40px;
    line-height: 1.2;
}

.about-medlocker-description {
    font-size: 16px;
    color: var(--color-dark-text);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.about-medlocker-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-feature-item {
    text-align: center;
    padding: 20px;
}

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.about-feature-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.about-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-feature-description {
    font-size: 16px;
    color: var(--color-dark-text);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* Mobile Responsive for About Medlocker */
@media (max-width: 1024px) {
    .about-medlocker-features {
        gap: 40px;
    }
    
    .about-feature-icon img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .about-medlocker-section {
        padding: 60px 0;
    }
    
    .about-medlocker-content {
        margin-bottom: 10px;
        padding: 0 20px;
    }
    
    .about-medlocker-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-medlocker-description {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .about-medlocker-features {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 20px;
    }
    
    .about-feature-item {
        padding: 15px;
    }
    
    .about-feature-icon {
        margin-bottom: 20px;
    }
    
    .about-feature-icon img {
        width: 90px;
        height: 90px;
    }
    
    .about-feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .about-feature-description {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-medlocker-section {
        padding: 40px 0;
    }
    
    .about-medlocker-content {
        margin-bottom: 10px;
        padding: 0 15px;
    }
    
    .about-medlocker-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .about-medlocker-description {
        font-size: 14px;
    }
    
    .about-medlocker-features {
        gap: 10px;
        padding: 0 15px;
    }
    
    .about-feature-icon {
        margin-bottom: 15px;
    }
    
    .about-feature-icon img {
        width: 80px;
        height: 80px;
    }
    
    .about-feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .about-feature-description {
        font-size: 14px;
    }
}

/* =============== COMPLIANCE SECTION =============== */
.compliance-section {
    padding: 100px 0 0;
    background: #fff;
    position: relative;
    z-index: 3;
}

.compliance-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.compliance-left {
    flex: 0 0 700px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.compliance-image {
    position: relative;
    z-index: 2;
}

.compliance-image img {
    width: 100%;
    height: auto;
    max-width: 700px;
    min-height: 800px;
    object-fit: contain;
    object-position: bottom;
}

.compliance-right {
    flex: 1;
    max-width: 650px;
    padding-top: 50px;
}

.compliance-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 40px;
    line-height: 1.2;
}

.compliance-text {
    margin-bottom: 40px;
}

.compliance-text p {
    font-size: 16px;
    color: var(--color-dark-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.compliance-text p:last-child {
    margin-bottom: 0;
}

.compliance-text a {
    color: #fe5a13;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.compliance-text a:hover {
    color: #e54e0f;
    text-decoration: underline;
}

.compliance-badges {
    display: flex;
    gap: 120px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.compliance-badge {
    flex-shrink: 0;
}

.compliance-badge img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Responsive for Compliance Section */
@media (max-width: 1024px) {
    .compliance-content {
        gap: 60px;
    }
    
    .compliance-left {
        flex: 0 0 600px;
    }
    
    .compliance-image img {
        max-width: 600px;
        min-height: 700px;
    }
    
    .compliance-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .compliance-text p {
        font-size: 15px;
    }
    
    .compliance-badges {
        gap: 35px;
        justify-content: center;
    }
    
    .compliance-badge img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .compliance-section {
        padding: 60px 0 0;
    }
    
    .compliance-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 10px;
    }
    
    .compliance-left {
        flex: none;
        order: 2;
        margin: 0 -10px;
    }
    
    .compliance-image img {
        max-width: 100vw;
        min-height: 500px;
        width: 100%;
    }
    
    .compliance-right {
        flex: none;
        max-width: 100%;
        order: 1;
        padding-top: 0;
        padding: 0 20px;
    }
    
    .compliance-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .compliance-text {
        margin-bottom: 30px;
        text-align: left;
    }
    
    .compliance-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .compliance-badges {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 25px;
    }
    
    .compliance-badge img {
        height: 90px;
    }
    
    .customer-support-section {
        margin-top: -100px;
    }
    
    .support-content {
        padding: 180px 0 40px;
    }
}

@media (max-width: 480px) {
    .compliance-section {
        padding: 40px 0 0;
    }
    
    .compliance-content {
        gap: 30px;
        padding: 0 5px;
    }
    
    .compliance-left {
        margin: 0 -5px;
    }
    
    .compliance-image img {
        max-width: 100vw;
        min-height: 400px;
        width: 100%;
    }
    
    .compliance-right {
        padding: 0 15px;
    }
    
    .compliance-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .compliance-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .compliance-badges {
        gap: 25px;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .compliance-badge img {
        height: 80px;
    }
    
    .customer-support-section {
        margin-top: -80px;
    }
    
    .support-content {
        padding: 150px 0 30px;
    }
}

/* =============== CUSTOMER SUPPORT SECTION =============== */
.customer-support-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -200px;
    z-index: 1;
}

.support-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.support-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.customer-support-section .container {
    position: relative;
    z-index: 2;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.support-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 600px;
    padding: 280px 0 80px;
    padding-left: 100px;
    width: 100%;
}

.support-card {
    background: rgba(255, 255, 255, -1.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 190px 60px 50px;
    max-width: 900px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-left: 0;
    margin-right: auto;
    border: 1px solid #FFFFFF;
}

.support-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 30px;
    line-height: 1.2;
}

.support-text {
    margin-bottom: 40px;
}

.support-text p {
    font-size: 20px;
    color: var(--color-dark-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.support-text p:last-child {
    margin-bottom: 0;
}

.support-btn {
    background: var(--color-orange);
    color: #fff;
    padding: 25px 50px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 90, 19, 0.3);
    min-width: 550px;
    text-align: center;
}

.support-btn:hover {
    background: #e54e0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 90, 19, 0.4);
    color: #fff;
}

/* Responsive for Customer Support Section */
@media (max-width: 1024px) {
    .customer-support-section {
        min-height: 500px;
    }
    
    .customer-support-section .container {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .support-content {
        min-height: 500px;
        padding: 60px 0;
        padding-left: 80px;
        width: 100%;
    }
    
    .support-card {
        padding: 50px 40px;
        max-width: 550px;
        margin-right: auto;
    }
    
    .support-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .support-text p {
        font-size: 16px;
    }
    
    .support-btn {
        padding: 22px 45px;
        font-size: 18px;
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .customer-support-section {
        min-height: 400px;
        margin-top: -50px;
    }
    
    .customer-support-section .container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0 15px;
    }
    
    .support-content {
        min-height: 400px;
        padding: 100px 0 40px;
        padding-left: 0;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .support-card {
        padding: 25px 20px;
        margin: 0;
        border-radius: 15px;
        background: rgba(255, 255, 255, -1.15);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .support-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .support-text {
        margin-bottom: 25px;
    }
    
    .support-text p {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .support-btn {
        padding: 16px 30px;
        font-size: 16px;
        min-width: 250px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .customer-support-section {
        min-height: 350px;
        margin-top: -30px;
    }
    
    .customer-support-section .container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0 10px;
    }
    
    .support-content {
        min-height: 350px;
        padding: 80px 0 30px;
        width: 100%;
    }
    
    .support-card {
        padding: 25px 20px;
        margin: 0;
        border-radius: 15px;
        background: rgba(255, 255, 255, -1.15);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .support-title {
        font-size: 22px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .support-text {
        margin-bottom: 20px;
    }
    
    .support-text p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .support-btn {
        padding: 15px 25px;
        font-size: 15px;
        min-width: 200px;
        width: 100%;
        max-width: 250px;
    }
}

/* Expandable text functionality */
.expandable-text {
    margin-bottom: 15px;
}

.visible-text {
    margin-bottom: 0;
}

.hidden-text {
    margin-top: 15px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Animation for showing/hiding text */
.hidden-text.showing {
    display: block !important;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* JavaScript functionality for Read More */

/* Mobile-specific who-card-3 image override */
@media (max-width: 768px) {
    .who-card-3 {
        background: url(/assets/images/who-is-it-for/Group\ 5176@2x.png) right center / auto 60% no-repeat, #F5F5F5 !important;
    }
}

@media (max-width: 480px) {
    .who-card-3 {
        background: url(/assets/images/who-is-it-for/Group\ 5176@2x.png) right center / auto 55% no-repeat, #F5F5F5 !important;
    }
}

@media screen and (max-width: 430px) and (max-height: 932px) {
    .who-card-3 {
        background: url(/assets/images/who-is-it-for/Group\ 5176@2x.png) right center / auto 58% no-repeat, #F5F5F5 !important;
    }
}

/* Read More Link Styling */
.read-more-orange {
    color: #ff6b35 !important;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.read-more-orange:hover {
    color: #e55a2b !important;
    text-decoration: underline;
}

.read-more-orange:focus {
    color: #e55a2b !important;
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* =============== NEW HERO SECTION LAYOUT =============== */
/* New Hero Section Styles */
.hero-section-new {
    background: #fff;
    min-height: auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content-new {
    background: #FFF8F0;
    width: 100%;
    padding: 60px 0 40px 0;
    min-height: 400px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    background: url(/assets/images/Header/Rectangle_3721@2x.png) center / cover no-repeat, linear-gradient(40deg, #f8f2ea 0%, #fed4be 100%);
}

.hero-content-new .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 0 40px;
    background: url(/assets/images/Header/Rectangle_3721@2x.png) center / cover no-repeat, linear-gradient(54deg, #e1dfd940 0%, #FFCCB2 100%);
    border-radius: 25px 25px 0 0;
}

.hero-left {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
}

/* Hero Products Section */
.hero-products-section {
    background: #fff8f0;
    /* padding: 40px 0 60px 0; */
    margin-top: -44px;
}

.hero-title-new {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    max-width: 75%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* Mobile Hero Section New */
.mobile-hero-section-new {
    background: #fff;
    padding: 0;
    display: none;
}

.mobile-hero-content-new {
    background: #fff8f0;
    padding: 0px 20px 30px;
    text-align: center;
}

.mobile-hero-content-new .hero-container {
    background: #fff8f0;
    border-radius: 15px;
    padding: 40px 20px;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Mobile hero products section */
.mobile-hero-products-section {
    background: #fff;
    /* padding: 20px 0 40px 0; */
    margin-top: -50px;
    width: 100%;
    overflow-x: hidden;
}

.mobile-hero-title-new {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-charcoal);
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    order: 1;
}

.mobile-hero-image {
    margin-top: 25px;
    text-align: center;
    order: 2;
}

.mobile-hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
}

/* Hero Products Grid */
.hero-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1465px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    align-items: stretch;
   
}

.product-card-hero {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 420px;
    position: relative;
    gap: 20px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.product-image-hero {
    flex-shrink: 0;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 5px;
    gap: 12px;
    box-sizing: border-box;
}

.product-image-hero img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

/* Product content wrapper */
.product-content-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.product-name-hero {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 6px;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-meta-hero {
    font-size: 13px;
    color: var(--color-medium-gray);
    margin-bottom: 12px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-info-hero {
    text-align: left;
    margin-bottom: 25px;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-info-hero p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-dark-text);
    margin: 0;
    display: block !important;
    visibility: visible !important;
}

.product-actions-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: 10px;
}

.dosage-select-wrapper-hero {
    margin-bottom: 15px;
}

/* Simplified dropdown styling */

/* Restore original select styling */
.dosage-select-hero {
    width: 100%;
    height: 52px;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    cursor: pointer;
    outline: none;
    
    /* Remove default styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Custom arrow */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    
    /* Text handling */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    
    /* Interaction */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.dosage-select-hero:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(254, 90, 19, 0.1);
}

.dosage-select-hero:hover {
    border-color: #cbd5e0;
}

.dosage-select-hero option {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    background-color: #ffffff;
    padding: 12px 16px;
    line-height: 1.5;
    border: none;
    outline: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .dosage-select-hero {
        padding-right: 30px;
        background-position: right 8px center;
        text-indent: 0.01px;
        text-overflow: '';
        /* Force dropdown width in Firefox */
        width: 100% !important;
    }
    
    .dosage-select-hero option {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* IE/Edge specific fixes */
.dosage-select-hero::-ms-expand {
    display: none;
}

/* Safari specific fixes */
@supports (-webkit-appearance: none) {
    .dosage-select-hero {
        -webkit-appearance: none;
        appearance: none;
        background-clip: padding-box;
    }
}

/* Chrome/Webkit specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .dosage-select-hero {
        background-clip: padding-box;
        /* Force consistent width in Chrome */
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .dosage-select-hero option {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Additional cross-browser compatibility */
.dosage-select-hero {
    /* Ensure consistent box model */
    box-sizing: border-box !important;
    
    /* Prevent zoom on iOS */
    font-size: max(16px, 14px);
    
    /* Ensure proper line height */
    line-height: 1.5;
    
    /* Prevent text selection issues */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* Force consistent styling across all browsers */
    border-style: solid !important;
    border-color: #e1e5e9 !important;
    background-color: #ffffff !important;
    
    /* Ensure proper text alignment */
    text-align: left;
    text-align-last: left;
    
    /* Remove any inherited styles */
    margin: 0;
    
    /* Ensure proper display */
    display: block;
    width: 100% !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .dosage-select-hero {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

/* Dropdown list container styling */
.dosage-select-hero {
    /* Force dropdown to match select width */
    min-width: 0;
    max-width: 100%;
}

/* Webkit-specific dropdown styling */
.dosage-select-hero::-webkit-scrollbar {
    width: 8px;
}

.dosage-select-hero::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 4px;
}

.dosage-select-hero::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.dosage-select-hero::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Force dropdown options to respect container width */
.dosage-select-hero optgroup,
.dosage-select-hero option {
    min-width: 0;
    max-width: 100%;
}

.product-footer-hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.product-price-hero {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-charcoal);
    text-align: center;
}

.buy-now-btn-hero {
    background: var(--color-orange);
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.buy-now-btn-hero:hover {
    background: #e54e0f;
    color: #fff;
}

.more-info-wrapper-hero {
    margin-top: 10px;
}

.more-info-btn-hero {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.more-info-btn-hero:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

/* Hero Disclaimer */
.hero-disclaimer {
    text-align: center;
    max-width: 1400px;
    margin: -40px auto 0 auto;
    padding: 20px;
    /* background: #EAE7E0; */
    border-radius: 0 0 25px 25px;
    /* border: 1px solid #e9ecef; */
    background: url(/assets/images/Header/Rectangle_3721@2x.png) center / cover no-repeat, linear-gradient(78deg, #f5efe7 0%, #fadcca 100%);
}

.hero-disclaimer-container {
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 12px;
    padding: 15px 25px;
    max-width: 900px;
    margin: 0 auto;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.hero-disclaimer p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* FDA Info Section */
.fda-info-section {
    background: #fff8f0;
    padding: 60px 0;
    text-align: center;
}

.fda-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.fda-info-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.fda-review-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fda-review-badge img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

/* Desktop/Tablet Responsive */
@media (max-width: 1200px) {
    .hero-content-new {
        gap: 60px;
        padding: 0 15px;
    }
    
    .hero-title-new {
        font-size: 56px;
    }
    
    .hero-left {
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-section-new {
        min-height: 600px;
        padding: 60px 0;
    }
    
    .hero-content-new {
        gap: 40px;
    }
    
    .hero-title-new {
        font-size: 48px;
    }
}

/* Hide desktop hero on mobile, show mobile hero */
@media (max-width: 768px) {
    .hero-section-new {
        display: none;
    }
    
    .mobile-hero-section-new {
        display: block;
    }
    
    .mobile-hero-title-new {
        font-size: 28px;
    }
    
    /* Override hero-container gradients for mobile */
    .hero-container,
    .hero-content-new .hero-container {
        background: #fff8f0 !important;
    }
    
    .hero-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
        background: none;
        margin: 0 auto;
        width: 100%;
    }
    
    .product-card-hero {
        flex-direction: column;
        padding: 25px 20px;
        min-height: auto;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .product-image-hero {
        width: 80px;
        margin: 0 auto 20px auto;
        gap: 10px;
    }
    
    .product-content-hero {
        padding-top: 0;
    }
    
    .product-name-hero {
        font-size: 22px;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .product-meta-hero {
        text-align: center;
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .product-info-hero {
        text-align: center;
        margin-bottom: 20px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-info-hero p {
        font-size: 11px;
        line-height: 1.4;
        display: block !important;
        visibility: visible !important;
    }
    
    .dosage-select-hero {
        width: 100%;
        height: 44px;
        font-size: 16px;
    }
    
    .dosage-select-hero option {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #2d3748;
        background-color: #ffffff;
        padding: 12px 16px;
        line-height: 1.5;
        border: none;
        outline: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .dosage-select-wrapper-hero {
        overflow: hidden;
    }
    
    .product-price-hero {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .buy-now-btn-hero {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 120px;
        border-radius: 6px;
    }
    
    .more-info-btn-hero {
        text-align: center;
    }
    
    .hero-disclaimer {
        text-align: center;
        max-width: 1400px;
        margin: 0px auto 0 auto;
        padding: 20px;
        /* background: #EAE7E0; */
        border-radius: 0 0 25px 25px;
        /* border: 1px solid #e9ecef; */
        background: #fff8f0;
    }
}

@media (max-width: 480px) {
    .mobile-hero-section-new {
        padding: 0;
    }
    
    .mobile-hero-content-new {
        padding: 0 15px;
    }
    
    .mobile-hero-title-new {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .mobile-hero-image {
        margin-top: 25px;
    }
    
    .mobile-hero-image img {
        max-width: 95%;
        border-radius: 12px;
    }
    
    /* Mobile product cards improvements */
    .hero-products-grid {
        max-width: 100%;
        padding: 0 10px;
        gap: 15px;
    }
    
    .product-card-hero {
        padding: 20px 15px;
        margin: 0 auto;
        max-width: 320px;
        width: 100%;
        height: auto;
    }
    
    .product-image-hero {
        width: 70px;
        margin: 0 auto 15px auto;
    }
    
    .product-image-hero img {
        max-width: 70px;
    }
    
    .product-name-hero {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .product-meta-hero {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .product-info-hero p {
        font-size: 10px;
        line-height: 1.3;
        display: block !important;
        visibility: visible !important;
    }
    
    .product-price-hero {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .dosage-select-hero {
        width: 100%;
        height: 42px;
        font-size: 16px;
        padding: 8px 30px 8px 12px;
    }
    
    .dosage-select-hero option {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #2d3748;
        background-color: #ffffff;
        padding: 12px 16px;
        line-height: 1.5;
        border: none;
        outline: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .dosage-select-wrapper-hero {
        overflow: hidden;
    }
    
    .buy-now-btn-hero {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .more-info-btn-hero {
        font-size: 11px;
    }
}

.bottom-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
    text-align: center;
    margin-bottom: 10px;
}

/* Products disclaimer styling */
.products-disclaimer {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
}

.products-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

.products-disclaimer strong {
    font-weight: 600;
}

/* FDA Info Section Mobile Styles */
@media (max-width: 768px) {
    .fda-info-section {
        padding: 40px 0;
    }

    .fda-info-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .fda-review-badge img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .fda-info-section {
        padding: 30px 0;
    }

    .fda-info-title {
        font-size: 24px;
    }

    .fda-review-badge img {
        max-width: 160px;
    }
}