/* =========================================================================
   Tebbe Sonati — Home redesign design system
   Self-contained, no build step required. RTL-first.
   Editorial sections use a natural "herbal" palette; commerce elements
   reuse the site theme variables (--primaryColor / --secondaryColor).
   ========================================================================= */

:root {
    --hs-green:        #288773;
    --hs-green-dark:   #074034;
    --hs-green-soft:   #2f9d86;
    --hs-green-tint:   #e8f3ef;
    --hs-gold:         #998032;
    --hs-cream:        #f6f5ef;
    --hs-ink:          #123a30;
    --hs-muted:        #6b7d75;
    --hs-line:         #e6ebe7;
    --hs-shadow:       0 10px 30px rgba(7, 64, 52, .10);
    --hs-shadow-sm:    0 4px 14px rgba(7, 64, 52, .07);
    --hs-radius:       18px;
    /* Height of the sticky site header (nav.hs-sticky-nav) plus a small gap.
       Every position:sticky sidebar/sub-nav should pin at this offset so it
       stops BELOW the header instead of scrolling underneath it. */
    --hs-header-h:     147px;
    --hs-sticky-top:   160px;
}

.hs { direction: rtl; text-align: right; }
.hs * { box-sizing: border-box; }

.hs-container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 16px;
}

/* ---------- Section heading ---------- */
.hs-section { padding-block: 34px; }
.hs-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.hs-head__titles { display: flex; flex-direction: column; gap: 6px; }
.hs-head__kicker {
    font-size: 13px;
    font-weight: 700;
    color: var(--hs-green-soft);
    letter-spacing: .3px;
}
.hs-head__title {
    position: relative;
    font-size: 25px;
    font-weight: 800;
    color: var(--hs-ink);
    line-height: 1.4;
    padding-right: 16px;
}
.hs-head__title::before {
    content: "";
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 26px;
    border-radius: 6px;
    background: linear-gradient(var(--hs-green), var(--hs-gold));
}

/* Centered section headings: suppress the side bar and use a
   short centered gold/green underline instead. Targets any heading
   whose parent .hs-head is centered via inline justify-content. */
.hs-head[style*="justify-content:center"] .hs-head__title,
.hs-head[style*="justify-content: center"] .hs-head__title {
    padding-right: 0;
    padding-bottom: 16px;
}
.hs-head[style*="justify-content:center"] .hs-head__title::before,
.hs-head[style*="justify-content: center"] .hs-head__title::before {
    content: none;
}
.hs-head[style*="justify-content:center"] .hs-head__title::after,
.hs-head[style*="justify-content: center"] .hs-head__title::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hs-green), var(--hs-gold));
}
.hs-head__link {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--hs-green);
    background: var(--hs-green-tint);
    border-radius: 999px;
    padding: 8px 16px;
    transition: .2s;
    white-space: nowrap;
}
.hs-head__link:hover { background: var(--hs-green); color: #fff; }

@media (max-width: 640px) {
    .hs-head__title { font-size: 20px; }
    .hs-head__link { padding: 6px 12px; font-size: 12px; }
}

/* ---------- Product cards ---------- */
.hs-prod-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (min-width: 640px)  { .hs-prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .hs-prod-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1180px) { .hs-prod-grid { grid-template-columns: repeat(5, 1fr); } }

.hs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 0; box-shadow: none;
    border-radius: 12px;
    padding: 10px;
    height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    overflow: hidden;
}
.hs-card__badge {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 2;
    background: var(--primaryColor, #FD0C0C);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 5px 9px;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(0,0,0,.14);
}
.hs-card__imgwrap {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    background: #fafbfa;
    border: 0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.hs-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .35s ease;
}
.hs-card:hover .hs-card__img { transform: scale(1.05); }
.hs-card__title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    font-size: 14px;
    line-height: 1.7;
    color: var(--hs-ink);
    font-weight: 700;
    margin: 0 4px 10px;
}
.hs-card__meta {
    position: relative;
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 4px 2px;
}
/* inset horizontal divider between title and price row */
.hs-card__meta::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 10px;
    height: 1px;
    background: var(--hs-line);
}
/* inset divider for popular-products (پرطرفدار) / similar swiper cards */
.hs-swiper-divider {
    height: 1px;
    background: var(--hs-line);
    margin: 4px 12px 0;
}
.hs-card__sold {
    font-size: 12px;
    color: var(--hs-muted);
    white-space: nowrap;
    padding-bottom: 2px;
}
.hs-card__prices { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.hs-card__old {
    font-size: 12px;
    color: #a7b3ad;
    text-decoration: line-through;
    line-height: 1;
}
.hs-card__price {
    font-size: 16px;
    font-weight: 800;
    color: var(--hs-green-dark);
    white-space: nowrap;
    line-height: 1.1;
}
.hs-card__price small { font-size: 11px; font-weight: 600; color: var(--hs-muted); }
.hs-card__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--hs-muted);
    padding: 30px;
}

