:root {
    --primary-color: #519C2B;
    --secondary-color: #042346;
    --text-color: #333333;
    --font-family: "Mona Sans", sans-serif;
    --font-heading: "Mona Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
}

/* ::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
} */

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    /* letter-spacing: .5px; */
    font-weight: 600;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
        font-size: 15px;
    }

}


.section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-padding--sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-padding--lg {
    padding-top: 96px;
    padding-bottom: 96px;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-padding--lg {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}



.section-title {
    margin-bottom: 32px;
}

.section-title__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.section-title__heading {
    font-size: 1.7rem;
    margin-bottom: 0;
}



.section-title--center {
    text-align: center;
}

.section-title--center .section-title__subtext {
    margin-left: auto;
    margin-right: auto;
}

.section-title--left {
    text-align: left;
}



.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid transparent;
    line-height: 1.4;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.btn-custom--primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-custom--primary:hover {
    background-color: #46861f;
    border-color: #46861f;
    color: #fff;
}

.btn-custom--outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: #d7dce2;
}

.btn-custom--outline:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-custom--sm {
    padding: 6px 16px;
    font-size: 0.8125rem;
}

.btn-custom--lg {
    padding: 13px 32px;
    font-size: 1rem;
}


/* ---------- Generic helpers ---------- */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.fw-medium-custom {
    font-weight: 500;
}

.divider-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.5;
    margin: 0 10px;
    vertical-align: middle;
}


.icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.icon-svg svg {
    display: block;
}



/* =========================================================
   HEADER.CSS
   BEM Block: .site-header
   Elements:  .site-header__top, .site-header__middle, .site-header__bottom
   Sub-elements follow __ and modifiers follow --
   ========================================================= */

.site-header {
    font-family: var(--font-family);
    position: relative;
    z-index: 200;
}

/* ---------------------------------------------------------
   TOP BAR
--------------------------------------------------------- */
.site-header__top {
    background-color: white;
    color: #fff;
    font-size: 0.8125rem;
    border-bottom: 1px solid #cdcdcd;
}

.site-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    font-size: 0.78rem;
}

/* left: country selector */
.site-header__country {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    cursor: pointer;
}

.site-header__country-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.site-header__country-text {
    white-space: nowrap;
}

.site-header__country-caret {
    font-size: 0.625rem;
    opacity: 0.8;
}

/* center: announcement text */
.site-header__announcement {
    text-align: center;
    flex: 1;
    color: var(--primary-color);
    font-weight: 500;
}

.site-header__announcement-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

/* right: quick links */
.site-header__quick-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 18px;
}

.site-header__quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    opacity: 0.92;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.site-header__logout-form {
    display: inline;
    margin: 0;
}

button.site-header__quick-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

.site-header__quick-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.site-header__quick-link-icon {
    font-size: 0.875rem;
    line-height: 1;
    color: var(--secondary-color);
}


/* ---------------------------------------------------------
   MIDDLE BAR
--------------------------------------------------------- */
.site-header__middle {
    background-color: #fff;
    border-bottom: 1px solid #eef0f2;
}

.site-header__middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 92px;
}

/* logo */
.site-header__logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.site-header__logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.site-header__logo-tagline {
    font-size: 0.6875rem;
    color: #8a929b;
    margin-top: 2px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* nav */
.site-header__nav {
    flex: 1;
}

.site-header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.site-header__nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9375rem;
    white-space: nowrap;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.site-header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.2s ease;
}

.site-header__nav-link:hover {
    color: var(--primary-color);
}

.site-header__nav-link:hover::after {
    width: 100%;
}

/* actions */
.site-header__actions {
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   BOTTOM BAR
--------------------------------------------------------- */
.site-header__bottom {
    background-color: #F4F8FD;
    padding: 14px 0;
}

.site-header__bottom-inner {
    display: flex;
    align-items: stretch;
    min-height: 48px;
    gap: 0;
    border-radius: 4px;
    overflow: visible;
    box-shadow: 0 1px 2px rgba(4, 35, 70, 0.06);
}

/* explore categories */
.site-header__categories {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--secondary-color);
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    background-color: #fff;
    border-right: 1px solid #e3e7ea;
    border-radius: 4px 0 0 4px;
    transition: background-color 0.2s ease;
    position: relative;
    z-index: 30;
}

.site-header__categories:hover {
    background-color: #f7f8fa;
}

.site-header__categories-caret {
    font-size: 0.625rem;
    opacity: 0.7;
    margin-top: 2px;
}

.site-header__categories-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 300;
    min-width: 240px;
    max-height: 360px;
    overflow-y: auto;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e3e7ea;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(4, 35, 70, 0.12);
}

.site-header__categories.has-dropdown:hover .site-header__categories-menu,
.site-header__categories.has-dropdown:focus-within .site-header__categories-menu,
.site-header__categories.has-dropdown.is-open .site-header__categories-menu {
    display: block;
}

.site-header__categories-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: normal;
}

.site-header__categories-menu a:hover {
    background-color: #f7f8fa;
}

/* search */
.site-header__search-wrap {
    flex: 1;
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 48px;
}

.site-header__search {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    min-height: 48px;
    height: 100%;
    background-color: #fff;
    border-radius: 0 4px 4px 0;
    overflow: hidden;
}

.site-header__search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    flex-shrink: 0;
    color: #9aa1a9;
    font-size: 1.0625rem;
}

.site-header__search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-family);
    font-size: 0.9375rem;
    color: var(--text-color);
    padding: 0 4px;
    min-width: 0;
    min-height: 0;
    height: 100%;
}

.site-header__search-input::placeholder {
    color: #9aa1a9;
}

