/* ============================================================
   THEME REFRESH 2026 (viagra2024) — Blue Gray (slate)
   Bizzlab slate/Blue Gray: #475569 / #64748b / #FFFFFF
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
    --brand: #475569;
    --brand-rgb: 71, 85, 105;
    --brand-dark: #334155;
    --brand-darker: #1e293b;
    --accent: #64748b;      /* Blue Gray CTA */
    --accent-rgb: 100, 116, 139;
    --accent-dark: #475569;
    --surface: #FFFFFF;
    --surface-muted: #f1f5f9;
    --secondary: #64748b;

    --mdb-primary: var(--brand);
    --mdb-primary-rgb: var(--brand-rgb);
    --mdb-primary-text-emphasis: var(--brand-dark);
    --mdb-primary-bg-subtle: #f1f5f9;
    --mdb-primary-border-subtle: #cbd5e1;
    --mdb-link-color: var(--brand-dark);
    --mdb-link-color-rgb: 51, 65, 85;
    --mdb-link-hover-color: var(--brand-darker);

    --mdb-border-radius: .6rem;
    --mdb-border-radius-lg: .9rem;
    --ui-shadow: 0 4px 16px rgba(30, 41, 59, .08);
    --ui-shadow-lg: 0 10px 30px rgba(30, 41, 59, .14);
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: #1e293b;
    background: var(--surface);
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: -.01em;
}

/* ---- topbar (полоска подписки) ---- */
.topbar {
    background: var(--mdb-primary-bg-subtle);
    color: var(--brand-darker);
    border-bottom: 1px solid #cbd5e1;
}

/* ---- логотип: белый бейдж на navy шапке ---- */
.logo-chip {
    display: inline-block;
    background: #fff;
    border-radius: .7rem;
    padding: .45rem .75rem;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .18);
    line-height: 0;
}
.logo-chip img { max-height: 46px; width: auto; }
.brand-wordmark { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; padding: .3rem .5rem; max-width: 100%; }
.brand-wordmark i { color: var(--accent); font-size: 1.7rem; line-height: 1; flex: 0 0 auto; }
.brand-wordmark .bw-text { display: flex; flex-direction: column; font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.02; letter-spacing: -.01em; white-space: nowrap; }
.brand-wordmark .bw-line1 { color: var(--brand-dark); font-size: 1.02rem; }
.brand-wordmark .bw-line2 { color: var(--brand); font-size: 1.02rem; }
.brand-wordmark .bw-3 { color: var(--accent-dark); }
@media (max-width: 575.98px) {
    .brand-wordmark .bw-line1, .brand-wordmark .bw-line2 { font-size: .82rem; }
    .brand-wordmark i { font-size: 1.35rem; }
}

/* ---- per-number phone PNGs (retina) ---- */
.ed-phones { display: inline-flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.ed-phones--center { align-items: center; width: 100%; }
.ed-phones--stack { align-items: flex-start; }
@media (max-width: 767.98px) {
    .ed-phones--stack { align-items: center; }
}
.ed-phones-label {
    height: 11px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}
.ed-phones-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: .45rem;
}
.ed-phones-row--wrap { flex-wrap: wrap; justify-content: center; }
.ed-phones-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
}
@media (max-width: 767.98px) {
    .ed-phones-col { align-items: center; }
}
.ed-phones a { line-height: 0; display: inline-block; opacity: .96; transition: opacity .15s ease, transform .12s ease; }
.ed-phones a:hover { opacity: 1; transform: translateY(-1px); }
.ed-phones a img {
    height: 28px;
    width: auto;
    display: block;
}