/* ---------- CTA / consultation banner ---------- */
.hs-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 860px) { .hs-cta { grid-template-columns: 1fr; } }

.hs-cta__box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 30px 32px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    box-shadow: var(--hs-shadow);
}
.hs-cta__box--green { background: linear-gradient(120deg, var(--hs-green-dark), var(--hs-green-soft)); }
.hs-cta__box--gold  { background: linear-gradient(120deg, #8a6d1f, var(--hs-gold)); }
.hs-cta__box::after {
    content: "";
    position: absolute;
    left: -40px; bottom: -50px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}
.hs-cta__icon { font-size: 30px; margin-bottom: 12px; opacity: .9; }
.hs-cta__title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.hs-cta__text { font-size: 14px; line-height: 2; opacity: .92; margin-bottom: 18px; max-width: 34ch; }
.hs-cta__btn {
    align-self: flex-start;
    background: #fff;
    color: var(--hs-green-dark);
    font-weight: 800;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 999px;
    transition: .2s;
    display: inline-flex; align-items: center; gap: 8px;
}
.hs-cta__box--gold .hs-cta__btn { color: #7a5f16; }
.hs-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }

/* ---------- Why traditional medicine ---------- */
.hs-why { background: var(--hs-cream); border-radius: 26px; padding: 40px 26px; }
.hs-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 26px;
}
@media (max-width: 980px) { .hs-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hs-why__grid { grid-template-columns: 1fr; } }
.hs-why__item {
    background: #fff;
    border-radius: var(--hs-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--hs-shadow-sm);
    transition: transform .25s;
}
.hs-why__item:hover { transform: translateY(-4px); }
.hs-why__icon {
    width: 62px; height: 62px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 18px;
    background: var(--hs-green-tint);
    color: var(--hs-green);
    font-size: 26px;
}
.hs-why__title { font-size: 16px; font-weight: 800; color: var(--hs-ink); margin-bottom: 8px; }
.hs-why__text { font-size: 13px; line-height: 2; color: var(--hs-muted); }

/* ---------- Category icons (enhanced) ---------- */
.hs-cats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
@media (max-width: 1024px) { .hs-cats { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .hs-cats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .hs-cats { grid-template-columns: repeat(2, 1fr); } }
.hs-cat {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    padding: 20px 10px;
    text-align: center;
    transition: .25s;
}
.hs-cat:hover { border-color: var(--hs-green); box-shadow: var(--hs-shadow-sm); transform: translateY(-3px); }
.hs-cat__icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hs-green-tint), #fff);
    color: var(--hs-green-soft);
    font-size: 28px;
}
.hs-cat:hover .hs-cat__icon { color: var(--hs-green-dark); }
.hs-cat__title { font-size: 14px; font-weight: 700; color: var(--hs-ink); }
.hs-cat__count { font-size: 12px; color: var(--hs-muted); }

/* ---------- Testimonials ---------- */
.hs-testi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .hs-testi__grid { grid-template-columns: 1fr; } }
.hs-testi__card {
    position: relative;
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    padding: 24px 24px 22px;
    box-shadow: var(--hs-shadow-sm);
}
.hs-testi__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--hs-line);
}
.hs-testi__name { font-size: 14px; font-weight: 800; color: var(--hs-green-dark); }
.hs-testi__role { font-size: 12px; color: var(--hs-muted); margin-top: 3px; }
.hs-testi__stars { color: var(--hs-gold); font-size: 14px; white-space: nowrap; }
.hs-testi__stars .fas.fa-star { color: var(--hs-gold); }
.hs-testi__stars .far.fa-star { color: #d8ddd9; }
.hs-testi__body { font-size: 14px; line-height: 2.1; color: #34443e; }

/* ---------- FAQ accordion ---------- */
.hs-faq__wrap { max-width: 880px; margin-inline: auto; }
.hs-faq__item {
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
}
.hs-faq__item[open] { border-color: var(--hs-green); }
.hs-faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hs-ink);
}
.hs-faq__q::-webkit-details-marker { display: none; }
.hs-faq__q i { color: var(--hs-green); transition: transform .25s; flex-shrink: 0; }
.hs-faq__item[open] .hs-faq__q i { transform: rotate(180deg); }
.hs-faq__a {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 2.2;
    color: var(--hs-muted);
}