.site-header__search-camera {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    flex-shrink: 0;
    align-self: stretch;
    color: #9aa1a9;
    font-size: 1.0625rem;
    border: none;
    border-left: 1px solid #eef0f2;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__search-camera:hover,
.site-header__search-camera.is-active {
    color: var(--primary-color);
    background-color: rgba(81, 156, 43, 0.08);
}

/* search button reuses .btn-custom from utilities.css */
.site-header__search-btn {
    border-radius: 0;
    flex-shrink: 0;
    align-self: stretch;
    height: auto;
    min-height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 28px;
    padding-right: 28px;
    border-color: var(--primary-color);
    line-height: 1;
}

/* Image Search panel (header camera) */
.site-header__image-search {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 80;
    background: #fff;
    border: 1px solid #e3e7ea;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 20px 22px 22px;
}

.site-header__image-search.is-open {
    display: block;
}

.site-header__image-search-head {
    position: relative;
    text-align: center;
    margin-bottom: 16px;
    padding-right: 28px;
}

.site-header__image-search-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.site-header__image-search-close {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header__image-search-close:hover {
    color: #0f172a;
    background-color: #f1f5f9;
}

.site-header__image-drop {
    border: 1.5px dashed #cbd5e1;
    border-radius: 10px;
    padding: 28px 18px 24px;
    text-align: center;
    background: #fafbfc;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.site-header__image-drop.is-dragover {
    border-color: var(--primary-color);
    background-color: rgba(81, 156, 43, 0.06);
}

.site-header__image-drop-icon {
    display: inline-flex;
    color: #64748b;
    margin-bottom: 12px;
}

.site-header__image-drop-text {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

.site-header__image-drop-text kbd {
    display: inline-block;
    padding: 1px 6px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
    font-size: 0.75rem;
    font-family: var(--font-family);
    color: #475569;
}

.site-header__image-drop-hint {
    margin: 0 0 16px;
    font-size: 0.85rem;
    color: #64748b;
}

.site-header__image-preview {
    display: none;
    margin: 0 auto 14px;
    max-width: 160px;
    max-height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.site-header__image-preview.is-visible {
    display: block;
}

.site-header__image-preview img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    background: #fff;
}

.site-header__image-search-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-header__image-search-actions .btn-custom {
    min-width: 110px;
    border-radius: 999px;
    padding-left: 22px;
    padding-right: 22px;
}

.site-header__image-search-error {
    display: none;
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: #b91c1c;
}

.site-header__image-search-error.is-visible {
    display: block;
}

.site-header__image-file {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 991.98px) {
    .site-header__top-inner {
        flex-wrap: wrap;
        gap: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-header__announcement {
        order: 3;
        flex-basis: 100%;
        text-align: left;
        font-size: 0.75rem;
    }

    .site-header__quick-links {
        gap: 12px;
    }

    .site-header__quick-link-text {
        display: none;
    }

    .site-header__middle-inner {
        flex-wrap: wrap;
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .site-header__nav {
        order: 3;
        flex-basis: 100%;
    }

    .site-header__nav-list {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 18px 24px;
        padding-top: 12px;
        border-top: 1px solid #eef0f2;
        margin-top: 12px;
    }

    .site-header__bottom-inner {
        flex-wrap: wrap;
    }

    .site-header__categories {
        width: 100%;
        border-bottom: 1px solid #e3e7ea;
        border-radius: 4px 4px 0 0;
        padding: 12px 20px;
    }

    .site-header__search {
        width: 100%;
        border-radius: 0 0 4px 4px;
    }

    .site-header__search-wrap {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .site-header__logo-tagline {
        display: none;
    }

    .site-header__search-btn {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-header__search-btn .site-header__search-btn-text {
        display: none;
    }
}


/* =========================================================
   FOOTER.CSS
   BEM Block: .site-footer
   ========================================================= */

.site-footer {
    background-color: #f4f6f8;
    padding-top: 56px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 40px;
}

/* ---------- column 1: brand ---------- */
.site-footer__brand {
    display: flex;
    flex-direction: column;
}

.site-footer__logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 18px;
    width: 170px;
}

.site-footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.site-footer__logo-tagline {
    font-size: 0.6875rem;
    color: #8a929b;
    margin-top: 4px;
}

.site-footer__info-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__info-link {
    font-size: 0.875rem;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.site-footer__info-link:hover {
    color: var(--primary-color);
}

.site-footer__social {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 32px; */
    /* height: 32px; */
    /* border-radius: 50%; */
    /* background-color: var(--secondary-color); */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* .site-footer__social-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
} */

/* ---------- columns 2-5: link groups ---------- */
.site-footer__heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.site-footer__link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__link {
    font-size: 0.875rem;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.site-footer__link:hover {
    color: var(--primary-color);
}

/* ---------- bottom bar ---------- */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #e3e7ea;
}

.site-footer__copyright {
    font-size: 0.8125rem;
    color: #8a929b;
    margin: 0;
}

.site-footer__payments {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.site-footer__payment-icon {
    height: 22px;
    width: auto;
    display: block;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 991.98px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 36px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 40px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        row-gap: 28px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}


/* =========================================================
   LISTING.CSS
   BEM Blocks: .business-listing, .listing-filters,
   .listing-tabs, .listing-toolbar, .business-card
   ========================================================= */

/* ---------------------------------------------------------
   LAYOUT
--------------------------------------------------------- */
.business-listing__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}


/* ---------------------------------------------------------
   SIDEBAR Ã¢â‚¬â€ listing-filters
--------------------------------------------------------- */
.listing-filters {
    background-color: #fff;
    border: 1px solid #eef0f2;
    border-radius: 6px;
    padding: 20px;
}

.listing-filters__menu {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    border-bottom: 1px solid #eef0f2;
    padding-bottom: 12px;
}

.listing-filters__menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 4px;
    font-size: 0.875rem;
    color: var(--text-color);
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.listing-filters__menu-link:hover {
    color: var(--primary-color);
    background-color: #f7f9f6;
}

.listing-filters__menu-caret {
    color: #b9bfc6;
    flex-shrink: 0;
}

.listing-filters__group {
    padding: 16px 0;
    border-bottom: 1px solid #eef0f2;
}

.listing-filters__group:last-of-type {
    border-bottom: none;
}

.listing-filters__group-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

/* checkbox row */
.listing-filters__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.listing-filters__checkbox-input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.listing-filters__checkbox-label {
    font-size: 0.875rem;
    color: var(--text-color);
    flex: 1;
}

.listing-filters__checkbox-count {
    font-size: 0.75rem;
    color: #8a929b;
    background-color: #f4f6f8;
    border-radius: 10px;
    padding: 2px 8px;
}

/* select dropdowns */
.listing-filters__select {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e3e7ea;
    border-radius: 4px;
    background-color: #fff;
}

.listing-filters__select-icon {
    padding-left: 12px;
    color: #8a929b;
    flex-shrink: 0;
}

.listing-filters__select-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--text-color);
    padding: 10px 12px;
    appearance: none;
    cursor: pointer;
}

.listing-filters__select-input--no-icon {
    padding-left: 12px;
}

/* custom select caret */
.listing-filters__select::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #8a929b;
    border-bottom: 1.5px solid #8a929b;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.listing-filters__apply {
    width: 100%;
    margin-top: 20px;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.listing-filters__apply:hover {
    background-color: #06305c;
    border-color: #06305c;
}


/* ---------------------------------------------------------
   CATEGORY TABS Ã¢â‚¬â€ listing-tabs
--------------------------------------------------------- */
.listing-tabs {
    display: flex;
    align-items: stretch;
    gap: 10px;
    list-style: none;
    padding: 16px;
    margin: 0 0 20px;
    background-color: #fff;
    border: 1px solid #eef0f2;
    border-radius: 6px;
    overflow-x: auto;
}

.listing-tabs__item {
    flex-shrink: 0;
}

.listing-tabs__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 60px;
    height: 52px;
    padding: 0;
    border: 1px solid #e3e7ea;
    border-radius: 6px;
    background-color: #fff;
    color: var(--secondary-color);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.listing-tabs__link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.listing-tabs__link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.listing-tabs__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.listing-tabs__link.active .listing-tabs__icon {
    filter: brightness(100);
}

.listing-tabs__link--more {
    width: auto;
    padding: 0 16px;
    gap: 8px;
    font-size: 0.8125rem;
}

.listing-tabs__more-icon {
    color: inherit;
}


/* ---------------------------------------------------------
   TOOLBAR STRIP Ã¢â‚¬â€ listing-toolbar
--------------------------------------------------------- */
.listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.listing-toolbar__location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-toolbar__location-icon {
    color: var(--primary-color);
}

.listing-toolbar__title {
    font-size: 1.4rem;
    margin-bottom: 0;
    font-weight: 700;
}

.listing-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.listing-toolbar__view {
    display: flex;
    align-items: center;
    gap: 16px;
}

.listing-toolbar__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    color: #8a929b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.listing-toolbar__view-btn:hover {
    color: var(--primary-color);
}

.listing-toolbar__view-btn.active {
    color: var(--primary-color);
}

.listing-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-toolbar__sort-label {
    font-size: 0.875rem;
    color: var(--text-color);
    white-space: nowrap;
}

.listing-toolbar__sort-select {
    border: 1px solid #e3e7ea;
    border-radius: 4px;
    padding: 8px 12px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--secondary-color);
    background-color: #fff;
    cursor: pointer;
}


/* ---------------------------------------------------------
   PRODUCT GRID Ã¢â‚¬â€ business-card
--------------------------------------------------------- */
.business-grid {
    --bs-gutter-x: 24px;
    row-gap: 24px;
}

.business-card {
    background-color: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.business-card:hover {
    box-shadow: 0 10px 24px rgba(4, 35, 70, 0.08);
    transform: translateY(-3px);
}

.business-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: #f4f6f8;
}

.business-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.business-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #F2FEEB;
    color: var(--primary-color);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
}

.business-card__fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s ease, transform 0.2s ease;
}

.business-card__fav:hover {
    color: #e0445b;
    transform: scale(1.08);
}

.business-card__media-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

a.business-card__body {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.business-card__body:hover {
    color: inherit;
}

.business-card__body {
    padding: 16px;
}

.business-card__top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.business-card__title {
    font-size: 1.0625rem;
    margin-bottom: 0;
}

.business-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.business-card__star {
    color: #f5a623;
}

.business-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #6b7178;
    margin-bottom: 6px;
}

.business-card__meta:last-child {
    margin-bottom: 0;
}

.business-card__meta-icon {
    color: #9aa1a9;
    flex-shrink: 0;
}

.business-card__meta--open {
    color: var(--primary-color);
    font-weight: 600;
}

.business-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 991.98px) {
    .business-listing__layout {
        grid-template-columns: 1fr;
    }

    .listing-toolbar__actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 575.98px) {
    .listing-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .listing-toolbar__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* =========================================================
   TRENDING.CSS
   BEM Block: .trending-businesses
   Depends on: .section-title, .business-card (already built)
   ========================================================= */

/* ---------- heading variant: title + "View All" on right ---------- */
.section-title--with-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.section-title--with-action .section-title__heading {
    margin-bottom: 0;
}

.section-title__action {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.section-title__action:hover {
    color: var(--primary-color);
}


/* ---------- badge color variant ---------- */
/* .business-card__badge--open {
    background-color: var(--primary-color);
} */


/* ---------- swiper wrapper ---------- */
.trending-businesses {
    position: relative;
    background: #F4F8FD;
}

.trending-businesses__swiper {
    overflow: visible;
}

.trending-businesses__swiper .swiper-slide {
    height: auto;
}

.trending-businesses__swiper .business-card {
    height: 100%;
}

/* simple next-arrow button, positioned like the peeking arrow in reference */
.trending-businesses__nav {
    position: absolute;
    top: calc(50% - 10px);
    right: 45px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(4, 35, 70, 0.12);
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.trending-businesses__nav:hover {
    background-color: var(--primary-color);
    color: #fff;
}


/* =========================================================
   PROMO-BANNERS.CSS
   BEM Block: .promo-banners
   ========================================================= */

.promo-banners__row {
    --bs-gutter-x: 24px;
    row-gap: 24px;
}

.promo-banners__item {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-banners__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(4, 35, 70, 0.1);
}

.promo-banners__img {
    width: 100%;
    height: auto;
    /* aspect-ratio: 1200 / 250; */
    object-fit: cover;
    display: block;
}


/* =========================================================
   STORES.CSS
   BEM Block: .store-card
   Depends on: .section-title (existing), .btn-custom (existing)
   ========================================================= */

.discover-stores__row {
    --bs-gutter-x: 24px;
    row-gap: 24px;
}

/* ---------------------------------------------------------
   CARD SHELL
--------------------------------------------------------- */
.store-card {
    display: flex;
    gap: 20px;
    background-color: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 16px;
    height: 100%;
    transition: box-shadow 0.25s ease;
}

.store-card:hover {
    box-shadow: 0 10px 24px rgba(4, 35, 70, 0.08);
}

/* ---------------------------------------------------------
   MEDIA COLUMN (left)
--------------------------------------------------------- */
.store-card__media {
    position: relative;
    flex: 0 0 220px;
    width: 220px;
}

.store-card__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 6;
    transition: color 0.2s ease, transform 0.2s ease;
}

.store-card__fav:hover {
    color: #e0445b;
    transform: scale(1.08);
}

.store-card__swiper {
    border-radius: 6px;
    overflow: hidden;
    background-color: #f4f6f8;
}

.store-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.store-card__swiper-pagination {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Swiper bullet styling (scoped, no global swiper override) */
.store-card__swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.6;
    width: 6px;
    height: 6px;
    margin: 0 3px;
}

.store-card__swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
    width: 16px;
    border-radius: 3px;
}

/* thumbnail row — always 3 equal slots so 1–2 products stay small thumbs */
.store-card__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.store-card__thumb {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: 1px solid #eef0f2;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.store-card__thumb:hover {
    border-color: var(--primary-color);
}

.store-card__thumb-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background-color: #f4f6f8;
}

