header .elite-logo,
footer .elite-logo {
    height: 2.5rem;
}

header nav.header-menu a,
header .action-menu a {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

header nav.header-menu a:visited,
header .action-menu a:visited {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

header nav.header-menu a:hover,
header .action-menu a:hover {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

body h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-family: Playfair Display, serif;
}

@media (min-width: 768px) {
    body h1 {
        font-size: 3rem;
        line-height: 1;
    }
}

.trust-badge {
    background: rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    color: #1E3A8A;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.bg-clinical-grid {
    /* background-image:
        linear-gradient(to right, rgba(229, 231, 235, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(229, 231, 235, 0.5) 1px, transparent 1px); */
    background-size: 40px 40px;
}


.woocommerce-notices-wrapper .woocommerce-message {
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-left: 4px solid #1D4ED8;
    border-radius: 4px;
    padding: 5px 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.woocommerce-notices-wrapper .woocommerce-error li {
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    padding: 5px 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward,
.woocommerce-notices-wrapper .woocommerce-message .restore-item {
    background-color: #1D4ED8;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward:hover,
.woocommerce-notices-wrapper .woocommerce-message .restore-item:hover {
    background-color: #1E3A8A;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .woocommerce-cart table.cart td.actions .coupon .input-text {
        min-width: 150px;
        margin-right: 0;
    }

    .woocommerce-notices-wrapper .woocommerce-message {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .woocommerce-notices-wrapper .woocommerce-message .button.wc-forward {
        margin-left: 0;
        width: 100%;
        text-align: center;
        display: block;
    }
}

.woocommerce-notices-wrapper .woocommerce-message::before {
    display: none;
}

.woocommerce-notices-wrapper .woocommerce-message::after {
    display: none;
}


/* Age Verification Popup Styles */
.erl-hidden {
    display: none !important;
}

.erl-age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(247 249 251 / 79%);
    /* Light neutral background overlay */
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.erl-age-popup-container {
    background-color: #1E3A8A;
    /* Bright blue to match design */
    width: 90%;
    max-width: 650px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: #ffffff;
}

.erl-age-popup-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
}

.erl-age-popup-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #E5E7EB;
    line-height: 1.5;
}

.erl-age-popup-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.erl-age-popup-btn {
    appearance: none;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.erl-age-popup-btn-primary {
    background-color: #1D4ED8;
    /* Lighter blue for button */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.erl-age-popup-btn-primary:hover {
    background-color: #1E3A8A;
}

@media screen and (max-width: 768px) {
    .erl-age-popup-container {
        padding: 40px 20px;
    }

    .erl-age-popup-title {
        font-size: 22px;
    }

    .erl-age-popup-subtitle {
        font-size: 16px;
    }
}

#popmake-210 .popmake-close {
    display: none;
}

#popmake-210,
#popmake-225 {
    border: 1px solid #1D4ED8;
}

.single-post .entry-meta {
    font-size: 1.125rem;
    line-height: 1.625;
    color: #6b7280;
    margin-bottom: 10px;
}

.single-post article h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-family: Inter, sans-serif;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
}

.single-post article p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #374151;
    font-size: 1rem;
}

.single-post ul {
    list-style: disc;
    padding-left: 40px;
}

.single-post article h3 {
    font-weight: bold;
}

.single-post .post-navigation .nav-previous, .single-post .post-navigation .nav-next {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.125rem;
}