/* ---------- Three key features strip ---------- */
.hs-feat {
    background: linear-gradient(120deg, var(--hs-green-dark), var(--hs-green));
    border-radius: 26px;
    padding: 36px 26px;
}
.hs-feat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 820px) { .hs-feat__grid { grid-template-columns: 1fr; } }
.hs-feat__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #fff;
}
.hs-feat__icon {
    flex-shrink: 0;
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.14);
    font-size: 24px;
}
.hs-feat__title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.hs-feat__text { font-size: 13px; line-height: 1.9; opacity: .9; }
.hs-feat__divider { width: 1px; background: rgba(255,255,255,.15); }

/* ---------- Consultation / Cooperation form pages ---------- */
.hs-page { padding-block: 40px; }
.hs-page__hero {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(120deg, var(--hs-green-dark), var(--hs-green-soft));
    color: #fff;
    padding: 46px 34px;
    margin-bottom: 30px;
}
.hs-page__hero::after {
    content: "";
    position: absolute; left: -60px; top: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.hs-page__hero h1 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.hs-page__hero p { font-size: 15px; line-height: 2.1; opacity: .93; max-width: 60ch; }
.hs-grid2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 880px) { .hs-grid2 { grid-template-columns: 1fr; } }

.hs-card-panel {
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    padding: 26px;
    box-shadow: var(--hs-shadow-sm);
}
.hs-form { display: flex; flex-direction: column; gap: 16px; }
.hs-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .hs-form__row { grid-template-columns: 1fr; } }
.hs-field { display: flex; flex-direction: column; gap: 7px; }
.hs-field label { font-size: 13px; font-weight: 700; color: var(--hs-ink); }
.hs-field input,
.hs-field textarea,
.hs-field select {
    width: 100%;
    border: 1px solid var(--hs-line);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--hs-ink);
    background: #fbfcfb;
    transition: .2s;
    font-family: inherit;
}
.hs-field textarea { resize: vertical; min-height: 120px; }
.hs-field input:focus,
.hs-field textarea:focus,
.hs-field select:focus {
    outline: none;
    border-color: var(--hs-green);
    background: #fff;
    box-shadow: 0 0 0 3px var(--hs-green-tint);
}
.hs-field__err { font-size: 12px; color: #d64545; }
.hs-btn {
    align-self: flex-start;
    background: var(--hs-green);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 34px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: .2s;
    display: inline-flex; align-items: center; gap: 8px;
}
.hs-btn:hover { background: var(--hs-green-dark); transform: translateY(-2px); }
.hs-alert {
    background: var(--hs-green-tint);
    color: var(--hs-green-dark);
    border: 1px solid #bfe0cb;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    display: flex; align-items: center; gap: 10px;
}
.hs-side-list { display: flex; flex-direction: column; gap: 16px; }
.hs-side-list__item { display: flex; gap: 14px; align-items: flex-start; }
.hs-side-list__icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--hs-green-tint); color: var(--hs-green);
    font-size: 18px;
}
.hs-side-list__title { font-size: 14px; font-weight: 800; color: var(--hs-ink); margin-bottom: 4px; }
.hs-side-list__text { font-size: 13px; line-height: 1.9; color: var(--hs-muted); }

/* =========================================================================
   Header / navigation (desktop menu strip)
   Semantic classes prefixed hs-nav*. RTL-first, herbal green palette.
   ========================================================================= */
.hs-nav {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--hs-line);
    box-shadow: var(--hs-shadow-sm);
}
.hs-nav__inner {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-inline: 40px;
    position: relative;
}
.hs-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 58px;
}