.store-card__thumb-price {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 4px 2px;
    line-height: 1.2;
    min-height: 1.5em;
}

/* ---------------------------------------------------------
   BODY COLUMN (right)
--------------------------------------------------------- */
.store-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.store-card__title {
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.store-card__category {
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.store-card__info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eef0f2;
}

.store-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.store-card__location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: #6b7178;
}

.store-card__capabilities {
    margin-bottom: 16px;
    flex: 1;
}

.store-card__capabilities-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.store-card__capabilities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.store-card__capabilities-list li {
    font-size: 0.8125rem;
    color: var(--text-color);
    padding-left: 14px;
    position: relative;
}

.store-card__capabilities-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.store-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-card__actions .btn-custom {
    flex: 1;
    width: auto;
}


/* ---------------------------------------------------------
   BUTTON MODIFIER (secondary/navy outline-fill, used for "Read More")
   Add to utilities.css if you want it reusable site-wide.
--------------------------------------------------------- */
.btn-custom--secondary {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.btn-custom--secondary:hover {
    background-color: #06305c;
    border-color: #06305c;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 767.98px) {
    .store-card {
        flex-direction: column;
    }

    .store-card__media {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 575.98px) {
    .store-card__actions {
        flex-direction: column;
    }
}


.cartup-banner {
    font-family: var(--font-family);
}

.business-banner {
    background: #EAF4E2;
    border-radius: 20px;
    padding: 50px 60px;
    overflow: hidden;
    position: relative;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 28px;
    max-width: 520px;
}

.banner-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background: #0b3769;
    transform: translateY(-2px);
    color: white;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

/* ================================================ */


/* .inner-banner {
    background: #f7f8fa;
    border-bottom: 1px solid #e6edf3;
}

.inner-banner__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.breadcrumb-custom {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb-custom a {
    color: var(--primary-color);
    text-decoration: none;
} */

.about-image-box img {
    border-radius: 20px;
}

.about-stats-section,
.why-section,
.trust-section {
    background: #f8fafc;
}

.stats-card,
.info-card,
.feature-card,
.step-card,
.trust-box {
    background: #fff;
    border: 1px solid #e7edf3;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: 0.3s;
}

.stats-card:hover,
.feature-card:hover,
.info-card:hover,
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stats-card h3 {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 700;
}

.stats-card p {
    margin: 0;
}

.info-card__icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h4,
.step-card h4,
.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step-card span {
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: rgba(81, 156, 43, 0.18);
    margin-bottom: 16px;
}

.trust-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-box li {
    padding: 14px 0;
    border-bottom: 1px solid #edf1f5;
    font-weight: 500;
}

.business-banner {
    background: #EAF4E2;
    padding: 50px;
    border-radius: 20px;
}

.business-banner h2 {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 700;
}

.business-banner p {
    margin: 18px 0 24px;
}



.error-box {
    background: #fff;
    border: 1px solid #e7edf3;
    border-radius: 20px;
    padding: 70px 40px;
    max-width: 900px;
    margin: auto;
}

.error-code {
    font-size: 130px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.error-box h3 {
    font-size: 34px;
    margin: 20px 0;
}

.error-box p {
    max-width: 550px;
    margin: auto;
    color: #666;
}

.error-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-links {
    margin-top: 30px;
}

.popular-links a {
    margin: 0 8px;
    color: var(--primary-color);
}




.thankyou-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e7edf3;
    padding: 70px 50px;
    max-width: 850px;
    margin: auto;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: #eaf4e2;
    color: var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 42px;
    font-weight: 700;
    margin: auto auto 25px;
}

.thankyou-card h2 {
    font-size: 42px;
    color: var(--secondary-color);
}

.thankyou-card p {
    max-width: 560px;
    margin: 20px auto;
    color: #666;
}

.reference-box {
    display: inline-block;
    margin-top: 10px;
    background: #f7f8fa;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.thankyou-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


.policy-sidebar {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid #e7edf3;
    border-radius: 16px;
    padding: 24px;
}

.policy-sidebar a {
    display: block;
    padding: 12px 0;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #edf1f5;
}

.policy-sidebar a:hover {
    color: var(--primary-color);
}

.policy-content {
    background: white;
    border: 1px solid #e7edf3;
    border-radius: 16px;
    padding: 40px;
}

.policy-content h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    margin-top: 30px;
}

.policy-content p,
.policy-content li {
    color: #666;
    line-height: 1.8;
}

.card-ui {
    background: #fff;
    border: 1px solid #e7edf3;
    border-radius: 16px;
}



/* ========================= career page ============================= */

/* .inner-banner {
    background: #f7f8fa;
    border-bottom: 1px solid #e7edf3;
}

.inner-banner__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.breadcrumb-custom {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-custom a {
    text-decoration: none;
    color: var(--primary-color);
} */

.career-features,
.hiring-process {
    background: #f8fafc;
}

.career-hero__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(4, 35, 70, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-hero__image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(4, 35, 70, 0.15);
}

.career-hero__image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    display: block;
}

.career-card,
.perk-card,
.process-card,
.job-card,
.career-cta {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
}

.career-card,
.perk-card,
.process-card {
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-card:hover,
.process-card:hover,
.perk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(4, 35, 70, 0.07);
    border-color: rgba(81, 156, 43, 0.25);
}

.career-card h4,
.process-card h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.career-card__icon,
.perk-card__icon,
.process-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.career-card__icon img,
.perk-card__icon img,
.process-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Smooth rotational bounce on hover for icons */
.career-card:hover .career-card__icon,
.perk-card:hover .perk-card__icon,
.process-card:hover .process-card__icon {
    transform: scale(1.1) rotate(6deg);
}

.perk-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
}

