:root {
    --hz-cyan: #12c7eb;
    --hz-cyan-dark: #0aa7c9;
    --hz-slate: #40506a;
    --hz-slate-dark: #2d394d;
    --hz-ink: #172033;
    --hz-muted: #667085;
    --hz-line: #e6edf3;
    --hz-soft: #f6fbfd;
    --hz-white: #ffffff;
    --hz-radius: 8px;
    --hz-shadow: 0 14px 35px rgba(23, 32, 51, 0.08);
}

html,
body {
    background: var(--hz-white);
    color: var(--hz-ink);
    font-size: 16px;
}

body {
    -webkit-font-smoothing: antialiased;
}

p {
    color: #344054;
    letter-spacing: 0;
    line-height: 1.75;
}

a {
    color: var(--hz-cyan-dark);
    letter-spacing: 0;
}

a:hover,
a:focus {
    color: var(--hz-slate);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--hz-ink);
    letter-spacing: 0;
    line-height: 1.25;
}

.wrap {
    background: linear-gradient(180deg, #fbfdff 0, #fff 220px);
}

.container {
    max-width: 1180px;
}

.btn,
.wed-btn,
input[type="submit"].btn {
    border-radius: var(--hz-radius);
    font-weight: 700;
    letter-spacing: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary,
.wed-btn,
input[type="submit"].btn-primary {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
}

.btn-primary:hover,
.wed-btn:hover,
input[type="submit"].btn-primary:hover {
    background: var(--hz-slate);
    border-color: var(--hz-slate);
    color: var(--hz-white);
}

.form-control {
    border: 1px solid #d8e1ea;
    border-radius: var(--hz-radius);
    color: var(--hz-ink);
    min-height: 42px;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--hz-cyan);
    box-shadow: 0 0 0 3px rgba(18, 199, 235, 0.16);
}

.heading {
    border-bottom: 1px solid var(--hz-line);
    margin-bottom: 24px;
}

.heading > h1,
.heading > h2,
.heading > h3,
.heading > h4,
.heading > h5,
.heading > h6 {
    color: var(--hz-slate);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

header.hz-site-header {
    background: var(--hz-white);
    border-bottom: 1px solid var(--hz-line);
    box-shadow: 0 8px 24px rgba(23, 32, 51, 0.05);
    position: relative;
    z-index: 20;
}

.hz-header-main {
    padding: 16px 0;
}

.hz-header-row {
    align-items: center;
}

header .logo {
    display: inline-flex;
    align-items: center;
}

header .logo > img {
    display: block;
    height: auto;
    max-width: 220px;
    width: 100%;
}

header .search_bar {
    padding: 0;
}

header .search_bar > input,
header .search_bar .form-control {
    background: #f7fbfd;
    border: 1px solid #dce8f0;
    border-radius: var(--hz-radius) 0 0 var(--hz-radius);
    height: 44px;
    padding-left: 16px;
}

header .search_bar button {
    background: var(--hz-slate);
    border: 1px solid var(--hz-slate);
    border-radius: 0 var(--hz-radius) var(--hz-radius) 0;
    color: var(--hz-white);
    height: 44px;
    min-width: 48px;
}

header .search_bar button:hover,
header .search_bar button:focus {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
}

.hz-header-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.hz-header-right-tools {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
    position: relative;
    width: 100%;
}

.hz-top-actions {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.hz-header-right-tools .hz-top-actions,
.hz-header-right-tools .hz-header-actions {
    margin-bottom: 0;
    margin-top: 0 !important;
}

.hz-top-actions li {
    display: inline-flex;
}

.hz-top-cart {
    align-items: center;
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius);
    box-shadow: 0 8px 20px rgba(23, 32, 51, 0.07);
    color: var(--hz-slate-dark);
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    gap: 7px;
    box-sizing: border-box;
    height: 42px;
    justify-content: center;
    line-height: 1;
    min-height: 42px;
    min-width: 84px;
    padding: 0 14px;
}

.hz-top-cart:hover,
.hz-top-cart:focus {
    background: #ecfbff;
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
    text-decoration: none;
}

.hz-top-cart .badge {
    background: #d92d20;
    color: var(--hz-white);
    font-size: 11px;
    margin-left: 2px;
}

.hz-header-actions li {
    display: inline-flex;
}

.hz-header-actions a,
header .user_ac > li > a {
    align-items: center;
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius);
    box-shadow: 0 8px 20px rgba(23, 32, 51, 0.07);
    color: var(--hz-slate-dark);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    height: 42px;
    line-height: 1;
    padding: 0 14px;
}

.hz-header-actions a:hover,
header .user_ac > li > a:hover {
    background: #ecfbff;
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
    text-decoration: none;
}

.hz-header-actions .hz-cta a {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
}

.hz-header-actions .hz-cta a:hover {
    background: var(--hz-slate);
    border-color: var(--hz-slate);
    color: var(--hz-white);
}

header .user_ac {
    display: inline-flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    position: static;
    text-align: right;
    width: auto;
    vertical-align: top;
}

header .user_ac > li {
    border: 0;
    padding: 0;
}

.hz-account-menu .dropdown {
    position: relative;
}

header .user_ac > li > a.hz-account-toggle {
    align-items: center;
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    box-sizing: border-box;
    gap: 8px;
    height: 42px;
    line-height: 1;
    min-height: 42px;
    padding: 0 14px;
}

header .user_ac > li > a.hz-account-toggle:hover,
header .user_ac > li.open > a.hz-account-toggle,
header .user_ac > li > a.hz-account-toggle:focus {
    background: var(--hz-soft);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
    text-decoration: none;
}

.hz-account-dropdown {
    background: var(--hz-white);
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(23, 32, 51, 0.18);
    left: auto;
    margin-top: 0;
    min-width: 245px;
    padding: 7px;
    right: 0;
    text-align: left;
    top: 100%;
}

.hz-account-dropdown.dropdown-menu {
    font-size: 14px;
}

.hz-account-dropdown:before {
    background: var(--hz-white);
    border-left: 1px solid rgba(8, 145, 178, 0.18);
    border-top: 1px solid rgba(8, 145, 178, 0.18);
    content: "";
    height: 12px;
    position: absolute;
    right: 20px;
    top: -6px;
    transform: rotate(45deg);
    width: 12px;
}

.hz-account-dropdown .dropdown-item {
    align-items: center;
    border-radius: 8px;
    color: var(--hz-slate);
    display: flex;
    font-weight: 800;
    gap: 11px;
    padding: 11px 12px;
    position: relative;
    z-index: 1;
}

.hz-account-dropdown .dropdown-item:hover,
.hz-account-dropdown .dropdown-item:focus,
.hz-account-dropdown .hz-logout-link:hover,
.hz-account-dropdown .hz-logout-link:focus {
    background: var(--hz-soft);
    color: var(--hz-cyan-dark);
    text-decoration: none;
}

.hz-account-dropdown .dropdown-item i {
    align-items: center;
    background: var(--hz-soft);
    border-radius: 50%;
    color: var(--hz-cyan-dark);
    display: inline-flex;
    height: 28px;
    justify-content: center;
    min-width: 16px;
    text-align: center;
    width: 28px;
}

.hz-account-dropdown form {
    border-top: 1px solid var(--hz-line);
    margin: 6px 0 0;
    padding-top: 6px;
}

.hz-account-dropdown .hz-logout-link {
    border-radius: 8px;
    color: #b42318;
    font-weight: 900;
    padding: 11px 12px;
    text-align: left;
}

header .hz-account-menu .dropdown:hover > .hz-account-dropdown,
header .hz-account-menu .dropdown:focus-within > .hz-account-dropdown,
header .hz-account-menu .dropdown.show > .hz-account-dropdown,
header .hz-account-menu .hz-account-dropdown.show {
    display: block;
}

.hz-cart-menu .badge {
    background: #d92d20;
    color: var(--hz-white);
    font-size: 11px;
    margin-left: 5px;
    vertical-align: middle;
}

header > nav {
    background: linear-gradient(180deg, var(--hz-white) 0, #f7fcff 100%);
    border-bottom: 1px solid var(--hz-line);
    border-top: 1px solid #eef6fa;
    box-shadow: 0 10px 24px rgba(23, 32, 51, 0.06);
}

.hz-mobile-nav-bar {
    display: none;
}

.hz-mobile-brand-row {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hz-mobile-nav-toggle {
    align-items: center;
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
    color: var(--hz-slate-dark);
    cursor: pointer;
    display: none;
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    margin-left: auto;
    min-width: 42px;
    padding: 0 12px;
}

.hz-mobile-nav-toggle:hover,
.hz-mobile-nav-toggle:focus {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
    outline: 0;
}

header > nav > ul {
    display: flex;
    flex-wrap: wrap;
}

header > nav > ul > .hz-nav-spacer {
    flex: 1 1 auto;
}

header > nav > ul > .hz-nav-shop > a,
header > nav > ul > .hz-nav-cart > a {
    align-items: center;
    display: inline-flex;
    gap: 7px;
}

.hz-mobile-only-nav-item,
.hz-mobile-nav-form {
    display: none;
}

header > nav > ul > .hz-nav-cart > a {
    background: #ecfbff;
    border: 1px solid #c8f3fb;
}

header > nav > ul > li > a {
    border-radius: 8px;
    color: var(--hz-slate-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 6px 2px;
    padding: 10px 14px;
    text-transform: none;
}

header > nav > ul > li > a:hover,
header > nav > ul > li.Health_menu > a:hover,
header > nav > ul > li.Remedies_menu > a:hover,
header > nav > ul > li.Recipes_menu > a:hover,
header > nav > ul > li.Fitness_menu > a:hover,
header > nav > ul > li.Conditions_DD > a:hover {
    background: var(--hz-cyan);
    color: var(--hz-slate-dark);
    box-shadow: 0 8px 18px rgba(18, 199, 235, 0.22);
}

header > nav .dropdown-menu {
    border: 1px solid var(--hz-line);
    border-radius: 0 0 var(--hz-radius) var(--hz-radius);
    box-shadow: var(--hz-shadow);
    margin-top: 0;
    overflow: hidden;
}

header > nav > ul > li > .Health_sabmenu,
header > nav > ul > li > .Remedies_sabmenu,
header > nav > ul > li > .Recipes_sabmenu,
header > nav > ul > li > .Fitness_sabmenu,
header > nav > ul > li > .Conditions_sabmenu {
    background: var(--hz-white);
}

header > nav .dropdown-menu > a,
header > nav > ul > li > .Health_sabmenu > a,
header > nav > ul > li > .Remedies_sabmenu > a {
    color: var(--hz-slate);
    font-weight: 600;
    padding: 10px 14px;
}

header > nav .dropdown-menu > a:hover,
header > nav > ul > li > .Health_sabmenu > a:hover,
header > nav > ul > li > .Remedies_sabmenu > a:hover {
    background: var(--hz-soft);
    color: var(--hz-cyan-dark);
}

.health_news,
.article-list .item,
.thumbnail,
.panel,
.well {
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius);
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
    overflow: hidden;
}

.health_news > .info_overlay {
    background: rgba(255, 255, 255, 0.94);
}

.health_news > .info_overlay > .share {
    background: var(--hz-cyan);
    color: var(--hz-slate-dark);
}

footer {
    background:
        linear-gradient(180deg, rgba(18, 199, 235, 0.10) 0, rgba(18, 199, 235, 0) 140px),
        linear-gradient(135deg, #172033 0, #243044 52%, #172033 100%);
    color: #d8e3ec;
    margin-top: 48px;
    padding-top: 48px;
    position: relative;
}

footer::before {
    background: linear-gradient(90deg, var(--hz-cyan), #72e4f5, var(--hz-cyan-dark));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

footer > .container > .row {
    align-items: stretch;
}

footer > .container > .row > [class*="col-"] {
    margin-bottom: 22px;
}

footer > .container > .row > [class*="col-"] > .foot_head:first-child,
footer > .container > .row > [class*="col-"] > ul:first-of-type,
footer > .container > .row > [class*="col-"] > p,
footer > .container > .row > [class*="col-"] > form {
    position: relative;
}

footer p,
footer li,
footer a {
    color: #d8e3ec;
    letter-spacing: 0;
}

footer a:hover {
    color: var(--hz-cyan);
}

footer > .container > .row > [class*="col-"] {
    background: rgba(255, 255, 255, 0.045);
    background-clip: padding-box;
    border: 10px solid transparent;
    border-radius: 12px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.10),
        0 18px 40px rgba(0, 0, 0, 0.14);
    padding: 24px;
}

footer .foot_head h4 {
    color: var(--hz-white);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
}

footer .foot_head h4::after {
    background: var(--hz-cyan);
    border-radius: 999px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 42px;
}

footer .foot_head,
footer .foot_head h4,
footer h4 {
    color: var(--hz-white) !important;
}

footer ul {
    margin-bottom: 0;
    padding-left: 0;
}

footer li {
    list-style: none;
    margin-bottom: 10px;
}

footer ul > li > a {
    display: inline-flex;
    line-height: 1.35;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

footer ul > li > a:hover {
    padding-left: 5px;
    text-decoration: none;
}

footer .email_address .form-control {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid transparent;
    border-radius: var(--hz-radius) 0 0 var(--hz-radius);
    color: var(--hz-ink);
    min-height: 46px;
}

footer .email_address .form-control:focus {
    border-color: var(--hz-cyan);
    box-shadow: 0 0 0 0.2rem rgba(18, 199, 235, 0.18);
}

footer .email_address .btn {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    border-radius: 0 var(--hz-radius) var(--hz-radius) 0;
    color: var(--hz-slate-dark);
    font-weight: 900;
    min-height: 46px;
}

footer .email_address .btn:hover,
footer .email_address .btn:focus {
    background: var(--hz-white);
    border-color: var(--hz-white);
    color: var(--hz-slate-dark);
}

footer .foot_menu {
    background: rgba(9, 16, 29, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
    padding: 20px 0 14px;
}

footer .foot_menu ul {
    margin: 0;
}

footer .foot_menu li {
    display: inline-block;
    margin: 0 5px 10px;
}

footer .social_links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    text-align: left;
}

footer .social_links > li {
    margin: 0;
}

footer .social_links > li > a {
    padding-left: 0;
}

footer .social_links > li > a > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--hz-white);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    width: 40px;
}

footer .social_links > li > a:hover > span {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
    transform: translateY(-2px);
}

footer ul > li > a,
footer > .foot_menu ul > li > a,
footer .foot_menu p,
footer .foot_menu p.text-center,
footer .foot_menu a {
    color: #d8e3ec !important;
}

footer ul > li > a:hover,
footer > .foot_menu ul > li > a:hover,
footer .foot_menu a:hover {
    color: var(--hz-cyan) !important;
}

footer > .foot_menu {
    background: rgba(9, 16, 29, 0.45) !important;
}

header.hz-site-header > nav > ul > li > .dropdown-menu,
header.hz-site-header > nav > ul > li > .Health_sabmenu,
header.hz-site-header > nav > ul > li > .Remedies_sabmenu,
header.hz-site-header > nav > ul > li > .Recipes_sabmenu,
header.hz-site-header > nav > ul > li > .Fitness_sabmenu,
header.hz-site-header > nav > ul > li > .Conditions_sabmenu {
    background: var(--hz-white) !important;
}

header.hz-site-header > nav > ul > li > .dropdown-menu > a,
header.hz-site-header > nav > ul > li > .Health_sabmenu > a,
header.hz-site-header > nav > ul > li > .Remedies_sabmenu > a,
header.hz-site-header > nav > ul > li > .Recipes_sabmenu > a,
header.hz-site-header > nav > ul > li > .Fitness_sabmenu > a,
header.hz-site-header > nav > ul > li > .Conditions_sabmenu > a {
    color: var(--hz-slate) !important;
}

header.hz-site-header > nav > ul > li > .dropdown-menu > a:hover,
header.hz-site-header > nav > ul > li > .Health_sabmenu > a:hover,
header.hz-site-header > nav > ul > li > .Remedies_sabmenu > a:hover,
header.hz-site-header > nav > ul > li > .Recipes_sabmenu > a:hover,
header.hz-site-header > nav > ul > li > .Fitness_sabmenu > a:hover,
header.hz-site-header > nav > ul > li > .Conditions_sabmenu > a:hover {
    background: var(--hz-soft) !important;
    color: var(--hz-cyan-dark) !important;
}

.social_links {
    text-align: left;
}

.social_links > li > a > span {
    background-color: var(--hz-slate);
}

.social_links > li > a:hover > span {
    background-color: var(--hz-cyan);
}

.auth-page {
    padding: 48px 0 64px;
}

.auth-shell {
    align-items: stretch;
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: var(--hz-shadow);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    overflow: hidden;
}

.auth-shell-reverse {
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
}

.auth-shell-medico {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.auth-brand-panel {
    background: linear-gradient(135deg, var(--hz-slate) 0%, var(--hz-slate-dark) 100%);
    color: var(--hz-white);
    min-height: 520px;
    padding: 48px;
    position: relative;
}

.auth-brand-panel:after {
    background: rgba(18, 199, 235, 0.16);
    content: "";
    height: 180px;
    position: absolute;
    right: -70px;
    top: -70px;
    transform: rotate(35deg);
    width: 180px;
}

.auth-brand-panel h1,
.auth-brand-panel h2 {
    color: var(--hz-white);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
}

.auth-brand-panel p,
.auth-brand-panel li {
    color: #e8f2f8;
}

.auth-kicker {
    color: var(--hz-cyan);
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.auth-benefits {
    margin: 28px 0 0;
    padding: 0;
}

.auth-benefits li {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    list-style: none;
    margin-bottom: 14px;
}

.auth-benefits i {
    background: var(--hz-cyan);
    border-radius: 50%;
    color: var(--hz-slate-dark);
    flex: 0 0 22px;
    font-size: 12px;
    height: 22px;
    line-height: 22px;
    margin-top: 2px;
    text-align: center;
    width: 22px;
}

.auth-card {
    background: var(--hz-white);
    padding: 44px;
}

.auth-card-header {
    margin-bottom: 26px;
}

.auth-card-header h1,
.auth-card-header h2 {
    color: var(--hz-ink);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.auth-card-header p {
    color: var(--hz-muted);
    margin: 0;
}

.auth-card .form-group {
    margin-bottom: 18px;
}

.auth-card label {
    color: var(--hz-slate);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 7px;
}

.auth-card .form-control {
    background: #fbfdff;
    height: 46px;
}

.auth-card .help-block {
    color: #c0392b;
    font-size: 13px;
    margin-bottom: 0;
    margin-top: 6px;
}

.auth-oauth-card {
    background: #fbfdff;
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    margin-bottom: 22px;
    padding: 18px;
}

.auth-oauth-label {
    color: var(--hz-cyan-dark);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.auth-google-btn {
    align-items: center;
    background: var(--hz-white);
    border: 1px solid #d9e3ea;
    border-radius: 8px;
    color: var(--hz-ink);
    display: flex;
    font-size: 16px;
    font-weight: 900;
    gap: 12px;
    justify-content: center;
    min-height: 52px;
    padding: 13px 18px;
    text-align: center;
    width: 100%;
}

.auth-google-btn:hover,
.auth-google-btn:focus {
    border-color: var(--hz-cyan);
    box-shadow: 0 10px 24px rgba(33, 150, 172, 0.14);
    color: var(--hz-slate-dark);
    text-decoration: none;
}

.auth-google-btn i {
    color: #db4437;
    font-size: 18px;
}

.auth-oauth-card p {
    color: var(--hz-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 12px 0 0;
}

.auth-divider {
    align-items: center;
    color: var(--hz-muted);
    display: flex;
    font-size: 13px;
    font-weight: 800;
    gap: 12px;
    margin: 4px 0 20px;
    text-align: center;
}

.auth-divider:before,
.auth-divider:after {
    background: var(--hz-line);
    content: "";
    flex: 1;
    height: 1px;
}

.auth-divider span {
    white-space: nowrap;
}

.auth-options {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.auth-options .form-group {
    margin: 0;
}

.auth-link {
    font-size: 14px;
    font-weight: 800;
}

.auth-submit {
    display: block;
    font-size: 15px;
    padding: 12px 18px;
    width: 100%;
}

.login_btn.auth-submit,
.auth-secondary-btn {
    background: var(--hz-cyan);
    border: 1px solid var(--hz-cyan);
    color: var(--hz-slate-dark);
}

.login_btn.auth-submit:hover,
.auth-secondary-btn:hover {
    background: var(--hz-slate);
    border-color: var(--hz-slate);
    color: var(--hz-white);
}

.auth-terms {
    color: var(--hz-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 16px 0 0;
    text-align: left;
}

.auth-switch {
    border-top: 1px solid var(--hz-line);
    color: var(--hz-muted);
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    padding-top: 20px;
    text-align: center;
}

.auth-switch a {
    font-weight: 900;
}

.auth-captcha {
    margin-bottom: 18px;
    overflow: hidden;
}

.auth-medico-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    margin-top: 34px;
    padding: 22px;
}

.site-login.auth-page {
    padding: 58px 0 74px;
    position: relative;
}

.site-login.auth-page:before {
    background:
        radial-gradient(circle at top left, rgba(18, 199, 235, 0.18), transparent 38%),
        radial-gradient(circle at bottom right, rgba(64, 80, 106, 0.12), transparent 34%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.site-login .container {
    position: relative;
    z-index: 1;
}

.site-login .auth-shell-login {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 253, 0.98) 100%);
    border: 1px solid rgba(64, 80, 106, 0.12);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(23, 32, 51, 0.12);
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto;
    max-width: 560px;
    overflow: hidden;
}

.site-login .auth-brand-panel {
    background:
        linear-gradient(145deg, rgba(27, 42, 66, 0.96) 0%, rgba(45, 57, 77, 0.96) 100%),
        linear-gradient(180deg, rgba(18, 199, 235, 0.26) 0%, rgba(18, 199, 235, 0) 56%);
    display: flex;
    min-height: 100%;
    padding: 56px 52px;
}

.site-login .auth-brand-panel:after {
    background: radial-gradient(circle, rgba(18, 199, 235, 0.28) 0%, rgba(18, 199, 235, 0) 68%);
    height: 260px;
    right: -70px;
    top: -70px;
    transform: none;
    width: 260px;
}

.site-login .auth-brand-panel-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
}

.site-login .auth-brand-panel h1 {
    font-size: 44px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.site-login .auth-brand-panel p {
    font-size: 17px;
    line-height: 1.85;
    max-width: 470px;
}

.site-login .auth-benefits {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.site-login .auth-benefits li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    margin-bottom: 0;
    padding: 15px 16px;
}

.site-login .auth-benefits i {
    box-shadow: 0 8px 20px rgba(18, 199, 235, 0.24);
    margin-top: 0;
}

.site-login .auth-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.98) 100%);
    display: flex;
    min-height: 100%;
    padding: 22px;
    position: relative;
}

.site-login .auth-card:before {
    background: linear-gradient(135deg, rgba(18, 199, 235, 0.12), rgba(255, 255, 255, 0));
    border-radius: 50%;
    content: "";
    height: 210px;
    position: absolute;
    right: -72px;
    top: -72px;
    width: 210px;
}

.site-login .auth-login-card-stack {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(64, 80, 106, 0.10);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(23, 32, 51, 0.08);
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
    margin: auto;
    max-width: 100%;
    padding: 38px 34px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.site-login .auth-card-header {
    margin-bottom: 0;
}

.site-login .auth-kicker-inline {
    color: var(--hz-cyan-dark);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.site-login .auth-card-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.site-login .auth-card-header p {
    font-size: 15px;
    line-height: 1.7;
}

.site-login .auth-flash:empty {
    display: none;
}

.site-login .auth-flash .alert {
    border-radius: 12px;
    margin-bottom: 0;
}

.site-login .auth-oauth-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(64, 80, 106, 0.12);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
    margin-bottom: 0;
    padding: 24px;
}

.site-login .auth-oauth-label {
    align-items: center;
    color: #4b5565;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.site-login .auth-oauth-label:before {
    background: linear-gradient(90deg, #34a853, #4285f4);
    border-radius: 999px;
    content: "";
    display: block;
    height: 8px;
    width: 28px;
}

.site-login .auth-google-btn {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d7dee7;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(23, 32, 51, 0.06);
    color: #1f1f1f;
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    gap: 14px;
    justify-content: center;
    min-height: 60px;
    padding: 16px 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    width: 100%;
}

.site-login .auth-google-btn:hover,
.site-login .auth-google-btn:focus {
    background: #ffffff;
    border-color: #c7d3df;
    box-shadow: 0 18px 34px rgba(23, 32, 51, 0.12);
    color: #1f1f1f;
    outline: 0;
    text-decoration: none;
    transform: translateY(-1px);
}

.site-login .auth-google-btn:focus {
    box-shadow:
        0 0 0 4px rgba(66, 133, 244, 0.18),
        0 18px 34px rgba(23, 32, 51, 0.12);
}

.site-login .auth-google-logo {
    display: inline-flex;
    flex: 0 0 22px;
    height: 22px;
    width: 22px;
}

.site-login .auth-google-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.25;
    text-align: left;
}

.site-login .auth-google-copy strong {
    color: #1f1f1f;
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.site-login .auth-google-copy small {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
    margin-top: 0;
}

.site-login .auth-oauth-card p {
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 0;
}

.site-login .auth-terms {
    background: #f8fbfd;
    border: 1px solid rgba(18, 199, 235, 0.14);
    border-radius: 14px;
    margin: 0;
    padding: 15px 16px;
}

.site-login .auth-switch {
    border-top: 1px solid rgba(64, 80, 106, 0.10);
    margin-top: 0;
    padding-top: 18px;
}

.auth-medico-box h3 {
    color: var(--hz-white);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.auth-medico-box p {
    font-size: 14px;
    margin-bottom: 16px;
}

.auth-secondary-btn {
    border-radius: 8px;
    font-weight: 900;
    padding: 10px 16px;
}

.public-home-page,
.public-list-page,
.public-category-page,
.public-article-page {
    color: var(--hz-ink);
}

.hz-home-hero.intro_image {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 44%, rgba(255, 255, 255, 0.18) 100%), url(../images/Index_info_bg.jpg);
    background-position: center right;
    border-bottom: 1px solid var(--hz-line);
    height: auto;
    min-height: 460px;
    margin: 0;
}

.hz-home-hero .intro_text {
    padding: 92px 40px 90px;
    text-align: left;
}

.hz-home-hero .intro_text > .hero_title {
    color: var(--hz-slate-dark);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    max-width: 600px;
}

.hz-home-hero .hero-sub-text {
    color: #344054;
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
}

.hz-home-hero .hero-sub-text span {
    color: #344054 !important;
}

.hz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hz-primary-action,
.hz-secondary-action {
    border-radius: 8px;
    font-weight: 900;
    padding: 12px 18px;
}

.hz-primary-action {
    background: var(--hz-cyan);
    color: var(--hz-slate-dark);
}

.hz-primary-action:hover {
    background: var(--hz-slate);
    color: var(--hz-white);
}

.hz-secondary-action {
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    color: var(--hz-slate);
}

.hz-secondary-action:hover {
    border-color: var(--hz-cyan);
    color: var(--hz-cyan-dark);
}

.public-home-page section.p-4,
.public-home-page section.p4,
.public-home-page section.pt-5,
.public-list-page {
    padding-top: 42px;
    padding-bottom: 42px;
}

.public-home-page section.p4 {
    background: var(--hz-soft) !important;
    margin-bottom: 0 !important;
}

.public-home-page .heading,
.public-list-page .heading,
.public-category-page .heading {
    align-items: center;
    border-bottom: 1px solid var(--hz-line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}

.public-home-page .heading > h1,
.public-list-page .heading > h1,
.public-category-page .heading > h1 {
    color: var(--hz-slate);
    font-size: 26px;
    font-weight: 900;
    padding-bottom: 12px;
}

.health_news {
    background-color: var(--hz-soft);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
    height: 285px;
    margin-bottom: 24px;
    overflow: hidden;
}

.health_news > .info_overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
    min-height: 105px;
    padding: 16px;
}

.health_news > .info_overlay h3 {
    color: var(--hz-slate-dark);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.35;
}

.public-home-page .card-deck .card,
.public-home-page .card-columns .card {
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
    overflow: hidden;
}

.public-home-page .card a {
    color: inherit;
}

.public-home-page .card-title {
    color: var(--hz-slate-dark);
    font-weight: 900;
    letter-spacing: 0;
}

.public-home-page .card-text {
    color: #475467;
    letter-spacing: 0;
}

.public-home-page .blockquote-footer {
    background: transparent !important;
    color: var(--hz-muted) !important;
    padding: 0 !important;
}

.hz-program-section,
.hz-product-section,
.hz-testimonial-section {
    padding: 56px 0;
}

.hz-program-section {
    background: #f8fbfc;
    border-top: 1px solid var(--hz-line);
}

.hz-product-section {
    background: linear-gradient(180deg, #ffffff 0, #f7fbfd 100%);
}

.hz-testimonial-section {
    background: linear-gradient(180deg, #f6fbfd 0, #fff 100%);
}

.hz-section-head {
    margin: 0 auto 34px;
    max-width: 760px;
}

.hz-section-kicker,
.hz-card-eyebrow,
.hz-product-type {
    color: var(--hz-cyan-dark);
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hz-section-head h2,
.hz-section-row-head h2 {
    color: var(--hz-slate-dark);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 10px;
}

.hz-section-head p {
    color: #475467;
    font-size: 16px;
    margin: 0;
}

.hz-section-lead {
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
    margin: 4px 0 0;
    max-width: 560px;
}

.hz-section-row-head {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.hz-text-link {
    border-bottom: 2px solid var(--hz-cyan);
    color: var(--hz-slate-dark);
    font-weight: 900;
    padding-bottom: 4px;
}

.hz-text-link:hover {
    color: var(--hz-cyan-dark);
    text-decoration: none;
}

.hz-program-card {
    background: transparent;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    color: inherit;
    display: flex;
    height: 100%;
    min-height: 245px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hz-program-card:hover,
.hz-program-card:focus {
    box-shadow: none;
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
}

.hz-program-image {
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    flex: 0 0 42%;
    min-height: 245px;
}

.hz-program-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.hz-program-content strong {
    color: var(--hz-slate-dark);
    display: block;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hz-program-content span:last-child {
    color: #475467;
    line-height: 1.7;
}

.hz-product-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hz-product-card:hover {
    box-shadow: none;
    transform: translateY(-3px);
}

.hz-product-image {
    background: var(--hz-white);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
    display: block;
    height: 190px;
    overflow: hidden;
    position: relative;
}

.hz-product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.24s ease;
    width: 100%;
}

.hz-product-card:hover .hz-product-image img {
    transform: scale(1.04);
}

.hz-product-body {
    padding: 20px 4px 0;
}

.hz-product-body h3 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0 0 10px;
}

.hz-product-body h3 a {
    color: var(--hz-slate-dark);
}

.hz-product-body h3 a:hover {
    color: var(--hz-cyan-dark);
    text-decoration: none;
}

.hz-product-body p {
    color: #475467;
    font-size: 14px;
    line-height: 1.7;
    min-height: 96px;
}

.hz-product-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--hz-line);
    margin-top: 18px;
    padding-top: 14px;
}

.hz-product-footer strong {
    color: var(--hz-slate-dark);
    font-size: 18px;
}

.hz-small-action {
    background: var(--hz-cyan);
    border: 1px solid var(--hz-cyan);
    border-radius: 8px;
    color: var(--hz-slate-dark);
    font-weight: 900;
    padding: 7px 13px;
}

.hz-small-action:hover {
    background: var(--hz-slate);
    border-color: var(--hz-slate);
    color: var(--hz-white);
}

.hz-testimonial-carousel {
    padding: 0 54px 42px;
    position: relative;
}

.hz-testimonial-slide {
    align-items: stretch;
}

.hz-testimonial-card {
    background: transparent;
    border: 0;
    border-left: 3px solid var(--hz-cyan);
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0;
    padding: 4px 0 4px 20px;
    position: relative;
    width: 100%;
}

.hz-testimonial-slide .hz-testimonial-card {
    height: 100%;
}

.hz-quote-mark {
    background: transparent;
    color: var(--hz-cyan-dark);
    display: block;
    height: auto;
    margin-bottom: 10px;
    width: auto;
}

.hz-testimonial-card p {
    color: #344054;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.hz-testimonial-author {
    align-items: center;
    display: flex;
    gap: 12px;
}

.hz-testimonial-author span {
    align-items: center;
    background: var(--hz-slate);
    border-radius: 50%;
    color: var(--hz-white);
    display: flex;
    flex: 0 0 38px;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    text-transform: uppercase;
    width: 38px;
}

.hz-testimonial-author strong {
    color: var(--hz-slate-dark);
    font-size: 14px;
}

.hz-testimonial-carousel .carousel-control-prev,
.hz-testimonial-carousel .carousel-control-next {
    align-items: center;
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(23, 32, 51, 0.08);
    color: var(--hz-slate-dark);
    display: flex;
    height: 40px;
    justify-content: center;
    opacity: 1;
    top: 42%;
    width: 40px;
}

.hz-testimonial-carousel .carousel-control-prev {
    left: 0;
}

.hz-testimonial-carousel .carousel-control-next {
    right: 0;
}

.hz-testimonial-carousel .carousel-control-prev:hover,
.hz-testimonial-carousel .carousel-control-next:hover {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
}

.hz-testimonial-carousel .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.hz-testimonial-carousel .carousel-indicators li {
    background: #b8eefa;
    border: 0;
    border-radius: 999px;
    height: 8px;
    width: 22px;
}

.hz-testimonial-carousel .carousel-indicators .active {
    background: var(--hz-cyan-dark);
}

.site-signup.auth-page {
    padding: 58px 0 74px;
    position: relative;
}

.site-signup.auth-page:before {
    background:
        radial-gradient(circle at top left, rgba(18, 199, 235, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(64, 80, 106, 0.10), transparent 28%),
        linear-gradient(180deg, #f4fbf8 0%, #f8fcfb 48%, #ffffff 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.site-signup .container {
    position: relative;
    z-index: 1;
}

.site-signup .auth-shell-signup {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(64, 80, 106, 0.10);
    border-radius: 22px;
    box-shadow:
        0 32px 72px rgba(23, 32, 51, 0.10),
        0 12px 28px rgba(23, 32, 51, 0.05);
    grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
    overflow: hidden;
}

.site-signup .auth-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 250, 0.98) 100%);
    display: flex;
    padding: 30px;
    position: relative;
}

.site-signup .auth-card:before {
    background: radial-gradient(circle, rgba(18, 199, 235, 0.15) 0%, rgba(18, 199, 235, 0) 68%);
    content: "";
    height: 210px;
    position: absolute;
    right: -76px;
    top: -76px;
    width: 210px;
}

.site-signup .auth-signup-card-stack {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(64, 80, 106, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(23, 32, 51, 0.07);
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
    margin: auto;
    max-width: 100%;
    padding: 38px 34px 32px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.site-signup .auth-card-header {
    margin: 0;
}

.site-signup .auth-kicker-inline {
    align-items: center;
    color: var(--hz-cyan-dark);
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 0.10em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.site-signup .auth-kicker-inline:before {
    background: linear-gradient(90deg, var(--hz-cyan), var(--hz-cyan-dark));
    border-radius: 999px;
    content: "";
    display: block;
    height: 8px;
    width: 26px;
}

.site-signup .auth-card-header h1 {
    color: var(--hz-ink);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 10px;
}

.site-signup .auth-card-header p {
    color: #5d6e80;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 390px;
}

.site-signup .auth-oauth-card-signup {
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
    border: 1px solid rgba(64, 80, 106, 0.10);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80);
    margin-bottom: 0;
    padding: 22px;
}

.site-signup .auth-google-btn {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d6dee8;
    border-radius: 16px;
    box-shadow:
        0 10px 22px rgba(23, 32, 51, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.90);
    color: #1f1f1f;
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    min-height: 64px;
    padding: 14px 18px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    width: 100%;
}

.site-signup .auth-google-btn:hover,
.site-signup .auth-google-btn:focus {
    background: #ffffff;
    border-color: #c4d1de;
    box-shadow:
        0 18px 34px rgba(23, 32, 51, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    color: #1f1f1f;
    outline: 0;
    text-decoration: none;
    transform: translateY(-1px);
}

.site-signup .auth-google-btn:focus {
    box-shadow:
        0 0 0 4px rgba(66, 133, 244, 0.16),
        0 18px 34px rgba(23, 32, 51, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.site-signup .auth-google-logo {
    align-items: center;
    display: inline-flex;
    flex: 0 0 24px;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.site-signup .auth-google-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
    min-width: 0;
}

.site-signup .auth-google-copy strong {
    color: #202124;
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.site-signup .auth-google-copy small {
    color: #67768a;
    display: block;
    font-size: 12px;
    font-weight: 600;
}

.site-signup .auth-google-arrow {
    color: #97a5b5;
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.site-signup .auth-brand-panel {
    background:
        linear-gradient(150deg, rgba(45, 57, 77, 0.98) 0%, rgba(52, 74, 102, 0.96) 48%, rgba(24, 42, 66, 0.96) 100%);
    display: flex;
    min-height: 100%;
    padding: 52px 48px;
}

.site-signup .auth-brand-panel:after {
    background: radial-gradient(circle, rgba(18, 199, 235, 0.24) 0%, rgba(18, 199, 235, 0) 68%);
    height: 250px;
    right: -72px;
    top: -72px;
    transform: none;
    width: 250px;
}

.site-signup .auth-brand-panel-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}

.site-signup .auth-brand-panel h2 {
    font-size: 42px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.site-signup .auth-brand-panel p {
    font-size: 17px;
    line-height: 1.85;
    max-width: 460px;
}

.site-signup .auth-benefits {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.site-signup .auth-benefits li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    margin-bottom: 0;
    padding: 15px 16px;
}

.site-signup .auth-benefits i {
    background: var(--hz-cyan);
    box-shadow: 0 8px 18px rgba(18, 199, 235, 0.24);
    color: var(--hz-slate-dark);
    margin-top: 0;
}

.site-signup .auth-medico-box {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    margin-top: 34px;
    padding: 24px;
}

.site-signup .auth-medico-box p {
    margin-bottom: 16px;
}

.site-signup .auth-secondary-btn {
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(18, 199, 235, 0.16);
    min-height: 46px;
    padding: 12px 18px;
}

.site-signup .auth-terms {
    color: #67788a;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.site-signup .auth-switch {
    margin-top: 0;
}

@media (max-width: 991px) {
    .hz-testimonial-carousel {
        padding-left: 48px;
        padding-right: 48px;
    }

    .hz-program-card {
        display: block;
    }

    .hz-program-image {
        display: block;
        min-height: 220px;
        width: 100%;
    }

    .site-signup .auth-shell-signup {
        grid-template-columns: 1fr;
    }

    .site-signup .auth-card,
    .site-signup .auth-brand-panel {
        padding: 26px 22px;
    }

    .site-signup .auth-brand-panel h2 {
        font-size: 34px;
    }

    .site-signup .auth-signup-card-stack {
        padding: 30px 24px 26px;
    }

    .site-signup .auth-card-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .hz-program-section,
    .hz-product-section,
    .hz-testimonial-section {
        padding: 42px 0;
    }

    .hz-section-row-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hz-section-head h2,
    .hz-section-row-head h2 {
        font-size: 25px;
    }

    .hz-testimonial-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .hz-testimonial-carousel .carousel-control-prev,
    .hz-testimonial-carousel .carousel-control-next {
        display: none;
    }

    .hz-product-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hz-product-footer .btn {
        width: 100%;
    }

    .site-signup.auth-page {
        padding: 28px 0 40px;
    }

    .site-signup .auth-card,
    .site-signup .auth-brand-panel {
        padding: 18px 16px;
    }

    .site-signup .auth-signup-card-stack,
    .site-signup .auth-medico-box {
        border-radius: 16px;
    }

    .site-signup .auth-signup-card-stack {
        gap: 18px;
        padding: 24px 18px 22px;
    }

    .site-signup .auth-oauth-card-signup {
        border-radius: 16px;
        padding: 18px;
    }

    .site-signup .auth-card-header h1 {
        font-size: 27px;
    }

    .site-signup .auth-brand-panel h2 {
        font-size: 30px;
    }
}

.hz-list-card {
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.05);
    margin: 0 0 22px;
    overflow: hidden;
}

.hz-list-card .artical_img {
    min-height: 210px;
}

.artical_img {
    background-color: var(--hz-soft);
    background-position: center;
    background-size: cover;
    border-radius: 0;
}

.artical_content {
    padding: 22px 24px;
}

.artical_content > h3 {
    margin-bottom: 10px;
}

.artical_content > h3 > a {
    color: var(--hz-slate-dark);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.3;
}

.artical_content > h3 > a:hover {
    color: var(--hz-cyan-dark);
}

.artical_content > p {
    color: #475467;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.7;
    margin-bottom: 16px;
    max-height: 82px;
    overflow: hidden;
}

.artical_content .btn-warning,
.artical_content .btn-sm,
.btn-warning.btn-sm {
    background: var(--hz-cyan);
    border: 1px solid var(--hz-cyan);
    border-radius: 8px;
    color: var(--hz-slate-dark);
    display: inline-flex;
    font-weight: 900;
    gap: 6px;
    padding: 8px 12px;
}

.artical_content .btn-warning:hover,
.btn-warning.btn-sm:hover {
    background: var(--hz-slate);
    border-color: var(--hz-slate);
    color: var(--hz-white);
}

.banner_title {
    background-image: linear-gradient(90deg, rgba(64, 80, 106, 0.88), rgba(18, 199, 235, 0.48)), url(../images/health_banner.jpg);
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid var(--hz-line);
    min-height: 260px;
}

.banner_title > .overlay_shade {
    align-items: center;
    background: rgba(23, 32, 51, 0.18);
    display: flex;
    width: 100%;
}

.banner_title h1 {
    color: var(--hz-white);
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0;
}

.heading_popular {
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.05);
    margin-top: 40px;
    padding: 14px 16px;
}

.heading_popular > h4 {
    color: var(--hz-slate-dark);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
}

.popular_tabs {
    background: var(--hz-white);
    border-left: 1px solid var(--hz-line);
    border-right: 1px solid var(--hz-line);
}

.popular_tabs > li > a {
    color: var(--hz-slate);
    font-weight: 800;
    letter-spacing: 0;
}

.popular_tabs > li > a.active {
    background: var(--hz-cyan) !important;
    color: var(--hz-slate-dark) !important;
}

.popular_post {
    background: var(--hz-white);
    border-bottom: 1px solid var(--hz-line);
    border-left: 1px solid var(--hz-line);
    border-right: 1px solid var(--hz-line);
    padding: 14px 16px;
}

.popular_post > .text-link,
.popular_post a {
    color: var(--hz-slate-dark);
    font-weight: 800;
    letter-spacing: 0;
}

.popular_post > .text-link:hover,
.popular_post a:hover {
    color: var(--hz-cyan-dark);
}

.hz-popular-news {
    background: var(--hz-white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 40px;
    overflow: hidden;
}

.hz-popular-news .heading_popular {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--hz-line);
    box-shadow: none;
    margin: 0;
    padding: 0 0 14px;
}

.hz-popular-news .heading_popular > h4 {
    align-items: center;
    color: var(--hz-slate-dark);
    display: flex;
    font-size: 17px;
    gap: 10px;
    line-height: 1.35;
}

.hz-popular-icon {
    align-items: center;
    background: #e8f9fd;
    border: 0;
    border-radius: 50%;
    color: var(--hz-cyan);
    display: flex;
    flex: 0 0 36px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.hz-popular-news .popular_tabs {
    background: transparent;
    border: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 0 8px;
}

.hz-popular-news .popular_tabs > li {
    display: block;
    width: auto;
}

.hz-popular-news .popular_tabs > li > a {
    border: 0 !important;
    border-radius: 8px;
    color: var(--hz-slate);
    display: block;
    font-size: 13px;
    font-weight: 900;
    padding: 10px 12px;
    text-align: center;
}

.hz-popular-news .popular_tabs > li > a.active {
    background: var(--hz-cyan) !important;
    box-shadow: none;
    color: var(--hz-slate-dark) !important;
}

.hz-popular-news .tab-content {
    padding: 0;
}

.hz-popular-news .popular_post {
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--hz-line);
    border-radius: 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    margin: 0;
    padding: 15px 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hz-popular-news .popular_post:hover {
    background: transparent;
    transform: translateX(2px);
}

.hz-popular-news .popular_post > .position {
    align-items: center;
    background: #e8f9fd;
    border-radius: 50%;
    color: var(--hz-cyan-dark);
    display: flex;
    font-size: 14px;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    margin: 0;
    min-width: 30px;
    top: 0;
    width: 30px;
}

.hz-popular-news .popular_post > .text-link {
    color: var(--hz-slate-dark);
    display: -webkit-box;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.45;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.hz-popular-news .popular_post > .text-link:hover {
    color: var(--hz-cyan-dark);
    text-decoration: none;
}

.hz-popular-purple .hz-popular-icon,
.hz-popular-purple .popular_post > .position {
    background: #f7ecfb;
    color: #8b05ae;
}

.hz-popular-purple .popular_tabs > li > a.active {
    background: #f7ecfb !important;
    color: #6f058a !important;
}

.hz-popular-red .hz-popular-icon,
.hz-popular-red .popular_post > .position {
    background: #fff0f0;
    color: #d93b3b;
}

.hz-popular-red .popular_tabs > li > a.active {
    background: #fff0f0 !important;
    color: #b92e2e !important;
}

.hz-popular-yellow .hz-popular-icon,
.hz-popular-yellow .popular_post > .position {
    background: #fff8d7;
    color: #8f7200;
}

.hz-popular-yellow .popular_tabs > li > a.active {
    background: #fff8d7 !important;
    color: #705900 !important;
}

.hz-popular-green .hz-popular-icon,
.hz-popular-green .popular_post > .position {
    background: #eef8e9;
    color: #3f8c1d;
}

.hz-popular-green .popular_tabs > li > a.active {
    background: #eef8e9 !important;
    color: #337316 !important;
}

.pagination {
    margin: 18px auto 42px;
}

.pagination > li > a,
.pagination > li > span {
    border-color: var(--hz-line);
    color: var(--hz-slate);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > li > a:hover {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
}

.single_detail {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.single_detail > h1 {
    color: var(--hz-slate-dark);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.16;
    margin-bottom: 18px;
}

.single_detail > .date_name {
    border-bottom: 1px solid var(--hz-line);
    color: var(--hz-muted);
    margin-bottom: 28px;
    padding-bottom: 18px;
}

.single_detail > img,
.single_detail img.img-fluid {
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(23, 32, 51, 0.10);
    margin-bottom: 34px;
    width: 100%;
}

.single_detail p,
.single_detail li {
    color: #344054;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1.85;
    text-align: left;
}

.single_detail h2,
.single_detail h3,
.single_detail h4 {
    color: var(--hz-slate-dark);
    font-weight: 900;
    letter-spacing: 0;
    margin-top: 28px;
}

.single_detail a {
    font-weight: 800;
}

.hz-article-detail {
    max-width: 780px;
}

.hz-related-section {
    margin-top: 10px;
}

.hz-related-section .heading {
    border-bottom: 1px solid var(--hz-line);
    margin-bottom: 26px;
}

.hz-related-section .heading > h1 {
    color: var(--hz-slate-dark);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
    padding-bottom: 12px;
}

.hz-related-card {
    color: inherit;
    display: block;
    margin-bottom: 24px;
}

.hz-related-card:hover,
.hz-related-card:focus {
    color: inherit;
    text-decoration: none;
}

.hz-related-card .health_news {
    border: 0;
    box-shadow: none;
    height: 285px;
    transition: transform 0.2s ease;
}

.hz-related-card:hover .health_news {
    transform: translateY(-3px);
}

.hz-dashboard-body {
    background: #f6fbfd;
}

.hz-dashboard-wrap {
    background: linear-gradient(180deg, #f6fbfd 0, #ffffff 420px);
    min-height: 520px;
    padding-bottom: 48px;
}

.hz-dashboard-nav-wrap {
    margin-bottom: 18px;
}

.hz-dashboard-nav {
    background: var(--hz-white) !important;
    border: 1px solid var(--hz-line);
    border-radius: 8px !important;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
    padding: 10px 14px;
}

.hz-dashboard-nav .navbar-nav {
    gap: 6px;
}

.hz-dashboard-nav .nav-link {
    border-radius: 8px;
    color: var(--hz-slate) !important;
    font-weight: 800;
    letter-spacing: 0;
    padding: 10px 13px !important;
}

.hz-dashboard-nav .nav-link:hover,
.hz-dashboard-nav .nav-link:focus {
    background: var(--hz-soft);
    color: var(--hz-cyan-dark) !important;
}

.hz-dashboard-page {
    color: var(--hz-ink);
}

.hz-dashboard-hero,
.hz-page-title {
    background: linear-gradient(135deg, var(--hz-slate), var(--hz-slate-dark));
    border-radius: 8px;
    box-shadow: var(--hz-shadow);
    color: var(--hz-white);
    margin-bottom: 24px;
    padding: 28px 30px;
}

.hz-dashboard-hero h1,
.hz-page-title h1 {
    color: var(--hz-white);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: none;
}

.hz-dashboard-hero p {
    color: #d8e3ec;
    margin: 0;
}

.hz-kicker {
    color: var(--hz-cyan);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hz-table-card,
.hz-detail-card,
.hz-form-card,
.hz-checkout-page .card {
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
    overflow: hidden;
}

.hz-table-card {
    padding: 0;
}

.hz-table-card .table {
    margin-bottom: 0;
}

.hz-table-card .table thead,
.hz-table-card .table-striped thead {
    background: var(--hz-slate);
    color: var(--hz-white);
}

.hz-table-card .table th {
    border: 0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    padding: 14px 16px;
    white-space: nowrap;
}

.hz-table-card .table td {
    border-top: 1px solid var(--hz-line);
    color: #344054;
    padding: 14px 16px;
    vertical-align: middle;
}

.hz-table-card .table-striped tbody tr:nth-of-type(odd) {
    background: #fbfdff;
}

.hz-table-card .table a {
    color: var(--hz-cyan-dark);
    font-weight: 800;
}

.hz-table-card .table a:hover {
    color: var(--hz-slate);
}

.badge {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 6px 9px;
}

.badge-success {
    background: #18a058;
}

.badge-danger {
    background: #d64545;
}

.badge-warning {
    background: var(--hz-cyan);
    color: var(--hz-slate-dark);
}

.badge-secondary {
    background: #98a2b3;
}

.hz-detail-card {
    padding: 28px;
}

.hz-detail-card > .row {
    border-bottom: 1px solid var(--hz-line);
    padding: 13px 0;
}

.hz-detail-card > .row:last-child {
    border-bottom: 0;
}

.hz-detail-card b {
    color: var(--hz-slate-dark);
    font-weight: 900;
}

.hz-detail-card ul {
    margin-bottom: 0;
    padding-left: 18px;
}

.hz-detail-card hr {
    display: none;
}

.hz-form-card {
    padding: 28px;
}

.hz-form-card h1,
.doctor-form h1,
.questions-form h1 {
    color: var(--hz-slate-dark);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    margin-top: 10px;
    text-transform: none;
}

.hz-form-card hr,
.doctor-form hr,
.questions-form hr {
    border-color: var(--hz-line);
    margin: 10px 0 22px;
}

.hz-form-card label,
.doctor-form label,
.questions-form label {
    color: var(--hz-slate);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.hz-form-card .form-control,
.doctor-form .form-control,
.questions-form .form-control,
.hz-checkout-page .form-control {
    background: #fbfdff;
    border: 1px solid #d8e1ea;
    border-radius: 8px;
    min-height: 44px;
}

.hz-form-card textarea.form-control,
.doctor-form textarea.form-control,
.questions-form textarea.form-control {
    min-height: 110px;
}

.hz-form-card .btn,
.doctor-form .btn,
.questions-form .btn,
.hz-checkout-page .btn {
    border-radius: 8px;
    font-weight: 900;
    letter-spacing: 0;
}

.hz-dashboard-body .btn-success,
.hz-dashboard-body .btn-danger,
.hz-dashboard-body .btn-warning,
.hz-dashboard-body .btn-secondary {
    border-radius: 8px;
    font-weight: 900;
}

.hz-dashboard-body .btn-success,
.hz-dashboard-body .btn-danger {
    background: var(--hz-cyan) !important;
    border-color: var(--hz-cyan) !important;
    color: var(--hz-slate-dark) !important;
}

.hz-dashboard-body .btn-success:hover,
.hz-dashboard-body .btn-danger:hover {
    background: var(--hz-slate) !important;
    border-color: var(--hz-slate) !important;
    color: var(--hz-white) !important;
}

.hz-doctor-profile-page {
    padding-bottom: 40px;
}

.hz-profile-toolbar {
    align-items: center;
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.05);
    padding: 18px;
}

.hz-profile-toolbar .lead {
    color: var(--hz-slate-dark);
    font-weight: 900;
    margin-bottom: 8px;
}

.hz-doctor-profile-card.dr_profile {
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
    margin: 0;
    overflow: hidden;
    padding: 24px;
}

.dr_profile > .pic_info {
    border-right: 1px solid var(--hz-line);
    text-align: center;
}

.dr_profile img {
    border-radius: 8px;
}

.dr_profile .info_name > h4 {
    color: var(--hz-slate-dark);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

.dr_profile .info_name > span {
    color: var(--hz-muted);
    display: block;
    letter-spacing: 0;
}

.dr_profile .about_dr {
    border-top: 1px solid var(--hz-line);
    margin-top: 24px;
    padding: 22px 15px 0;
    width: 100%;
}

.dr_profile .about_dr > h4 {
    color: var(--hz-slate-dark);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.dr_profile .about_dr > p,
.dr_profile .about_dr > ul > li,
.dr_profile .about_dr > .info_dr > li {
    color: #475467;
    letter-spacing: 0;
}

.hz-doctor-profile-page .card {
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.05);
}

.hz-doctor-profile-page .card-header {
    background: var(--hz-slate);
    color: var(--hz-white);
    font-weight: 900;
}

.upload-btn-wrapper .btn-upload {
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    color: var(--hz-slate);
    font-size: 14px;
    padding: 8px 12px;
}

.hz-checkout-page {
    padding-bottom: 44px;
}

.hz-checkout-page h1 {
    color: var(--hz-slate-dark);
    font-weight: 900;
    letter-spacing: 0;
}

.hz-checkout-page .card {
    border-radius: 8px;
    margin-bottom: 18px;
}

.hz-checkout-page #totalAmount {
    color: var(--hz-slate-dark);
    font-size: 38px;
}

.hz-checkout-page .card-input {
    border: 1px solid #d8e1ea;
    border-radius: 8px;
}

.hz-transactions-page .fa-list {
    color: var(--hz-slate) !important;
}

.hz-transactions-page h1[style] {
    color: var(--hz-slate-dark) !important;
}

.shop-page {
    color: var(--hz-ink);
}

.shop-hero {
    align-items: center;
    background: linear-gradient(135deg, #f3fbfd 0, #ffffff 54%, #e8f7fb 100%);
    border: 1px solid rgba(18, 199, 235, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(23, 32, 51, 0.08);
    color: var(--hz-slate-dark);
    display: grid;
    gap: 12px;
    overflow: hidden;
    padding: 38px;
    position: relative;
}

.shop-hero:before {
    background: linear-gradient(135deg, rgba(18, 199, 235, 0.16), rgba(64, 80, 106, 0.06));
    border-radius: 50%;
    content: "";
    height: 230px;
    position: absolute;
    right: -78px;
    top: -92px;
    width: 230px;
}

.shop-hero > * {
    position: relative;
    z-index: 1;
}

.shop-hero h1 {
    color: var(--hz-slate-dark);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
}

.shop-hero p {
    color: #475467;
    font-size: 17px;
    margin-bottom: 0;
    max-width: 680px;
}

.shop-hero-cta {
    align-items: center;
    background: var(--hz-slate);
    border: 1px solid var(--hz-slate);
    border-radius: 8px;
    color: var(--hz-white);
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    margin-top: 10px;
    min-height: 44px;
    padding: 0 18px;
    width: fit-content;
}

.shop-hero-cta:hover,
.shop-hero-cta:focus {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
    text-decoration: none;
}

.shop-product-grid {
    margin-bottom: 10px;
}

.shop-product-card,
.shop-checkout-card,
.shop-result-card,
.shop-table-card,
.shop-product-detail,
.shop-product-image,
.shop-empty {
    background: var(--hz-white);
    border: 1px solid var(--hz-line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
    overflow: hidden;
}

.shop-product-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-product-card:hover {
    border-color: rgba(18, 199, 235, 0.35);
    box-shadow: 0 20px 46px rgba(23, 32, 51, 0.12);
    transform: translateY(-4px);
}

.shop-product-card .card-img-top,
.shop-product-image img {
    aspect-ratio: 4 / 3;
    background: #eef6f8;
    display: block;
    object-fit: cover;
    width: 100%;
}

.shop-product-card .card-body {
    padding: 20px;
}

.shop-product-card .badge,
.shop-product-detail .badge {
    align-self: flex-start;
    background: rgba(18, 199, 235, 0.14);
    border: 1px solid rgba(18, 199, 235, 0.2);
    border-radius: 999px;
    color: var(--hz-slate-dark);
    font-weight: 900;
    letter-spacing: 0;
    padding: 6px 10px;
}

.shop-product-card .card-title a,
.shop-product-detail h1 {
    color: var(--hz-slate-dark);
    font-weight: 900;
    letter-spacing: 0;
}

.shop-product-card .card-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.shop-product-card .card-title a:hover {
    color: var(--hz-cyan-dark);
}

.shop-product-card .card-text,
.shop-description,
.shop-checkout-card p {
    color: #475467;
    letter-spacing: 0;
    line-height: 1.7;
}

.shop-product-card .card-text {
    min-height: 68px;
}

.shop-price,
.shop-cart-total {
    color: var(--hz-slate-dark);
    font-size: 24px;
    font-weight: 900;
}

.shop-product-detail,
.shop-checkout-card,
.shop-result-card,
.shop-empty {
    padding: 28px;
}

.shop-product-image {
    padding: 12px;
}

.shop-product-image img {
    border-radius: 8px;
}

.shop-add-form label,
.shop-checkout-card label {
    color: var(--hz-slate);
    font-weight: 800;
    letter-spacing: 0;
}

.shop-table-card .table {
    margin-bottom: 0;
}

.shop-table-card thead {
    background: var(--hz-slate);
    color: var(--hz-white);
}

.shop-table-card th,
.shop-table-card td {
    border-color: var(--hz-line);
    padding: 14px 16px;
    vertical-align: middle;
}

.shop-cart-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.shop-downloads {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.shop-page .btn-primary,
.shop-page .btn-secondary {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    border-radius: 8px;
    color: var(--hz-slate-dark);
    font-weight: 900;
    min-height: 44px;
}

.shop-page .btn-primary:hover,
.shop-page .btn-secondary:hover {
    background: var(--hz-slate);
    border-color: var(--hz-slate);
    color: var(--hz-white);
}

.shop-page .btn-outline-secondary {
    border-color: var(--hz-line);
    border-radius: 8px;
    color: var(--hz-slate);
    font-weight: 900;
    min-height: 44px;
}

.shop-page .btn-primary:disabled,
.shop-page .btn-primary.is-loading {
    background: var(--hz-cyan);
    border-color: var(--hz-cyan);
    color: var(--hz-slate-dark);
    cursor: wait;
    opacity: 0.82;
}

.shop-btn-spinner {
    animation: shop-spin 0.75s linear infinite;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    height: 14px;
    margin-right: 8px;
    vertical-align: -2px;
    width: 14px;
}

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

.shop-cart-modal {
    align-items: center;
    display: none;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 1050;
}

.shop-cart-modal.is-visible {
    display: flex;
}

.shop-cart-modal-backdrop {
    background: rgba(23, 32, 51, 0.56);
    inset: 0;
    position: absolute;
}

.shop-cart-modal-panel {
    background: var(--hz-white);
    border: 1px solid rgba(18, 199, 235, 0.2);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(23, 32, 51, 0.24);
    max-width: 430px;
    padding: 30px;
    position: relative;
    text-align: center;
    width: 100%;
}

.shop-cart-modal-close {
    background: transparent;
    border: 0;
    color: var(--hz-muted);
    font-size: 28px;
    line-height: 1;
    padding: 8px;
    position: absolute;
    right: 10px;
    top: 8px;
}

.shop-cart-modal-icon {
    align-items: center;
    background: rgba(18, 199, 235, 0.14);
    border-radius: 50%;
    color: var(--hz-cyan-dark);
    display: inline-flex;
    font-size: 24px;
    height: 58px;
    justify-content: center;
    margin-bottom: 16px;
    width: 58px;
}

.shop-cart-modal-panel h2 {
    color: var(--hz-slate-dark);
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 8px;
}

.shop-cart-modal-panel p {
    color: #475467;
    margin-bottom: 22px;
}

.shop-cart-modal-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.shop-back-link {
    display: inline-block;
    font-weight: 900;
    margin-top: 14px;
}

@media (max-width: 991px) {
    .hz-header-main {
        padding: 18px 0 12px;
    }

    .hz-header-tools-col {
        display: block;
    }

    .hz-header-row > [class*="col-"] {
        margin-bottom: 12px;
    }

    .hz-header-row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }

    header .logo {
        justify-content: flex-start;
        margin-bottom: 0;
        width: auto;
    }

    header .search_bar {
        margin: 0 auto;
        max-width: 520px;
    }

    .hz-header-tools-col {
        width: 100%;
    }

    .hz-header-actions {
        justify-content: center;
        margin-top: 0;
    }

    .hz-header-right-tools {
        align-items: center;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        margin-top: 0;
    }

    .hz-top-actions {
        justify-content: center;
        width: 100%;
    }

    header .user_ac {
        justify-content: center;
        width: 100%;
    }

    .hz-top-actions,
    .hz-header-actions,
    header .user_ac {
        display: none;
    }

    .hz-top-actions li,
    .hz-header-actions li,
    header .user_ac > li {
        display: flex;
    }

    .hz-mobile-nav-toggle {
        display: inline-flex;
        min-width: 42px;
    }

    header > nav.hz-main-nav {
        display: none;
    }

    header > nav.hz-main-nav.is-open {
        display: block;
    }

    header > nav > ul {
        display: block;
        padding: 8px 15px;
    }

    .hz-mobile-only-nav-item,
    .hz-mobile-nav-form {
        display: block;
    }

    header > nav > ul > .hz-nav-spacer {
        display: none;
    }

    header > nav > ul > li {
        display: block;
    }

    header > nav > ul > li > a {
        border-radius: 8px;
        padding: 12px 10px;
    }

    .hz-mobile-only-nav-item > a,
    .hz-mobile-nav-submit {
        align-items: center;
        background: #f7fbfd;
        border: 1px solid var(--hz-line);
        border-radius: 10px;
        color: var(--hz-slate-dark);
        display: flex;
        font-size: 14px;
        font-weight: 800;
        gap: 10px;
        min-height: 44px;
        padding: 0 14px;
        width: 100%;
    }

    .hz-mobile-nav-submit {
        text-align: left;
    }

    .hz-mobile-only-nav-item > a:hover,
    .hz-mobile-nav-submit:hover {
        background: #ecfbff;
        border-color: var(--hz-cyan);
        color: var(--hz-slate-dark);
        text-decoration: none;
    }

    .hz-nav-divider {
        display: none !important;
    }

    header > nav > ul > li > .dropdown-menu {
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        margin: 4px 0 8px;
        position: static;
        width: 100%;
    }

    .shop-hero {
        padding: 30px;
    }

    .shop-hero h1 {
        font-size: 32px;
    }

    .shop-product-card .card-text {
        min-height: auto;
    }

    .auth-shell,
    .auth-shell-reverse {
        grid-template-columns: 1fr;
    }

    .auth-brand-panel {
        min-height: auto;
        padding: 36px;
    }

    .auth-card {
        padding: 36px;
    }

    .site-login .auth-shell-login {
        grid-template-columns: 1fr;
    }

    .site-login .auth-card {
        padding: 30px;
    }

    .site-login .auth-login-card-stack {
        max-width: none;
    }

    .hz-home-hero .intro_text {
        padding: 70px 30px;
    }

    .hz-home-hero .intro_text > .hero_title {
        font-size: 36px;
    }

    .single_detail {
        padding: 0;
    }

    .single_detail > h1,
    .banner_title h1 {
        font-size: 34px;
    }

    .hz-dashboard-nav .navbar-nav {
        gap: 2px;
        padding-top: 10px;
    }

    footer > .container > .row > [class*="col-"] {
        padding: 22px;
    }

    footer .foot_menu ul {
        text-align: center;
    }

    .dr_profile > .pic_info {
        border-right: 0;
        border-bottom: 1px solid var(--hz-line);
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
}

@media (max-width: 575px) {
    .hz-site-header {
        border-bottom: 1px solid var(--hz-line);
    }

    header .logo > img {
        max-width: 190px;
    }

    .hz-header-main {
        padding: 18px 0 10px;
    }

    .hz-mobile-brand-row {
        justify-content: space-between;
    }

    .hz-header-row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .hz-header-row > [class*="col-"] {
        margin-bottom: 10px;
        padding-left: 6px;
        padding-right: 6px;
    }

    header .search_bar {
        max-width: none;
    }

    header .search_bar > input,
    header .search_bar .form-control,
    header .search_bar button {
        height: 46px;
    }

    .hz-header-actions {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .hz-top-actions {
        width: 100%;
    }

    .hz-header-right-tools {
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
    }

    .hz-top-actions li,
    .hz-header-actions li {
        width: 100%;
    }

    .hz-top-cart,
    .hz-header-actions a {
        justify-content: center;
        width: 100%;
    }

    .hz-top-cart {
        min-height: 44px;
    }

    .hz-header-actions a {
        min-height: 44px;
        padding: 0 12px;
    }

    .hz-header-actions .hz-cta {
        grid-column: 1 / -1;
    }

    .hz-header-actions .hz-cta a {
        min-height: 46px;
    }

    header .user_ac {
        justify-content: center;
    }

    header .user_ac > li {
        width: 100%;
    }

    header .user_ac > li > a.hz-account-toggle {
        justify-content: center;
        width: 100%;
    }

    .hz-account-dropdown {
        left: 50%;
        margin-top: 8px;
        right: auto;
        transform: translateX(-50%);
        width: min(280px, calc(100vw - 32px));
    }

    .hz-account-dropdown:before {
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(45deg);
    }

    .hz-mobile-nav-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 0;
    }

    footer {
        margin-top: 34px;
        padding-top: 36px;
    }

    footer > .container > .row > [class*="col-"] {
        border-radius: 10px;
        padding: 20px;
    }

    footer .email_address {
        display: block;
    }

    footer .email_address .form-control,
    footer .email_address .btn {
        border-radius: var(--hz-radius);
        width: 100%;
    }

    footer .email_address .input-group-append {
        display: block;
        margin-top: 10px;
        width: 100%;
    }

    header > nav > ul > li > a {
        border-radius: var(--hz-radius);
        padding: 10px 8px;
    }

    .shop-page {
        padding-top: 28px !important;
    }

    .shop-hero {
        padding: 24px 20px;
    }

    .shop-hero h1 {
        font-size: 28px;
    }

    .shop-hero p {
        font-size: 16px;
    }

    .shop-hero-cta,
    .shop-cart-modal-actions {
        width: 100%;
    }

    .shop-cart-modal-actions {
        grid-template-columns: 1fr;
    }

    .auth-page {
        padding: 24px 0 40px;
    }

    .auth-brand-panel,
    .auth-card {
        padding: 26px 20px;
    }

    .auth-brand-panel h1,
    .auth-brand-panel h2 {
        font-size: 28px;
    }

    .auth-card-header h1,
    .auth-card-header h2 {
        font-size: 24px;
    }

    .auth-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .site-login.auth-page {
        padding: 28px 0 42px;
    }

    .site-login .auth-brand-panel,
    .site-login .auth-card {
        padding: 24px 18px;
    }

    .site-login .auth-login-card-stack {
        border-radius: 16px;
        gap: 18px;
        padding: 26px 20px;
    }

    .site-login .auth-card-header h2 {
        font-size: 28px;
    }

    .site-login .auth-oauth-card {
        border-radius: 14px;
        padding: 18px;
    }

    .site-login .auth-google-btn {
        align-items: flex-start;
        font-size: 15px;
        justify-content: flex-start;
        min-height: 56px;
        padding: 14px 16px;
    }

    .site-login .auth-google-copy {
        text-align: left;
    }

    .auth-divider {
        gap: 8px;
    }

    .auth-divider span {
        white-space: normal;
    }

    .hz-home-hero.intro_image {
        min-height: 380px;
    }

    .hz-home-hero .intro_text {
        padding: 48px 22px;
    }

    .hz-home-hero .intro_text > .hero_title {
        font-size: 30px;
    }

    .hz-hero-actions .btn {
        width: 100%;
    }

    .artical_content {
        padding: 18px;
    }

    .artical_content > h3 > a {
        font-size: 19px;
    }

    .single_detail {
        padding: 0;
    }

    .single_detail > h1 {
        font-size: 28px;
    }

    .banner_title {
        min-height: 210px;
    }

    .banner_title h1 {
        font-size: 30px !important;
    }

    .hz-dashboard-hero,
    .hz-page-title,
    .hz-detail-card,
    .hz-form-card,
    .hz-doctor-profile-card.dr_profile {
        padding: 20px;
    }

    .hz-dashboard-hero h1,
    .hz-page-title h1 {
        font-size: 26px;
    }

    .hz-table-card .table th,
    .hz-table-card .table td {
        padding: 12px;
    }

    .shop-cart-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }
}