/* ---- primary launcher: محصولات ---- */
.hs-nav__launcher {
    position: relative;
    cursor: pointer;
}
.hs-nav__launcher-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--hs-ink);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color .2s ease;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}
.hs-nav__launcher-btn::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--hs-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease;
}
.hs-nav__launcher:hover .hs-nav__launcher-btn { color: var(--hs-green); }
.hs-nav__launcher:hover .hs-nav__launcher-btn::after { transform: scaleX(1); }
/* active (current page) */
.hs-nav__launcher.is-active .hs-nav__launcher-btn { color: var(--hs-green); }
.hs-nav__launcher.is-active .hs-nav__launcher-btn::after { transform: scaleX(1); }
.hs-nav__chevron {
    font-size: 10px;
    color: var(--hs-muted);
    transition: transform .25s ease, color .2s ease;
}
.hs-nav__launcher:hover .hs-nav__chevron {
    transform: rotate(180deg);
    color: var(--hs-green);
}

/* small divider (optional) */
.hs-nav__sep {
    width: 1px;
    height: 24px;
    background: var(--hs-line);
    margin-inline: 10px;
}

/* ---- standard links ---- */
.hs-nav__item { position: relative; }
.hs-nav__link {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hs-ink);
    transition: color .2s ease;
    white-space: nowrap;
    text-decoration: none;
}
.hs-nav__link:hover,
.hs-nav__link:focus,
.hs-nav__item:hover .hs-nav__link {
    text-decoration: none;
}
.hs-nav__link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--hs-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease;
}
.hs-nav__item:hover .hs-nav__link { color: var(--hs-green); }
.hs-nav__item:hover .hs-nav__link::after { transform: scaleX(1); }
/* active (current page) — persistent underline */
.hs-nav__item.is-active .hs-nav__link { color: var(--hs-green); }
.hs-nav__item.is-active .hs-nav__link::after { transform: scaleX(1); }

/* ---- مشاوره آنلاین — subtle highlighted text link ---- */
.hs-nav__consult {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--hs-green);
    background: transparent;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.hs-nav__consult i { font-size: 13px; }
.hs-nav__consult:hover,
.hs-nav__consult:focus {
    color: var(--hs-green-dark);
    background: var(--hs-green-tint);
    text-decoration: none;
}
/* active (current page) — highlighted CTA */
.hs-nav__item.is-active .hs-nav__consult {
    color: var(--hs-green-dark);
    background: var(--hs-green-tint);
}
.hs-nav__spacer { flex: 1 1 auto; }

/* =========================================================================
   Floating action button — مشاوره آنلاین (all pages)
   ========================================================================= */
.hs-fab {
    position: fixed;
    right: auto;
    left: 22px;                 /* bottom-left corner on all screens */
    bottom: 22px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    min-height: 36px;
    box-sizing: border-box;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hs-green), var(--hs-green-dark));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(7, 64, 52, .24);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.hs-fab__icon { font-size: 15px; line-height: 1; }
.hs-fab:hover,
.hs-fab:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(7, 64, 52, .34);
}

/* On small screens shrink to an icon-only circle */
@media (max-width: 640px) {
    .hs-fab {
        right: auto;
        left: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        min-height: 0;
        padding: 0;
        justify-content: center;
        gap: 0;
    }
    .hs-fab__text { display: none; }
    .hs-fab__icon { font-size: 18px; }
}

/* =========================================================================
   Header top row — remove legacy vertical divider beside the cart icon
   (overrides .cart:before defined in app.css)
   ========================================================================= */
.cart::before { display: none !important; content: none !important; }

/* =========================================================================
   Header top row — guest login/register button
   ========================================================================= */
.hs-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--hs-green);
    background: #fff;
    border: 1.5px solid var(--hs-green);
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.hs-login-btn:hover,
.hs-login-btn:focus {
    background: var(--hs-green);
    color: #fff;
    box-shadow: 0 6px 16px rgba(20, 83, 45, .2);
    text-decoration: none;
}
.hs-login-btn i { font-size: 13px; }
@media (max-width: 767px) {
    .hs-login-btn { display: none; }
}

/* =========================================================================
   Header — authenticated account trigger + dropdown card
   ========================================================================= */