.perk-card__title {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--secondary-color);
    margin-top: 10px;
}

.process-card {
    position: relative;
}

.process-card__step {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.625rem;
    font-weight: 800;
    color: rgba(81, 156, 43, 0.18);
    user-select: none;
}

.job-card {
    padding: 30px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(4, 35, 70, 0.08);
    border-color: rgba(81, 156, 43, 0.3);
}

.job-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.job-card__logo-placeholder {
    width: 52px;
    height: 52px;
    background-color: rgba(81, 156, 43, 0.07);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.job-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.job-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    background-color: #f1f5f9;
    color: #475569;
}

.job-tag--primary {
    background-color: #F2FEEB;
    color: var(--primary-color);
}

.job-tag--warning {
    background-color: #fffbeb;
    color: #b45309;
}

.job-tag--info {
    background-color: #f0f9ff;
    color: #0369a1;
}

.job-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.career-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.career-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(81, 156, 43, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.career-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.career-cta p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.career-cta h2 {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 700;
}

.career-cta p {
    margin: 18px auto 28px;
    max-width: 600px;
}



/* ================= shop detail css ============================= */

.inner-banner {
    background: #f7f8fa;
    border-bottom: 1px solid #e7edf3;
}

.inner-banner__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.breadcrumb-custom {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-custom a {
    color: var(--primary-color);
    text-decoration: none;
}

.productMainSlider,
.productThumbSlider,
.product-tabs {
    border: 1px solid #eef0f2;
    border-radius: 12px;
    background: #fff;
}

.productMainSlider {
    padding: 0;
    overflow: hidden;
}

.productMainSlider .swiper-slide {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
}

.productMainSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.productMainSlider .swiper-slide:hover img {
    transform: scale(1.05);
}

.productThumbSlider {
    padding: 8px;
}

.productThumbSlider .swiper-slide {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.25s ease;
    aspect-ratio: 1 / 1;
    background-color: #f8fafc;
}

.productThumbSlider .swiper-slide-thumb-active {
    border-color: var(--primary-color);
    opacity: 1;
}

.productThumbSlider .swiper-slide:hover {
    opacity: 0.95;
}

.productThumbSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 0;
}

.stock-badge {
    background: #eaf4e2;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
}

.product-info h2 {
    margin-top: 16px;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-rating {
    margin: 12px 0 20px;
    color: #f5a623;
    font-size: 0.9375rem;
}

.product-rating span {
    color: #64748b;
    margin-left: 6px;
}

/* Pricing Tier Layout (Alibaba style) */
.price-tier-wrap {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #eef0f2;
}

.price-tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eef0f2;
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 0.8125rem;
}

.price-tier-title {
    color: #64748b;
    font-weight: 600;
}

.price-tier-guarantee {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-tier-row {
    display: flex;
    gap: 16px;
}

.price-tier-col {
    flex: 1;
    border-right: 1px solid #eef0f2;
    padding-right: 12px;
}

.price-tier-col:last-child {
    border-right: none;
    padding-right: 0;
}

.price-tier-price {
    display: block;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.price-tier-moq {
    font-size: 0.75rem;
    color: #64748b;
}

.short-desc {
    color: #475569;
    line-height: 1.8;
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.product-meta {
    padding: 16px 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #eef0f2;
    border-bottom: 1px solid #eef0f2;
}

.product-meta li {
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: #64748b;
}

.product-meta li:last-child {
    margin-bottom: 0;
}

.product-meta li strong {
    color: var(--secondary-color);
    width: 90px;
    display: inline-block;
}

.product-meta li span {
    color: #334155;
}

.qty-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 24px 0;
}

.qty-wrap label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.qty-box {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    align-items: center;
}

.qty-box button {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8fafc;
    color: #042346;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.qty-box button:hover {
    background: #e2e8f0;
}

.qty-box input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    font-weight: 600;
    color: #042346;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.wishlist-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wishlist-btn:hover {
    color: #ff3d3d;
    border-color: #ff3d3d;
    transform: scale(1.05);
}

.delivery-box {
    margin-top: 24px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef0f2;
}

.delivery-box p {
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #475569;
}

.delivery-box p:last-child {
    margin-bottom: 0;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin-top: 10px;
}

.specs-table th {
    width: 30%;
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    padding: 12px 16px;
    border: 1px solid #eef0f2;
    text-align: left;
}

.specs-table td {
    padding: 12px 16px;
    border: 1px solid #eef0f2;
    color: #042346;
}

/* Reviews Summary Page */
.reviews-summary-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eef0f2;
}

@media (max-width: 768px) {
    .reviews-summary-row {
        flex-direction: column;
        gap: 20px;
    }
}

.review-score-box {
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-average {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.review-stars {
    color: #f5a623;
    font-size: 1.25rem;
    margin: 8px 0;
}

.review-total-count {
    font-size: 0.75rem;
    color: #64748b;
}

.review-progress-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.review-progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    color: #64748b;
}

.review-progress-item span {
    width: 60px;
}

.review-progress-item span:last-child {
    width: 40px;
    text-align: right;
}

.review-bar-container {
    flex: 1;
    height: 8px;
    background: #eef0f2;
    border-radius: 4px;
    overflow: hidden;
}

.review-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    border-bottom: 1px solid #eef0f2;
    padding-bottom: 16px;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-user {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.verified-purchase {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
}

.review-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 6px;
}

.review-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.product-tabs {
    padding: 30px;
}

.nav-tabs {
    border: none;
    margin-bottom: 25px;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.related-card {
    padding: 20px;
    transition: .3s;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.related-card img {
    border-radius: 12px;
    margin-bottom: 15px;
}

.related-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.mission-card img {
    width: 70px;
    height: auto;
}

/* =========================================================
   INNER PAGES STYLES - STORES & PRODUCTS COLLECTIONS
   ========================================================= */

/* Store Specific Listing Cover */
.store-banner-wrapper {
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 100px rgba(4, 35, 70, 0.85);
}

.store-logo-box {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.store-logo-box:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Store Navigation Tabs */
.store-nav-tabs .nav-link {
    position: relative;
}

.store-nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.25s ease;
}

.store-nav-tabs .nav-link.active::after,
.store-nav-tabs .nav-link:hover::after {
    width: 100%;
}

/* Expandable Category Tree Sidebar styles */
.category-parent {
    font-weight: 600;
    color: #042346;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.category-parent .category-caret {
    font-size: 0.625rem;
    transition: transform 0.25s ease;
    color: #b9bfc6;
    display: inline-flex;
    align-items: center;
    transform: rotate(-90deg);
}

.category-parent.active .category-caret {
    transform: rotate(0deg);
}

.subcategory-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 16px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8125rem;
    color: #64748b;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
}

.subcategory-list.open {
    max-height: 250px;
    opacity: 1;
    margin-top: 6px;
    margin-bottom: 10px;
}

.listing-filters__menu li ul li a {
    position: relative;
    padding-left: 12px;
    transition: color 0.2s ease;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.listing-filters__menu li ul li a::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.listing-filters__menu li ul li a:hover {
    color: var(--primary-color) !important;
}

.listing-filters__menu li ul li a:hover::before {
    color: var(--primary-color);
}

/* Card title link colors to match home page exactly */
.business-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.business-card__title a:hover {
    color: var(--primary-color);
}

/* Pagination transitions */
.pagination a {
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* Career Modal Form Custom Focus Styles */
.review-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 6px;
}

.review-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.product-tabs {
    padding: 30px;
}

.nav-tabs {
    border: none;
    margin-bottom: 25px;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.related-card {
    padding: 20px;
    transition: .3s;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.related-card img {
    border-radius: 12px;
    margin-bottom: 15px;
}

.related-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.mission-card img {
    width: 70px;
    height: auto;
}

/* =========================================================
   INNER PAGES STYLES - STORES & PRODUCTS COLLECTIONS
   ========================================================= */

/* Store Specific Listing Cover */
.store-banner-wrapper {
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 100px rgba(4, 35, 70, 0.85);
}

.store-logo-box {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.store-logo-box:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Store Navigation Tabs */
.store-nav-tabs .nav-link {
    position: relative;
}

.store-nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.25s ease;
}

.store-nav-tabs .nav-link.active::after,
.store-nav-tabs .nav-link:hover::after {
    width: 100%;
}

/* Expandable Category Tree Sidebar styles */
.category-parent {
    font-weight: 600;
    color: #042346;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.category-parent .category-caret {
    font-size: 0.625rem;
    transition: transform 0.25s ease;
    color: #b9bfc6;
    display: inline-flex;
    align-items: center;
    transform: rotate(-90deg);
}

.category-parent.active .category-caret {
    transform: rotate(0deg);
}

.subcategory-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 16px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8125rem;
    color: #64748b;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
}

.subcategory-list.open {
    max-height: 250px;
    opacity: 1;
    margin-top: 6px;
    margin-bottom: 10px;
}

.listing-filters__menu li ul li a {
    position: relative;
    padding-left: 12px;
    transition: color 0.2s ease;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.listing-filters__menu li ul li a::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.listing-filters__menu li ul li a:hover {
    color: var(--primary-color) !important;
}

.listing-filters__menu li ul li a:hover::before {
    color: var(--primary-color);
}

/* Card title link colors to match home page exactly */
.business-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.business-card__title a:hover {
    color: var(--primary-color);
}

/* Pagination transitions */
.pagination a {
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* Career Modal Form Custom Focus Styles */
.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(81, 156, 43, 0.15) !important;
}

.resume-upload-wrapper:hover {
    border-color: var(--primary-color) !important;
    background-color: #F9FDF7 !important;
}

/* About Page Styling */
.about-stats-section {
    background-color: #f8fafc;
}

.stats-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(4, 35, 70, 0.05);
    border-color: rgba(81, 156, 43, 0.2);
}

.stats-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stats-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

/* Info Cards (Mission / Vision) */
.info-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(4, 35, 70, 0.06);
    border-color: rgba(81, 156, 43, 0.2);
}

.info-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.info-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.info-card:hover .info-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Feature Cards */
.why-section {
    background-color: #f8fafc;
}

.feature-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(4, 35, 70, 0.05);
    border-color: rgba(81, 156, 43, 0.25);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: #64748b;
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
}

/* Step Cards */
.step-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(4, 35, 70, 0.05);
    border-color: rgba(81, 156, 43, 0.2);
}

.step-card span {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.625rem;
    font-weight: 800;
    color: rgba(81, 156, 43, 0.18);
    user-select: none;
}

.step-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.step-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.step-card:hover .step-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Trust Section Customization */
.trust-section {
    background-color: #f8fafc;
}

.trust-box {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-item__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #F2FEEB;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-item__content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.trust-item__content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Business Banner / CTA */
.business-banner {
    padding: 60px 50px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 24px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.business-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(81, 156, 43, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.business-banner h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.business-banner p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(4, 35, 70, 0.08);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-box:hover img {
    transform: scale(1.03);
}

/* Account Dashboard Layout */
.dashboard-wrapper {
    background-color: #f8fafc;
}

.dashboard-sidebar {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.dashboard-user-card {
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.dashboard-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(81, 156, 43, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    border: 3px solid #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #707070;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dashboard-menu-link.active,
.dashboard-menu-link:hover {
    background-color: #F2FEEB;
    color: var(--primary-color) !important;
}

.dashboard-panel {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.dashboard-panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 16px;
}

.order-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
}

.order-table td {
    padding: 16px;
    font-size: 0.925rem;
    color: #475569;
    vertical-align: middle;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 30px;
}

.status-badge--success {
    background-color: #dcfce7;
    color: #15803d;
}

.status-badge--warning {
    background-color: #fef3c7;
    color: #b45309;
}

.status-badge--info {
    background-color: #e0f2fe;
    color: #0369a1;
}

/* ==========================================================================
   CART & CHECKOUT PROGRESS STEPS
   ========================================================================== */
.checkout-steps-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.checkout-step.active {
    opacity: 1;
}

.checkout-step.completed {
    opacity: 0.85;
}

.checkout-step .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkout-step.active .step-num {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(81, 156, 43, 0.15);
}

.checkout-step.completed .step-num {
    background-color: #F2FEEB;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkout-step .step-label {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--secondary-color);
}

.checkout-step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #cbd5e1;
    opacity: 0.4;
}

.checkout-step-line.active {
    background-color: var(--primary-color);
    opacity: 1;
}

@media (max-width: 576px) {
    .checkout-step-line {
        display: none;
    }

    .checkout-steps-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        max-width: fit-content;
    }
}

/* ==========================================================================
   SHOPPING CART PAGE DETAILS
   ========================================================================== */
.cart-table-wrap {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.cart-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
}

.cart-table td {
    padding: 24px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.cart-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-product-title {
    font-size: 1rem;
    font-weight: 750;
    margin-bottom: 4px;
}

.cart-product-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-product-title a:hover {
    color: var(--primary-color);
}

.cart-product-merchant {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 2px;
}

.cart-product-merchant a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cart-product-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    display: block;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease;
}

.qty-box:hover {
    border-color: #94a3b8;
}

.qty-btn {
    border: none;
    background: none;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.qty-btn:hover {
    background-color: #f1f5f9;
    color: var(--secondary-color);
}

.qty-input {
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    width: 44px;
    height: 36px;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: none;
}

.qty-input:focus {
    outline: none;
}

.cart-remove-btn {
    border: none;
    background: none;
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-remove-btn:hover {
    background-color: #fee2e2;
    color: #ef4444;
    transform: scale(1.08);
}

/* ==========================================================================
   CART & CHECKOUT SUMMARY DETAILS
   ========================================================================== */
.cart-summary-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.summary-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.summary-calc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-calc-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    color: #475569;
}

.summary-calc-list .calc-label {
    color: #64748b;
}

.summary-calc-list .calc-value {
    font-weight: 700;
    color: var(--secondary-color);
}

.summary-total-row {
    border-top: 1px solid #eef2f6;
    padding-top: 18px;
    margin-top: 6px;
}

.summary-total-row .calc-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color) !important;
}

.summary-total-row .calc-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
}

.coupon-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(81, 156, 43, 0.1);
}

.trust-indicators-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #eef2f6;
    padding-top: 20px;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: #475569;
}

.trust-icon {
    font-weight: 700;
    font-size: 0.95rem;
}

/* ==========================================================================
   CHECKOUT PAGE DETAILS
   ========================================================================== */
.checkout-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.checkout-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 14px;
}