/* ---- единая navy шапка (topbar + navbar + header-middle) ---- */
.navbar.bg-primary {
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%) !important;
    box-shadow: 0 2px 12px rgba(30, 41, 59, .14);
}
.navbar .nav-link { transition: color .15s ease, opacity .15s ease; opacity: .92; }
.navbar .nav-link:hover, .navbar .nav-link.active { opacity: 1; }
.header-middle.bg-success {
    background: var(--brand-dark) !important;
}
.header-middle .form-control {
    border: 0;
    border-radius: 2rem 0 0 2rem;
    padding-left: 1.1rem;
}
.header-middle .btn-warning { border-radius: 0 2rem 2rem 0; }

/* ---- кнопки: тёплый акцент, мягкие формы, аккуратный hover ---- */
.btn { border-radius: 2rem; font-weight: 600; letter-spacing: .01em; transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-warning {
    --mdb-btn-bg: var(--accent);
    --mdb-btn-color: #1e293b;
    --mdb-btn-hover-bg: var(--accent-dark);
    --mdb-btn-hover-color: #fff;
    --mdb-btn-active-bg: var(--accent-dark);
    --mdb-btn-focus-bg: var(--accent-dark);
    --mdb-btn-box-shadow: 0 4px 14px rgba(var(--accent-rgb), .35);
}
.btn-success {
    --mdb-btn-bg: var(--brand);
    --mdb-btn-hover-bg: var(--brand-dark);
    --mdb-btn-active-bg: var(--brand-dark);
}
.btn-sm { border-radius: 1.5rem; }

/* ---- заголовки секций (.d3 h5.text-primary) ---- */
.d3 h5, h5.text-primary.text-uppercase {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: .5rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--brand-dark) !important;
}
.d3 h5::after, h5.text-primary.text-uppercase::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
}

/* ---- карточки / товары ---- */
.card, .card-bestseller, .shadow-3 {
    border: 1px solid #e2e8f0;
    border-radius: var(--mdb-border-radius-lg) !important;
    box-shadow: var(--ui-shadow) !important;
    transition: transform .18s ease, box-shadow .18s ease;
    background: #fff;
}
.card-bestseller:hover, .multi-carousel-item .card-bestseller:hover {
    transform: translateY(-4px);
    box-shadow: var(--ui-shadow-lg) !important;
}
.card-bestseller img { height: 200px; width: 200px; object-fit: contain; }
.img-thumbnail {
    border: 1px solid #e2e8f0;
    border-radius: var(--mdb-border-radius);
    box-shadow: var(--ui-shadow);
    background: #fff;
    padding: .5rem;
    transition: transform .18s ease, box-shadow .18s ease;
}
a:hover > .img-thumbnail, .product-thumb:hover .img-thumbnail {
    transform: translateY(-3px);
    box-shadow: var(--ui-shadow-lg);
}

/* accordion категорий / спецпредложений */
.accordion-button:not(.collapsed) {
    color: var(--brand-dark);
    background-color: var(--mdb-primary-bg-subtle);
}
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(var(--brand-rgb), .2); }