.hs-acct {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.hs-acct__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-inline-start: 4px;
    border-radius: 999px;
    color: var(--hs-green);
    background: var(--hs-green-tint);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.hs-acct__trigger i { font-size: 16px; }
.hs-acct__trigger:hover,
.hs-acct__trigger.is-open {
    background: var(--hs-green);
    color: #fff;
    box-shadow: 0 6px 16px rgba(7, 64, 52, .18);
}

.hs-acct-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    margin-top: 10px;
    width: 260px;
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: 16px;
    box-shadow: var(--hs-shadow);
    overflow: hidden;
    z-index: 1000;
    padding: 6px;
}
/* Alpine transition helpers */
.hs-acct-menu--enter { transition: opacity .18s ease, transform .18s ease; }
.hs-acct-menu--enter-start { opacity: 0; transform: translateY(-6px); }
.hs-acct-menu--enter-end { opacity: 1; transform: translateY(0); }

/* header row: name + account link */
.hs-acct-menu__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .18s ease;
}
.hs-acct-menu__head:hover { background: var(--hs-green-tint); }
.hs-acct-menu__avatar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hs-green-soft), var(--hs-green-dark));
    color: #fff;
}
.hs-acct-menu__avatar i { font-size: 16px; }
.hs-acct-menu__ident { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.hs-acct-menu__name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--hs-green-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hs-acct-menu__sub { font-size: 11.5px; color: var(--hs-green); margin-top: 2px; }
.hs-acct-menu__chev { font-size: 11px; color: #9fb3ab; flex-shrink: 0; }
.hs-acct-menu__head:hover .hs-acct-menu__chev { color: var(--hs-green); }

.hs-acct-menu hr,
.hs-acct-menu__sep {
    border: 0;
    border-top: 1px solid var(--hs-line);
    margin: 6px 8px;
}

/* menu items */
.hs-acct-menu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    margin-top: 2px;
    border-radius: 12px;
    font-size: 13px;
    color: #4a5a54;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.hs-acct-menu__item span { line-height: 1; }
.hs-acct-menu__icon {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: var(--hs-green);
    transition: color .18s ease;
}
.hs-acct-menu__item:hover {
    background: var(--hs-green-tint);
    color: var(--hs-green-dark);
}
.hs-acct-menu__item--logout { margin-top: 4px; }
.hs-acct-menu__item--logout .hs-acct-menu__icon { color: #c0553f; }
.hs-acct-menu__item--logout:hover {
    background: #fbecea;
    color: #a5432f;
}
.hs-acct-menu__item--logout:hover .hs-acct-menu__icon { color: #a5432f; }

/* =========================================================================
   Header search field (top row) — flows naturally, green accent
   ========================================================================= */
.hs-search { width: 100%; min-width: 0; }
.hs-search__wrap { min-height: 46px; min-width: 0; }
.hs-search__input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: 46px;
    line-height: 46px;
    background: #f1f3f2;
    border-radius: 12px;
    transition: background .2s ease, box-shadow .2s ease;
    box-shadow: inset 0 0 0 1px transparent;
}
/* neutral gray text + placeholder (override compiled app.css / theme green) */
.hs-search__input,
.hs-search__input--mobile { color: #6b7280 !important; }
.hs-search__input::placeholder,
.hs-search__input--mobile::placeholder { color: #9aa39e !important; opacity: 1; }
.hs-search__input::-webkit-input-placeholder,
.hs-search__input--mobile::-webkit-input-placeholder { color: #9aa39e !important; opacity: 1; }
.hs-search__input::-moz-placeholder,
.hs-search__input--mobile::-moz-placeholder { color: #9aa39e !important; opacity: 1; }
.hs-search__input:focus,
.hs-search__input--active {
    background: #fff;
    box-shadow: inset 0 0 0 1.5px #cbd3ce;
}
/* magnifier icon (from app.css `.right-side .search:before`) sits at the start */
.right-side .hs-search__wrap.search::before { top: 50% !important; transform: translateY(-50%); color: #9aa39e !important; }
/* suggestions dropdown */
.hs-search__box {
    border: 1px solid var(--hs-line);
    box-shadow: var(--hs-shadow);
}

/* =========================================================================
   محصولات MEGA MENU (desktop) — left categories + right subcategory grid
   ========================================================================= */
.hs-mega {
    display: none;
    position: absolute;
    top: 100%;
    right: 40px;
    left: auto;
    width: min(860px, calc(100vw - 90px));
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: 16px;
    box-shadow: var(--hs-shadow);
    overflow: hidden;
    z-index: 60;
    margin-top: 6px;
}
.hs-mega--open { display: flex; }
/* invisible bridge over the 6px gap so the pointer can travel
   from the محصولات launcher into the panel without a dead zone */
.hs-mega::before {
    content: "";
    position: absolute;
    top: -12px;
    inset-inline: 0;
    height: 14px;
}

/* right column: root categories list */
.hs-mega__aside {
    flex: 0 0 246px;
    max-width: 246px;
    background: var(--hs-cream);
    border-inline-start: 1px solid var(--hs-line);
    padding: 10px;
    max-height: 72vh;
    overflow-y: auto;
}
.hs-mega__cats { list-style: none; margin: 0; padding: 0; }
.hs-mega__cat { border-radius: 10px; transition: background .15s ease; }
.hs-mega__cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    font-size: 14px;
    color: var(--hs-ink);
    text-decoration: none;
    border-radius: 10px;
}
.hs-mega__cat-icon {
    font-size: 15px;
    width: 20px;
    text-align: center;
    color: var(--hs-green-soft);
    transition: color .15s ease;
}
.hs-mega__cat-title { flex: 1 1 auto; font-weight: 600; }
.hs-mega__cat-arrow {
    font-size: 10px;
    color: var(--hs-muted);
    opacity: 0;
    transition: opacity .15s ease, color .15s ease;
}
.hs-mega__cat.is-active,
.hs-mega__cat:hover { background: var(--hs-green-tint); }
.hs-mega__cat.is-active .hs-mega__cat-link,
.hs-mega__cat:hover .hs-mega__cat-link { color: var(--hs-green-dark); font-weight: 700; }
.hs-mega__cat.is-active .hs-mega__cat-icon,
.hs-mega__cat:hover .hs-mega__cat-icon { color: var(--hs-green); }
.hs-mega__cat.is-active .hs-mega__cat-arrow,
.hs-mega__cat:hover .hs-mega__cat-arrow { opacity: 1; color: var(--hs-green); }

/* left area: sub-category grid */
.hs-mega__panel {
    flex: 1 1 auto;
    min-width: 0;
    padding: 18px 22px 22px;
    min-height: 240px;
}
.hs-mega__panel-inner { display: flex; flex-direction: column; height: 100%; }
.hs-mega__all {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--hs-green-dark);
    background: var(--hs-green-tint);
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.hs-mega__all:hover { background: var(--hs-green); color: #fff; }
.hs-mega__all-arrow { font-size: 11px; }
.hs-mega__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
    gap: 6px 20px;
    align-content: start;
}
.hs-mega__col { break-inside: avoid; padding-bottom: 8px; }
.hs-mega__sub {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--hs-ink);
    text-decoration: none;
    transition: color .15s ease;
}
.hs-mega__sub:hover { color: var(--hs-green); }
.hs-mega__sub-arrow { font-size: 9px; color: var(--hs-muted); }
.hs-mega__sub:hover .hs-mega__sub-arrow { color: var(--hs-green); }
.hs-mega__child {
    display: block;
    padding: 4px 4px 4px 12px;
    font-size: 12.5px;
    color: var(--hs-muted);
    text-decoration: none;
    transition: color .15s ease;
}
[dir="rtl"] .hs-mega__child { padding: 4px 12px 4px 4px; }
.hs-mega__child:hover { color: var(--hs-green); }

/* =========================================================================
   Blog cards (مجله سلامت) — clean, modern, data-driven
   ========================================================================= */
.hs-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--hs-shadow-sm);
    transition: box-shadow .25s ease;
    cursor: pointer;
}
.hs-blog-card:hover {
    box-shadow: 0 14px 34px rgba(20, 83, 45, .16);
}
.hs-blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--hs-green-tint);
}
.hs-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.hs-blog-card:hover .hs-blog-card__img { transform: scale(1.06); }
.hs-blog-card__cat {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(20, 83, 45, .88);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 999px;
    backdrop-filter: blur(2px);
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}
.hs-blog-card:hover .hs-blog-card__cat {
    opacity: 1;
    transform: translateY(0);
}
.hs-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    padding: 16px 18px 14px;
}
.hs-blog-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
    color: var(--hs-ink);
    min-height: calc(1.8em * 2);
}
.hs-blog-card__title,
.hs-blog-card__title a { color: var(--hs-ink); text-decoration: none; }
.hs-blog-card:hover .hs-blog-card__title,
.hs-blog-card:hover .hs-blog-card__title a,
.hs-blog-card__title:hover,
.hs-blog-card__title a:hover { color: var(--hs-ink); }
.hs-blog-card__meta {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--hs-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--hs-muted);
}
.hs-blog-card__views {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    white-space: nowrap;
    color: var(--hs-muted);
}
.hs-blog-card__views i {
    color: var(--hs-green);
    font-size: 13px;
}
.hs-blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    white-space: nowrap;
    color: var(--hs-green);
    font-weight: 800;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--hs-green-tint);
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.hs-blog-card__cta:hover,
.hs-blog-card:hover .hs-blog-card__cta {
    background: var(--hs-green);
    color: #fff;
}
.hs-blog-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hs-green);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 11px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 16px rgba(20, 83, 45, .18);
}
.hs-blog-more:hover {
    background: var(--hs-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(20, 83, 45, .26);
    color: #fff;
}

/* =========================================================================
   Fix 1 — Remove red duplicate underline on desktop header nav
   (#heading-menu li:after from compiled app.css). Keep the green
   .hs-nav__link::after underline intact.
   ========================================================================= */
#heading-menu li::after,
#heading-menu li:hover::after {
    content: none !important;
    display: none !important;
    background: none !important;
    width: 0 !important;
}