.checkout-card .form-control:focus,
.checkout-card .form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(81, 156, 43, 0.1) !important;
}

.shipping-option-card {
    display: block;
    cursor: pointer;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.25s ease;
    background: #fff;
    position: relative;
}

.shipping-option-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.shipping-option-card.active {
    border-color: var(--primary-color);
    background-color: #F2FEEB;
}

.shipping-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Payment tabs */
.payment-tabs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-tab-btn {
    border: 2px solid #eef2f6;
    background-color: #fff;
    border-radius: 12px;
    padding: 14px 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.payment-tab-btn:hover {
    border-color: #cbd5e1;
    color: var(--secondary-color);
}

.payment-tab-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #F2FEEB;
}

.payment-icon {
    font-size: 1.25rem;
}

.payment-method-panel {
    display: none;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 24px;
    background-color: #f8fafc;
    margin-top: 16px;
}

.payment-method-panel.active {
    display: block;
}

/* Checkout Summary List Items */
.checkout-product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-product-thumb {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.checkout-product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.checkout-product-thumb .thumb-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #64748b;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-product-info {
    flex-grow: 1;
}

.checkout-prod-name {
    font-size: 0.875rem;
    font-weight: 750;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.checkout-prod-merchant {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
}

.checkout-product-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* ==========================================================================
   SIMULATED CHECKOUT LOADER SCREEN
   ========================================================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 35, 70, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.spinner-container {
    max-width: 320px;
}

.premium-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(81, 156, 43, 0.15);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   WISHLIST PAGE COMPONENTS
   ========================================================================== */
.wishlist-tabs-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    border-bottom: 2px solid #eef2f6;
    padding-bottom: 2px;
}