/* ---- hero (ED Express / ED) ---- */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.1rem;
    padding: 3.25rem 2.75rem 3rem;
    color: #fff;
    background:
        radial-gradient(900px 420px at 85% 10%, rgba(100, 116, 139, .45), transparent 55%),
        radial-gradient(700px 380px at 0% 100%, rgba(30, 41, 59, .55), transparent 50%),
        linear-gradient(125deg, #334155 0%, #475569 42%, #1e293b 100%);
    box-shadow: var(--ui-shadow-lg);
    min-height: 360px;
}
.hero--ed::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .55) 0%, rgba(15, 23, 42, .22) 48%, transparent 72%);
    pointer-events: none;
    z-index: 1;
}
.hero::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(148, 163, 184, .22) 0%, transparent 68%);
    pointer-events: none;
    animation: hero-glow 8s ease-in-out infinite alternate;
}
@keyframes hero-glow {
    from { transform: translate(0, 0) scale(1); opacity: .85; }
    to   { transform: translate(-24px, -18px) scale(1.08); opacity: 1; }
}
.hero-body {
    position: relative;
    z-index: 2;
    max-width: 560px;
    animation: hero-rise .7s ease-out both;
}
@keyframes hero-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-brand {
    margin: 0 0 .85rem;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: #fff;
}
.hero-brand::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 3px;
    margin-top: .55rem;
    border-radius: 2px;
    background: #94a3b8;
    animation: hero-bar .9s ease-out .25s both;
}
@keyframes hero-bar {
    from { width: 0; opacity: 0; }
    to   { width: 2.5rem; opacity: 1; }
}
.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: 46%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
    filter: saturate(.92) contrast(1.02);
}
@media (max-width: 1199.98px) { .hero-body { max-width: 100%; } }
.hero-badge {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .35rem .8rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(2px);
    margin-bottom: 1rem;
}
.hero-title {
    font-weight: 700;
    font-size: clamp(1.85rem, 3.2vw, 2.85rem);
    line-height: 1.1;
    margin-bottom: .85rem;
    letter-spacing: -.02em;
}
.hero-sub {
    font-size: 1.05rem;
    opacity: .9;
    margin-bottom: 1.45rem;
    max-width: 30rem;
    line-height: 1.45;
}
.btn-hero-ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .55);
    background: transparent;
}
.btn-hero-ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem 1.5rem;
    margin-top: 1.65rem;
    font-size: .88rem;
    font-weight: 500;
    opacity: .95;
}
.hero-trust i { color: #94a3b8; margin-right: .4rem; }
@media (max-width: 767.98px) {
    .hero,
    .hero--ed {
        min-height: 0;
        padding: 1.5rem 1.25rem 1.6rem;
        border-radius: .85rem;
    }
    .hero--ed::before {
        background: linear-gradient(180deg, rgba(15, 23, 42, .35) 0%, rgba(15, 23, 42, .15) 100%);
    }
    .hero-body { max-width: 100%; }
    .hero-brand { font-size: 1.25rem; }
    .hero-title { font-size: 1.6rem; }
    .hero-sub { font-size: .95rem; margin-bottom: 1rem; }
    .hero-trust { gap: .75rem 1rem; margin-top: 1.15rem; font-size: .8rem; }
    .hero .btn-lg { padding: .55rem 1rem; font-size: 1rem; }
}
/* compact promo on non-home mobile pages */
.sh-mobile-promo {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1rem 1.15rem;
    border-radius: .85rem;
    color: #fff !important;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    box-shadow: var(--ui-shadow);
}
.sh-mobile-promo__badge {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .85;
}
.sh-mobile-promo__title {
    font-size: 1.15rem;
    line-height: 1.25;
}
.sh-mobile-promo__cta {
    font-size: .9rem;
    font-weight: 600;
    color: var(--accent);
}

/* ---- referral card ---- */
.referral-card {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.5rem 1.8rem;
    border-radius: 1rem;
    background: linear-gradient(120deg, #eafaef 0%, #ffffff 60%);
    border: 1px solid #d7ecdc;
    box-shadow: var(--ui-shadow);
    position: relative;
    overflow: hidden;
}
.referral-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--brand), var(--accent));
}
.referral-ico {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    font-size: 1.7rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    box-shadow: 0 6px 16px rgba(var(--brand-rgb), .35);
}
.referral-body { flex: 1 1 auto; }
.referral-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: .1rem .5rem;
    border-radius: 1rem;
    margin-bottom: .35rem;
}
.referral-title {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: .4rem;
}
.referral-cta { flex: 0 0 auto; }
@media (max-width: 767px) {
    .referral-card { flex-direction: column; text-align: center; }
}