/* =========================================================================
   Fix 3 — Blog magazine cards: force clean landscape (16:9) thumbnails
   ========================================================================= */
.hs-blog-card__media {
    aspect-ratio: 16 / 9;
}
.hs-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================================
   Footer — modern professional RTL footer (green design system)
   ========================================================================= */
.hs-footer {
    position: relative;
    background: var(--hs-green-dark);
    background-image: radial-gradient(130% 90% at 100% 0, rgba(47, 157, 134, .18), transparent 55%);
    color: #e9f3ec;
    direction: rtl;
    margin-top: 40px;
    font-size: 14px;
}
/* Gold → green accent line across the very top of the footer */
.hs-footer::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--hs-gold), var(--hs-green-soft) 48%, var(--hs-gold));
}
.hs-footer__inner {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

/* Slim top bar */
.hs-footer__top {
    background: rgba(0, 0, 0, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.hs-footer__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}
.hs-footer__tagline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #cfe3d6;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2px;
}
.hs-footer__tagline i { color: var(--hs-gold); font-size: 15px; }
.hs-footer__toplink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #dcece2;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.hs-footer__toplink:hover { background: var(--hs-green); border-color: var(--hs-green-soft); color: #fff; transform: translateY(-2px); }
.hs-footer__toplink i { font-size: 11px; }

/* Logo (single instance, brand column) */
.hs-footer__logo { max-height: 44px; object-fit: contain; display: block; filter: brightness(0) invert(1); opacity: .95; }
.hs-footer__logo--light { filter: brightness(0) invert(1); opacity: .95; }

/* Main grid */
.hs-footer__main { padding: 34px 0 20px; }
.hs-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
    gap: 26px 40px;
    align-items: start;
}
.hs-footer__col { min-width: 0; align-content: start; }