.wishlist-tab-btn {
    border: none;
    background: none;
    font-size: 1.05rem;
    font-weight: 750;
    color: #64748b;
    padding: 12px 24px;
    position: relative;
    transition: color 0.2s ease;
}

.wishlist-tab-btn:hover {
    color: var(--secondary-color);
}

.wishlist-tab-btn.active {
    color: var(--primary-color);
}

.wishlist-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.wishlist-panel {
    display: none;
}

.wishlist-panel.active {
    display: block;
}

.site-header__wishlist-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    border-radius: 999px;
    background: var(--primary-color, #519C2B);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    vertical-align: middle;
}

.site-header__wishlist-count[hidden] {
    display: none !important;
}

.wishlist-btn.liked {
    background-color: #F2FEEB !important;
}

/* Wishlist custom heart visual active liked state */
.business-card__fav.liked {
    background-color: #F2FEEB !important;
}

.store-card__fav.liked {
    background-color: #F2FEEB !important;
}

/* Wishlist floating toast notification styles */
.wishlist-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    padding: 16px 28px;
    box-shadow: 0 15px 35px rgba(81, 156, 43, 0.25);
}

.toast-content-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9375rem;
}

.toast-check {
    font-size: 1.15rem;
}

/* ==========================================================================
   BLOG Hero & Grid Styles
   ========================================================================== */