/* ---- subscribe band ---- */
.subscribe-band {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.6rem 2rem;
    border-radius: 1rem;
    color: #fff;
    background:
        radial-gradient(600px 200px at 90% -40%, rgba(245, 158, 11, .4), transparent 60%),
        linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    box-shadow: var(--ui-shadow);
}
.subscribe-ico {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    width: 62px; height: 62px;
    border-radius: 50%;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, .18);
}
.subscribe-copy { flex: 1 1 auto; }
.subscribe-band .btn { flex: 0 0 auto; }
@media (max-width: 767px) { .subscribe-band { flex-direction: column; text-align: center; } }

/* ---- crypto / bitcoin card (sidebar) ---- */
.crypto-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .9rem 1rem;
    border-radius: .8rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: var(--ui-shadow);
}
.crypto-ico {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, #f7931a, #f5a623);
}
.crypto-accent { color: var(--accent-dark); font-weight: 700; }

/* advantages (иконки-фичи) */
.advantage-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    box-shadow: var(--ui-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.advantage:hover .advantage-ico {
    transform: translateY(-4px) scale(1.04);
    box-shadow: var(--ui-shadow-lg);
}

/* цены */
.price { color: var(--accent-dark); font-weight: 700; }
.text-warning { color: var(--accent-dark) !important; }

/* ---- внутренние страницы: табы, списки, крошки ---- */
.nav-tabs { border-bottom: 2px solid #eef2ee; }
.nav-tabs .nav-link {
    color: #5b6b60;
    font-weight: 600;
    border: 0;
    border-bottom: 3px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.nav-tabs .nav-link:hover { color: var(--brand-dark); border-bottom-color: #d7ecdc; }
.nav-tabs .nav-link.active {
    color: var(--brand-dark);
    background: transparent;
    border-bottom: 3px solid var(--accent);
}
.list-group-light .list-group-item { border-color: #eef2ee; }
.list-group-item .col b { color: #2b3a30; }
.breadcrumb a { color: var(--brand-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-darker); text-decoration: underline; }
.breadcrumb .active, .breadcrumb-item.active { color: #7c8a80; }
.lightbox .img-thumbnail { border: 1px solid #e2e8f0; }

/* ---- footer ---- */
.footer-bottom.bg-primary {
    background: var(--brand-darker) !important;
}
.footer-nav a, .footer-bottom a { color: #d9ecdd; transition: color .15s ease; }
.footer-nav a:hover, .footer-bottom a:hover { color: #fff; text-decoration: underline; }
.footer-nav li { margin-bottom: .35rem; font-size: .9rem; }
.footer-title { letter-spacing: .03em; text-transform: uppercase; font-size: .85rem; opacity: .95; }
.footer-bottom .phone-links a { color: #eafaef; }

/* доступность / фокус */
a, .btn, .form-control { outline: none; }
.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(var(--brand-rgb), .18);
}

/* ============================================================
   ORIGINAL FUNCTIONAL RULES (сохранены)
   ============================================================ */
.form-error {
    font-size: 12px;
}
.needs-validation .form-control.is-invalid {
    margin-bottom: 0 !important;
}
.btn-link:first-child:hover, .btn-link:focus-visible, .btn-link:hover {
    box-shadow: none !important;
}

/*search*/
ul.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
    background-color: #fff;
    width: 300px;
    color: var(--mdb-dropdown-color);
    padding: 5px;
    border-radius: .5rem !important;
    box-shadow: var(--ui-shadow-lg);
    border: 1px solid #e2e8f0;
}
li.ui-menu-item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #f1f3f1;
    padding-bottom: 5px;
    height: 50%;
    cursor: pointer;
}
li.ui-menu-item:hover {
    background-color: var(--mdb-primary-bg-subtle);
}
.ui-state-active {
    background-color: var(--mdb-primary-bg-subtle);
}
li.ui-autocomplete-category {
    font-weight: 700;
    list-style: none;
}
div.ui-menu-item-wrapper {
    width: 100%;
}
.ui-helper-hidden-accessible {
    display: none;
}
.table-striped > tbody > tr:nth-of-type(odd) > *, .table-striped-columns > :not(caption) > tr > :nth-child(2n) {
    --mdb-table-color-type: var(--brand) !important;
    --mdb-table-bg-type: rgba(var(--brand-rgb), .06) !important;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}
button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

/*carousel hot-offers*/
.carousel-control-prev-icon:after,
.carousel-control-next-icon:after {
    display: none;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    color: var(--brand-dark);
    font-weight: 700;
}
.carousel-control-next { justify-content: end !important; }
.carousel-control-prev { justify-content: start !important; }

.disc_valid {
    font-size: 18px;
    text-transform: none;
    font-weight: 400;
}

.striped-row:nth-child(odd) { background-color: #ffffff; }
.striped-row:nth-child(even) { background-color: var(--surface); }
.striped-row:hover {
    background-color: rgba(var(--brand-rgb), .07);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-control.is-valid, .form-control.is-invalid {
    margin-bottom: 0;
}

/* MDB success → Blue Gray navy (kill leftover green) */
:root {
    --mdb-success: var(--brand);
    --mdb-success-rgb: var(--brand-rgb);
    --mdb-success-text-emphasis: var(--brand-dark);
    --mdb-success-bg-subtle: var(--mdb-primary-bg-subtle);
    --mdb-success-border-subtle: var(--mdb-primary-border-subtle);
}
.text-success, .text-success-emphasis { color: var(--brand) !important; }

/* SEO infographic — Blue Gray */
.seo-infographic-wrap {
    max-width: 100%;
}
.seo-infographic {
    display: grid;
    gap: .85rem;
    padding: 1.1rem 1.25rem 1.2rem;
    border: 1px solid rgba(30, 41, 59, .08);
    border-left: 3px solid var(--brand);
    border-radius: var(--mdb-border-radius-lg);
    background: #fff;
    box-shadow: var(--ui-shadow);
}
.seo-infographic__title {
    margin: 0;
    padding-bottom: .45rem;
    width: fit-content;
    max-width: 100%;
    font-family: Poppins, Inter, system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand);
    border-bottom: 2px solid var(--brand);
    position: relative;
}
.seo-infographic__title:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 36%;
    height: 3px;
    background: var(--accent);
}
.seo-infographic__lead {
    margin: .35rem 0 0;
    color: var(--secondary);
    font-size: .92rem;
    line-height: 1.45;
}
.seo-infographic__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .75rem;
    margin-top: .25rem;
}
.seo-infographic__card {
    padding: .85rem 1rem;
    border: 1px solid rgba(30, 41, 59, .08);
    border-radius: var(--mdb-border-radius);
    background: var(--surface);
}
.seo-infographic__label {
    margin: 0 0 .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--brand);
}
.seo-infographic__body {
    font-size: .92rem;
    line-height: 1.45;
    color: #1e293b;
}
.seo-infographic__list {
    margin: 0;
    padding-left: 1.15rem;
}
.seo-infographic__list li {
    margin: .25rem 0;
}
.seo-infographic__list li::marker {
    color: var(--accent);
}
@media (max-width: 576px) {
    .seo-infographic {
        padding: .95rem 1rem;
    }
    .seo-infographic__title {
        font-size: 1.05rem;
    }
    .seo-infographic__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Mobile bottom bar (from bestrx2024, Blue Gray palette) ===== */
.sh-mobile-bar {
    display: none;
}
@media (max-width: 767.98px) {
    body {
        padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    }
    .navbar .navbar-toggler {
        display: none !important;
    }
    .sh-mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 4300;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        width: 100%;
        height: calc(58px + env(safe-area-inset-bottom, 0px));
        min-height: 58px;
        padding: 0 0 env(safe-area-inset-bottom, 0px);
        margin: 0;
        box-sizing: border-box;
        background: var(--brand, #475569);
        color: #fff;
        border-top: 1px solid rgba(255, 255, 255, .14);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .18);
    }
    .sh-mobile-bar__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        min-width: 0;
        min-height: 58px;
        height: 58px;
        padding: 5px 4px;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #fff;
        text-decoration: none;
        font: inherit;
        line-height: 1;
        cursor: pointer;
        text-align: center;
        -webkit-tap-highlight-color: transparent;
    }
    .sh-mobile-bar__item:hover,
    .sh-mobile-bar__item:focus,
    .sh-mobile-bar__item:active {
        background: rgba(255, 255, 255, .08);
        color: #fff;
        text-decoration: none;
    }
    body.sh-menu-open .sh-mobile-bar__menu {
        background: rgba(255, 255, 255, .12);
    }
    body.sh-menu-open .sh-mobile-bar__label--menu {
        font-size: 0;
    }
    body.sh-menu-open .sh-mobile-bar__label--menu::after {
        content: "Close";
        font-size: 11px;
        font-weight: 700;
        line-height: 1.05;
    }
    .sh-mobile-bar__icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        font-size: 1.2rem;
        line-height: 1;
    }
    .sh-mobile-bar__icon--cart {
        overflow: visible;
    }
    .sh-mobile-bar__badge {
        position: absolute;
        top: -8px;
        right: -12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 999px;
        background: var(--accent, #64748b);
        color: #1e293b;
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        z-index: 2;
    }
    .sh-mobile-bar__label {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.05;
        letter-spacing: 0;
    }
    /* Hide floating PHPLive launcher on mobile — Live Help is in the bar */
    .sh-phplive-anchor,
    [id^="phplive_btn_"],
    [id*="phplive_btn_"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        position: fixed !important;
        bottom: -9999px !important;
        right: -9999px !important;
        z-index: -1 !important;
    }
    [id^="phplive_btn_"] *,
    [id*="phplive_btn_"] * {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    /* Collapse panel above bottom bar */
    #main_menu.show,
    #main_menu.collapsing {
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(58px + env(safe-area-inset-bottom, 0px));
        top: auto;
        max-height: min(78vh, calc(100vh - 58px - env(safe-area-inset-bottom, 0px) - 3rem));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 4290;
        background: var(--brand, #475569);
        padding: 1rem 1.15rem 1.35rem;
        border-radius: .85rem .85rem 0 0;
        box-shadow: 0 -12px 32px rgba(15, 23, 42, .28);
    }
    #main_menu.show .navbar-nav,
    #main_menu.collapsing .navbar-nav {
        gap: .15rem;
        margin-bottom: .25rem;
    }
    #main_menu.show .navbar-nav .nav-link,
    #main_menu.collapsing .navbar-nav .nav-link {
        padding: .72rem .35rem !important;
        font-size: 1rem;
        line-height: 1.25;
        float: none !important;
        color: #fff !important;
    }
    #main_menu.show .navbar-nav .nav-link .float-start,
    #main_menu.collapsing .navbar-nav .nav-link .float-start {
        float: none !important;
        display: inline !important;
    }
    .sh-mobile-menu-utils {
        margin-top: .85rem;
        padding-top: .9rem;
        border-top: 1px solid rgba(255, 255, 255, .18);
    }
    .sh-mobile-menu-utils__title {
        margin: 0 0 .35rem;
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .65);
    }
    .sh-mobile-menu-utils__auth {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem;
    }
    .sh-mobile-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .28rem;
        min-height: 2rem;
        padding: .3rem .7rem;
        border-radius: .4rem;
        background: rgba(255, 255, 255, .12);
        color: #fff !important;
        font-size: .8rem;
        font-weight: 600;
        text-decoration: none !important;
        line-height: 1.1;
    }
    .sh-mobile-chip:hover,
    .sh-mobile-chip:focus {
        background: rgba(255, 255, 255, .22);
        color: #fff !important;
    }
}
@media (min-width: 768px) {
    .sh-mobile-bar {
        display: none !important;
    }
}