/* Section headings — consistent gold underline */
.hs-footer__heading {
    position: relative;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
}
.hs-footer__heading::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--hs-gold), rgba(153, 128, 50, .3));
}

/* Brand column */
.hs-footer__brand .hs-footer__logo--light { max-height: 50px; margin-bottom: 14px; }
.hs-footer__title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.hs-footer__about {
    color: #b8d0c2;
    line-height: 2;
    font-size: 13.5px;
    margin-bottom: 16px;
    max-width: 330px;
}
.hs-footer__social { display: flex; gap: 10px; }
.hs-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #e9f3ec;
    font-size: 17px;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.hs-footer__social a:hover { background: var(--hs-gold); border-color: var(--hs-gold); color: #1b1b1b; transform: translateY(-3px); }

/* Link lists */
.hs-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hs-footer__links a {
    color: #c3d8cb;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color .2s ease, transform .2s ease;
}
.hs-footer__links a::before {
    content: "\203A";
    color: var(--hs-gold);
    margin-left: 9px;
    font-weight: 800;
    opacity: .75;
}
.hs-footer__links a:hover { color: #fff; transform: translateX(-4px); }

/* Contact column */
.hs-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 8px;
    direction: ltr;
}
.hs-footer__phone i { color: var(--hs-gold); font-size: 18px; }
.hs-footer__phone:hover { color: var(--hs-gold); }
.hs-footer__worktime { color: #b8d0c2; font-size: 13px; margin-bottom: 16px; line-height: 1.9; }
.hs-footer__worktime i { color: var(--hs-gold); margin-left: 4px; }

/* Newsletter (scoped restyle of the livewire component inside the footer) */
.hs-footer__newsletter {
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}
.hs-footer__newsletter form { flex-direction: column; }
.hs-footer__newsletter form > span {
    color: #eef6f0 !important;
    font-weight: 700;
    font-size: 13.5px;
    display: block;
    margin-bottom: 10px;
}
.hs-footer__newsletter input {
    background: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 10px !important;
    width: 100% !important;
    padding: 10px 12px !important;
    margin: 0 !important;
}
.hs-footer__newsletter input::placeholder { color: #bcd4c5 !important; opacity: 1; }
.hs-footer__newsletter input:focus { border-color: var(--hs-green-soft) !important; box-shadow: 0 0 0 2px rgba(47, 157, 134, .25) !important; }
.hs-footer__newsletter .flex.flex-row { flex-direction: column; gap: 8px; margin-top: 8px !important; }
.hs-footer__newsletter .min-h-\[1\.5rem\] { min-height: 0 !important; margin-top: 6px !important; }
/* Fix 2 — validation / error text made readable (soft light-red) on the dark green band */
.hs-footer #error,
.hs-footer .text-red-600 { color: #ffb4b4 !important; font-size: 12.5px; }
.hs-footer__newsletter button {
    background: var(--hs-gold) !important;
    color: #1b1b1b !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    width: 100% !important;
    padding: 11px 14px !important;
    transition: filter .2s ease, transform .2s ease;
}
.hs-footer__newsletter button:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Trust badges */
.hs-footer__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.hs-footer__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 110px;
}
.hs-footer__badge img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Long description */
.hs-footer__desc {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.hs-footer__desc-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.hs-footer__desc p { color: #a9c2b3; font-size: 12.5px; line-height: 2.1; text-align: justify; }

/* Copyright bar */
.hs-footer__bar { background: rgba(0, 0, 0, .3); border-top: 1px solid rgba(255, 255, 255, .06); }
.hs-footer__barinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    color: #a9c2b3;
    font-size: 12.5px;
    text-align: center;
}
.hs-footer__info-icon { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: .55; }
.hs-footer__webcore { color: #fff; font-weight: 800; text-decoration: none; }
.hs-footer__webcore:hover { color: var(--hs-gold); }

/* Responsive */
@media (max-width: 900px) {
    .hs-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hs-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .hs-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .hs-footer__topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hs-footer__about { max-width: none; }
}

/* ===== Mega menu: "همه‌ی محصولات" highlighted item ===== */
.hs-mega__cat--all { border-bottom: 1px solid var(--hs-line); margin-bottom: 4px; }
.hs-mega__cat--all .hs-mega__cat-link { background: var(--hs-green-tint); font-weight: 800; color: var(--hs-green-dark); border-radius: 10px; }
.hs-mega__cat--all .hs-mega__cat-icon { color: var(--hs-green); }
.hs-mega__cat--all:hover .hs-mega__cat-link,
.hs-mega__cat--all .hs-mega__cat-link:hover { background: var(--hs-green); color: #fff; }
.hs-mega__cat--all:hover .hs-mega__cat-icon { color: #fff; }

/* ===== Product card link-arrow (replaces stock badge, like ref) ===== */
.hs-card__go { display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:var(--hs-green-tint); color:var(--hs-green); font-size:14px; flex-shrink:0; transition:.2s; }
.hs-card:hover .hs-card__go { background:var(--hs-green); color:#fff; }

/* ===== Peyda font (site-wide) ===== */
@font-face { font-family: 'Peyda'; src: url('/fonts/peyda/Peyda-Regular.woff2') format('woff2'); font-weight: 100 900; font-display: swap; }
body, body.font-sans, .hs, .hs-nav, button, input, textarea, select,
h1,h2,h3,h4,h5,h6, p, a, span, li, td, th, label, div {
    font-family: 'Peyda', 'iranyekanFa', 'IRANSans', Tahoma, sans-serif;
}

/* ---------- Sticky site header ---------- */
.hs-sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    transition: box-shadow .25s ease;
}
.hs-sticky-nav.is-stuck {
    box-shadow: 0 6px 20px rgba(20, 40, 30, .08);
}