.blog-featured-wrap {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.blog-featured-img {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-body {
    padding: 40px;
}

.blog-category-badge {
    background-color: #F2FEEB;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.blog-featured-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 12px;
    margin-bottom: 16px;
}

.blog-featured-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-featured-title a:hover {
    color: var(--primary-color);
}

.blog-featured-excerpt {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.blog-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
}

.author-info-mini {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.post-meta {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(4, 35, 70, 0.06);
    border-color: rgba(81, 156, 43, 0.15);
}

.blog-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img-wrap .blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.blog-card-author {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.blog-readmore-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-readmore-link {
    transform: translateX(3px);
}

/* Pagination */
.pagination-custom .page-link {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.2s ease;
    background: #fff;
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagination-custom .page-link:hover:not(.active) {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: var(--primary-color) !important;
}

/* ==========================================================================
   BLOG SIDEBAR
   ========================================================================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.search-widget-box {
    position: relative;
}

.search-widget-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.sidebar-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.sidebar-categories-list a:hover {
    color: var(--primary-color);
}

.badge-count {
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.sidebar-categories-list a:hover .badge-count {
    background-color: #F2FEEB;
    color: var(--primary-color);
}

.popular-articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-article-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.popular-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-title {
    font-size: 0.875rem;
    font-weight: 750;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.popular-article-item:hover .popular-title {
    color: var(--primary-color);
}

.popular-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.widget-newsletter-box {
    background-color: #F2FEEB !important;
    border-color: rgba(81, 156, 43, 0.15) !important;
}

/* ==========================================================================
   BLOG DETAILS PAGE
   ========================================================================== */
.blog-detail-category-eyebrow {
    background-color: #F2FEEB;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.blog-detail-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

.meta-separator {
    color: #cbd5e1;
}

.blog-detail-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin: 30px 0;
    font-weight: 600;
    line-height: 1.6;
}

.key-takeaways-box {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    border-radius: 0 12px 12px 0;
}

.takeaway-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.takeaway-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.takeaway-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
}

.takeaway-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.article-share-row {
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.share-social-icons {
    display: flex;
    gap: 8px;
}

.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.share-icon-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Author spotlight card */
.author-spotlight-card {
    background-color: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 20px;
}

.author-avatar-big {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.author-spotlight-details {
    flex-grow: 1;
}

.author-spotlight-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.author-spotlight-title {
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.author-spotlight-text {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Comments timeline */
.comments-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.comment-body {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.comment-author-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.comment-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.comment-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.add-comment-form-wrap {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}




/* Auth Section background */
.auth-section {
    background-color: #f8fafc;
}

/* Auth Card Layout */
.auth-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(4, 35, 70, 0.08);
}

.auth-banner {
    background: linear-gradient(135deg, #042346 0%, #0a3d75 100%);
    color: #fff;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.auth-banner-accent {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(81, 156, 43, 0.15) 0%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

.auth-banner-title {
    font-weight: 800;
    font-size: 1.95rem;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.3;
}

.auth-banner-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.auth-banner-quote {
    border: none;
    padding: 0;
    margin: 0;
    font-style: italic;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.auth-banner-cite {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    font-style: normal;
}

.auth-form-wrap {
    padding: 48px 40px;
}

@media (max-width: 767.98px) {
    .auth-banner {
        padding: 32px 24px;
    }

    .auth-form-wrap {
        padding: 32px 20px;
    }
}

/* Custom form control to match layout and design system */
.form-control-custom {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cbd5e1;
    appearance: none;
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-custom:focus {
    color: var(--text-color);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(81, 156, 43, 0.15);
}

.auth-password-field {
    position: relative;
}

.auth-password-field .form-control-custom {
    padding-right: 44px;
}

.auth-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 4px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-password-toggle:hover {
    color: var(--primary-color);
}

.auth-password-toggle svg {
    width: 20px;
    height: 20px;
}

.auth-password-toggle .icon-eye-off {
    display: none;
}

.auth-password-toggle.is-visible .icon-eye {
    display: none;
}

.auth-password-toggle.is-visible .icon-eye-off {
    display: block;
}

.form-label-custom {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-bottom: 8px;
    display: block;
}

/* Social Buttons */
.auth-social-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
    margin-bottom: 24px;
}

.auth-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    width: 33.3%;
    padding: 12px 16px;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: #fff;
    color: var(--secondary-color);
    transition: all 0.2s ease;
    cursor: pointer;
}

.auth-social-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.auth-social-btn--apple {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.auth-social-btn--apple:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.auth-social-btn--facebook {
    background-color: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.auth-social-btn--facebook:hover {
    background-color: #166fe5;
    border-color: #166fe5;
    color: #fff;
}

.auth-social-icon img {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

/* OR Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #94a3b8;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider:not(:empty)::before {
    margin-right: 16px;
}

.auth-divider:not(:empty)::after {
    margin-left: 16px;
}

/* Choice Cards (Step 0) */
.auth-choice-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .auth-choice-cards {
        flex-direction: row;
    }
}

.auth-choice-card {
    flex: 1;
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.auth-choice-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 20px rgba(4, 35, 70, 0.04);
    transform: translateY(-2px);
}

.auth-choice-card-input {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.auth-choice-card-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    transition: all 0.2s ease;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-choice-card-title {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.auth-choice-card-desc {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.4;
}

/* Active Choice Card style */
.auth-choice-card.active {
    border-color: var(--primary-color);
    background-color: rgba(81, 156, 43, 0.03);
}

.auth-choice-card.active .auth-choice-card-icon {
    background-color: var(--primary-color);
    color: #fff;
}

/* Option Cards (Step 4 & Supplier Step 3) */
.auth-option-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .auth-option-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.auth-option-card {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-option-card:hover {
    border-color: var(--primary-color);
    background-color: #f8fafc;
}

.auth-option-card.active {
    border-color: var(--primary-color);
    background-color: rgba(81, 156, 43, 0.05);
}

.auth-option-card-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.auth-option-card-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary-color);
    user-select: none;
}

/* OTP Inputs */
.auth-otp-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.auth-otp-field {
    width: 52px;
    height: 52px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: var(--secondary-color);
    transition: all 0.15s ease;
}

.auth-otp-field:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(81, 156, 43, 0.15);
}

/* Step Progress Indicator */
.step-indicator-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
    padding: 0 10px;
}

.step-indicator-line {
    position: absolute;
    top: 14px;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: #e2e8f0;
    z-index: 1;
}

.step-indicator-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.step-indicator-node {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border: 3px solid #e2e8f0;
    color: #94a3b8;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
}

.step-indicator-node.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-size: 0.9rem;
    transform: scale(1.1);
}

.step-indicator-node.completed {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Password Helper criteria items */
.password-criteria {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.password-criteria-item {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 12px;
    position: relative;
}

.password-criteria-item::before {
    position: absolute;
    content: "";
    background: #cbd5e1;
    font-weight: bold;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    left: 0;
    top: 7px;
}




/* ---------------------------------------------------------
   HELP CENTER STYLES
   --------------------------------------------------------- */
.help-search-container {
    max-width: 600px;
    margin: 24px auto 0;
    position: relative;
}

.help-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: #042346;
}

.help-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(81, 156, 43, 0.15);
}

.help-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.help-accordion-item {
    border: 1px solid #cbd5e1;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.help-accordion-button {
    font-weight: 700;
    color: #042346;
    padding: 18px 24px;
    font-size: 0.95rem;
    border: none;
    background: #fff;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--primary-color);
}

.help-accordion-button::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1;
    transition: transform 0.2s ease;
}

.help-accordion-button:not(.collapsed)::after {
    content: "−";
    color: var(--primary-color);
}

.help-accordion-body {
    padding: 20px 24px;
    font-size: 0.925rem;
    color: #475569;
    border-top: 1px solid #cbd5e1;
    background-color: #fff;
    line-height: 1.65;
}

.help-support-card {
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    background-color: #fff;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.help-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.help-support-icon {
    width: 56px;
    height: 56px;
    background-color: #f1f5f9;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.2s ease;
}

.help-support-card:hover .help-support-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.help-support-title {
    font-weight: 700;
    color: #042346;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.help-support-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.help-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.help-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    text-decoration: none;
    color: #042346;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.help-link-card:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #fcfdfe;
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   POLICY PAGES TYPOGRAPHY & LAYOUTS
   --------------------------------------------------------- */
.policy-container {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #475569;
}

.policy-header-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 24px;
    font-weight: 600;
}

.policy-container h2 {
    font-size: 1.45rem;
    color: #042346;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-container h3 {
    font-size: 1.15rem;
    color: #042346;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-container p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.policy-container ul,
.policy-container ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.policy-container li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.policy-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.policy-container a:hover {
    color: #3f7b20;
    text-decoration: underline;
}

.policy-notice {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 18px 24px;
    border-radius: 8px;
    margin: 28px 0;
    font-style: italic;
    color: #334155;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.policy-table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 28px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 500px;
}

.policy-table th,
.policy-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.policy-table th {
    background-color: #f1f5f9;
    font-weight: 700;
    color: #042346;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 40px 0;
    border: none;
}

/* =========================================================
   BUYER / SELLER ACCOUNT DASHBOARD (from static UI)
   ========================================================= */
/* 4. Sidebar Elements */
.dashboard-user-card__name {
    font-weight: 700;
    color: #042346;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.dashboard-user-card__email {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
}

.dashboard-user-card__badge {
    background-color: #519C2B;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 5px 12px;
}

.dashboard-menu-link--logout {
    margin-top: 15px;
    border-top: 1px solid #e2e8f0;
    border-radius: 0;
    padding-top: 15px;
    color: #ef4444 !important;
}

.dashboard-menu-link--logout .icon-svg {
    color: #ef4444;
}

/* 5. Address Cards */
.address-card {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    position: relative;
    transition: .3s;
}

.address-card--default {
    border-color: var(--primary-color);
    background-color: #fcfdfe;
}

.address-card__title {
    font-weight: 700;
    color: #042346;
    margin-bottom: 4px;
    font-size: 1rem;
}

.address-card__badge {
    background-color: var(--primary-color);
    font-weight: 600;
    font-size: 0.7rem;
    padding: 4px 8px;
}

.address-card__icon {
    color: #64748b;
}

.address-card--default .address-card__icon {
    color: var(--primary-color);
}

.address-card__text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.address-card__actions {
    border-color: #e2e8f0 !important;
}

.address-card__action-btn {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.address-card__action-btn--delete {
    color: #ef4444;
}

.address-card--add-new {
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    cursor: pointer;
    min-height: 220px;
    background-color: #fafbfc;
}

.address-card--add-new__icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #f1f5f9;
    color: #64748b;
}

.address-card--add-new__title {
    font-weight: 700;
    color: #475569;
    margin-bottom: 4px;
}

.address-card--add-new__desc {
    font-size: 0.75rem;
    color: #94a3b8;
    max-width: 200px;
}

/* 6. Profile & Security Forms */
.profile-photo-wrapper {
    width: 100px;
    height: 100px;
}

.profile-photo-avatar {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    font-size: 2.5rem;
}

.profile-photo-label {
    width: 32px;
    height: 32px;
    cursor: pointer;
    border: 1px solid #cbd5e1;
}

.profile-photo-title {
    font-weight: 700;
    color: #042346;
    margin-bottom: 6px;
    font-size: 1rem;
}

.profile-photo-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
}

.profile-photo-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.profile-section-heading {
    font-weight: 700;
    color: #042346;
    margin-bottom: 20px;
    font-size: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.profile-form-label {
    font-weight: 700;
    color: #042346;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.profile-form-input {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    padding: 10px;
}

.profile-form-input--max-400 {
    max-width: 400px;
}

.profile-submit-btn {
    padding: 12px 30px;
    border: none;
}

.checkbox-pointer {
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
}

/* 7. Status Badges & Navigation Tabs */
.status-badge--pending {
    background-color: #fef3c7;
    color: #b45309;
}

.status-badge--processing {
    background-color: #fef3c7;
    color: #d97706;
}

.status-badge--shipped {
    background-color: #e0f2fe;
    color: #0369a1;
}

.status-badge--delivered {
    background-color: #dcfce7;
    color: #15803d;
}

.status-badge--cancelled {
    background-color: #fee2e2;
    color: #ef4444;
}

.status-badge--returned {
    background-color: #fee2e2;
    color: #b91c1c;
}

.status-badge--failed {
    background-color: #fee2e2;
    color: #ef4444;
}

.status-badge--refunded {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.nav-tabs {
    border-bottom: 1px solid #e2e8f0;
}

.nav-tabs .nav-link {
    border: none;
    color: #64748b;
    font-weight: 600;
    background: transparent;
    padding: 12px 20px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    background: transparent;
}

/* 8. Order Tracking Timeline */
.tracking-timeline {
    position: relative;
    padding-left: 30px;
    margin-left: 15px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: #e2e8f0;
}

.tracking-step {
    position: relative;
    margin-bottom: 25px;
}

.tracking-step:last-child {
    margin-bottom: 0;
}

.tracking-icon {
    position: absolute;
    left: -37px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #cbd5e1;
    transition: all 0.3s ease;
}

.tracking-step.completed .tracking-icon {
    background-color: #519C2B;
    box-shadow: 0 0 0 2px #519C2B;
}

.tracking-step.current .tracking-icon {
    background-color: #0369a1;
    box-shadow: 0 0 0 2px #0369a1;
}

.tracking-details {
    padding-left: 5px;
}

.tracking-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #042346;
    margin-bottom: 2px;
}

.tracking-desc {
    font-size: 0.8rem;
    color: #64748b;
}

/* 9. Order Cards */
.order-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.order-card__header {
    border-color: #e2e8f0 !important;
}

.order-card__meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.order-card__meta-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #042346;
}

.order-card__meta-value--price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #519C2B;
}

.order-card__img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.order-card__title {
    font-weight: 700;
    color: #042346;
    font-size: 0.95rem;
}

.order-card__text {
    font-size: 0.8rem;
}

.order-card__price {
    font-weight: 700;
    color: #042346;
}

.order-card__footer {
    border-color: #e2e8f0 !important;
}

.order-card__btn {
    font-size: 0.75rem;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 600;
    color: #042346;
    border-color: #cbd5e1;
    background-color: #fff;
}

.order-card__btn--cancel {
    font-size: 0.75rem;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 600;
}

.order-card__btn--invoice {
    font-size: 0.75rem;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 600;
    background-color: var(--primary-color);
    border: none;
}

/* 10. Star Ratings Display */
.star-rating-input {
    display: flex;
    gap: 8px;
}

.star-rating-input .star-icon {
    width: 32px;
    height: 32px;
    color: #cbd5e1;
    fill: #cbd5e1;
    cursor: pointer;
    transition: all 0.1s ease;
}

.star-rating-input .star-icon:hover,
.star-rating-input .star-icon.hovered {
    color: #fbbf24;
    fill: #fbbf24;
}

.star-rating-input .star-icon.active {
    color: #f59e0b;
    fill: #f59e0b;
}

.star-rating-display {
    display: flex;
    gap: 2px;
}

.star-rating-display .star-icon-small {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    fill: #f59e0b;
}

.star-rating-display .star-icon-small.empty {
    color: #e2e8f0;
    fill: transparent;
}

/* 11. Transaction Tables & Receipt */
.transactions-table th {
    background-color: #f8fafc;
    color: #042346;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border-bottom: 2px solid #e2e8f0;
}

.transactions-table td {
    padding: 16px;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.transactions-table tr:last-child td {
    border-bottom: none;
}

.transactions-table__id {
    color: #042346;
}

.transactions-table__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.transactions-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: #042346;
    background-color: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
}

.transactions-table__price {
    color: #042346;
}

.transactions-table__btn {
    font-size: 0.75rem;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 600;
    color: #042346;
    border-color: #cbd5e1;
    background-color: #fff;
}

.receipt-details__label {
    font-size: 0.85rem;
}

.receipt-details__value {
    color: #042346;
    font-size: 0.9rem;
}

/* 12. Dashboard Details Modal populate layouts */
.dashboard-no-items {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}

.dashboard-no-items__title {
    font-weight: 700;
    color: #042346;
    margin-bottom: 8px;
}

.dashboard-no-items__desc {
    font-size: 0.9rem;
}

.dashboard-detail-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dashboard-detail-box {
    border-radius: 12px;
}

.dashboard-detail-box__title {
    color: #042346;
    display: block;
    margin-bottom: 4px;
}

.dashboard-detail-box__text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.dashboard-detail-text-success {
    font-weight: 600;
    color: #519C2B;
}

.dashboard-detail-table-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-detail-table {
    font-size: 0.9rem;
}

.dashboard-detail-table th {
    padding: 12px 16px;
    font-weight: 700;
    color: #042346;
}

.dashboard-detail-table td {
    padding: 16px;
}

.dashboard-detail-product-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.dashboard-detail-product-title {
    color: #042346;
    display: block;
    font-size: 0.9rem;
}

.dashboard-detail-product-subtitle {
    font-size: 0.75rem;
}

.dashboard-detail-summary {
    font-size: 0.9rem;
}

.dashboard-detail-summary__val {
    color: #042346;
}

.dashboard-detail-summary__total-label {
    font-weight: 700;
    color: #042346;
}

.dashboard-detail-summary__total-val {
    color: #519C2B;
    font-size: 1.1rem;
}

.dashboard-track-ref {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* 13. Review Card Styles */
.review-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.review-card__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.review-card__meta {
    font-size: 0.75rem;
    display: block;
    margin-bottom: 4px;
}

.review-card__title {
    font-weight: 700;
    color: #042346;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.review-card__text {
    font-size: 0.85rem;
}

.review-card__btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    border: none;
}

.review-card__inner-header {
    border-color: #e2e8f0 !important;
}

.review-card__inner-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.review-card__inner-title {
    font-weight: 700;
    color: #042346;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.review-card__inner-text {
    font-size: 0.8rem;
}

.review-card__date {
    font-size: 0.75rem;
}

.review-card__comment {
    font-size: 0.875rem;
    line-height: 1.6;
    font-style: italic;
}

.review-card__edit-btn {
    font-size: 0.75rem;
    border-radius: 6px;
    padding: 6px 14px;
    font-weight: 600;
    flex-shrink: 0;
    color: #042346;
    border-color: #cbd5e1;
    background-color: #fff;
}

/* 14. Review Modal Styles */
.dashboard-modal__product-box {
    border-radius: 12px;
}

.dashboard-modal__product-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.dashboard-modal__product-title {
    color: #042346;
    display: block;
    font-size: 0.9rem;
}

.dashboard-modal__product-subtitle {
    font-size: 0.75rem;
}

.dashboard-modal__rating-label {
    font-size: 0.85rem;
    color: #042346;
    font-weight: 700;
    margin-bottom: 8px;
}

.dashboard-modal__rating-error {
    font-size: 0.75rem;
}

.dashboard-modal__textarea-label {
    font-size: 0.85rem;
    color: #042346;
    font-weight: 700;
    margin-bottom: 6px;
}

.dashboard-modal__textarea {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 10px;
    font-size: 0.9rem;
    resize: none;
}

.receipt-details__value--amount {
    color: #519C2B;
    font-size: 1.05rem;
    font-weight: 700;
}

.dashboard-modal__btn-submit {
    padding: 8px 18px;
    border: none;
    margin: 0;
}

/* 15. Password Toggle Input Group Styling */
.password-input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.password-input-group .profile-form-input {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.password-input-group .password-toggle-btn {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    background-color: #fff;
    border: 1px solid #cbd5e1;
    border-left: none;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.password-input-group .password-toggle-btn:hover {
    background-color: #f8fafc;
    color: #042346;
}

/* 16. Dashboard Switcher & Seller Custom Styling */
.dashboard-menu-link--switch {
    border-top: 1px dashed #cbd5e1;
    margin-top: 10px;
    padding-top: 15px;
    color: #b45309;
}

.dashboard-menu-link--switch:hover {
    color: #92400e;
    background-color: #fef3c7;
}

.dashboard-menu-link--switch-buyer {
    border-top: 1px dashed #cbd5e1;
    margin-top: 10px;
    padding-top: 15px;
    color: #0369a1;
}

.dashboard-menu-link--switch-buyer:hover {
    color: #075985;
    background-color: #e0f2fe;
}

.dashboard-user-card__badge--seller {
    background-color: #fef3c7;
    color: #d97706;
    border: 1px solid #fcd34d;
}

.metric-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.metric-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.metric-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #042346;
    margin-bottom: 4px;
}

.metric-card__desc {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.store-banner-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
    background-color: #042346;
    background-image: linear-gradient(135deg, #042346 0%, #0a3d75 100%);
    display: flex;
    align-items: center;
    padding: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.store-banner__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #042346;
}

.store-banner__title {
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.store-banner__desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}