@font-face {
    font-family: "AC Typo Grotesk";
    src: url("/assets/fonts/ACTypoGrotesk/ACTypoGrotesk.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Vitamin Sea — brand palette */
:root {
    --vs-teal: #1fb4ae;
    --vs-teal-dark: #0e6e6c;
    --vs-white: #ffffff;
    --vs-text-on-white: #0e6e6c;
    --vs-font: "AC Typo Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
    --vs-header-height: 3.75rem;
    /* Height of #vsAnnouncementBar — keep in sync with .vs-announcement padding */
    --vs-announcement-height: 2rem;
    --vs-hero-overlay: linear-gradient(
        165deg,
        rgba(8, 32, 38, 0.78) 0%,
        rgba(14, 70, 72, 0.62) 45%,
        rgba(6, 18, 22, 0.75) 100%
    );
    /* Hero: same inset below navbar and above bottom edge (also used for flush overlap) */
    --vs-hero-pad-y: clamp(2rem, 5vw, 3.5rem);
}

/* AC Typo Grotesk on all text (overrides Bootstrap and other component font-family) */
html {
    font-family: var(--vs-font) !important;
}

body,
body *,
body *::before,
body *::after {
    font-family: var(--vs-font) !important;
}

/* Bootstrap Icons use their own icon font on ::before */
.bi::before {
    font-family: "bootstrap-icons" !important;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
}

/* ——— Announcement bar ——— */
.vs-announcement {
    position: relative;
    z-index: 1055;
    min-height: var(--vs-announcement-height);
    background: linear-gradient(90deg, var(--vs-teal-dark) 0%, #126f6d 50%, var(--vs-teal-dark) 100%);
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.vs-announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--vs-announcement-height);
    padding: 0.25rem 0.75rem;
}

@media (min-width: 992px) {
    .vs-announcement-inner {
        padding: 0.3rem 1rem;
    }
}

.vs-announcement-static .vs-announcement-text {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.vs-announcement-icon {
    flex-shrink: 0;
    font-size: 0.875rem;
    opacity: 0.92;
    line-height: 1;
}

.vs-announcement-link {
    flex-shrink: 0;
    color: var(--vs-white);
    text-decoration: underline;
    text-underline-offset: 0.12em;
    font-weight: 700;
}

.vs-announcement-link:hover,
.vs-announcement-link:focus-visible {
    color: rgba(255, 255, 255, 0.88);
}

/* Mobile: one-line infinite ticker */
.vs-announcement-marquee {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    min-width: 0;
}

.vs-announcement-marquee-window {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.vs-announcement-marquee-track {
    display: inline-flex;
    width: max-content;
    max-width: none;
    animation: vs-announcement-marquee 32s linear infinite;
}

.vs-announcement-marquee-group {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 0.45rem;
    padding-right: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.vs-announcement-ticker-sep {
    opacity: 0.55;
    user-select: none;
}

@keyframes vs-announcement-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vs-announcement-marquee-track {
        animation: none;
    }

    .vs-announcement-marquee-window {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* ——— Header / Navbar ——— */
.vs-header {
    position: relative;
    z-index: 1030;
}

.vs-navbar {
    min-height: 3.75rem;
    background: var(--vs-white);
    box-shadow: 0 1px 0 rgba(14, 110, 108, 0.12);
}

.vs-brand-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    background: var(--vs-white);
    flex: 1 1 auto;
    min-width: 0;
}

@media (min-width: 992px) {
    .vs-brand-block {
        flex: 0 0 auto;
    }
}

.vs-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--vs-text-on-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.vs-brand:hover,
.vs-brand:focus-visible {
    color: var(--vs-teal);
}

.vs-brand-text-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.06rem;
    min-width: 0;
}

.vs-brand-tagline {
    display: block;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.15;
    text-transform: uppercase;
    color: #5c6e6d;
}

.vs-brand-name {
    font-size: 1.125rem;
    text-transform: none;
}

body:has(main > .vs-hero:first-child) .vs-brand-tagline {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

body.vs-page-inner .vs-brand-tagline {
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.vs-nav-phone {
    display: inline-flex;
    align-items: stretch;
    gap: 0.65rem;
    flex-shrink: 0;
    margin-left: 0.25rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(14, 110, 108, 0.18);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s ease;
}

.vs-nav-phone:hover,
.vs-nav-phone:focus-visible {
    opacity: 0.88;
}

.vs-nav-phone:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.45);
    outline-offset: 3px;
    border-radius: 0.35rem;
}

.vs-nav-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: stretch;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1;
    color: var(--vs-teal);
}

.vs-nav-phone-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    line-height: 1.15;
}

.vs-nav-phone-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5c6e6d;
}

.vs-nav-phone-number {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--vs-teal-dark);
}

.vs-logo img {
    display: block;
    width: 2.5rem;
    height: auto;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .vs-brand {
        gap: 0.85rem;
    }

    .vs-brand-tagline {
        font-size: 0.6875rem;
        letter-spacing: 0.12em;
    }

    .vs-brand-name {
        font-size: 1.35rem;
    }

    .vs-logo img {
        width: 3.25rem;
    }
}

.vs-menu-trigger {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    background: var(--vs-teal);
    min-height: 3.75rem;
}

/* Mobile: logo left, burger right; no teal strip behind burger */
@media (max-width: 991.98px) {
    .vs-navbar {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        min-height: 3.25rem;
    }

    .vs-brand-block {
        min-width: 0;
        padding: 0.65rem 0.75rem 0.65rem 1rem;
    }

    .vs-menu-trigger {
        flex: 0 0 auto;
        gap: 0.35rem;
        background: transparent;
        min-height: 0;
        padding: 0.5rem 1rem 0.5rem 0.5rem;
        align-items: center;
    }

    /* Phone in toolbar: same block as desktop (icon + label + number), no left rule */
    .vs-nav-phone--toolbar {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        align-items: center;
        max-width: min(56vw, 15rem);
        min-width: 0;
    }

    .vs-nav-phone--toolbar .vs-nav-phone-text {
        min-width: 0;
    }

    .vs-nav-phone--toolbar .vs-nav-phone-number {
        font-size: clamp(0.78rem, 3.1vw, 0.9375rem);
    }

    /* Menu: icon-only control (no button chrome), larger */
    button.vs-nav-toolbar-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        min-width: 2.85rem;
        min-height: 2.85rem;
        padding: 0;
        margin: 0;
        border: none;
        background: transparent;
        border-radius: 0.35rem;
        font-size: 1.95rem;
        line-height: 1;
        color: inherit;
        cursor: pointer;
        font-family: inherit;
        -webkit-appearance: none;
        appearance: none;
    }

    button.vs-nav-toolbar-icon i {
        display: block;
    }

    button.vs-nav-toolbar-icon:hover,
    button.vs-nav-toolbar-icon:focus-visible {
        background: rgba(255, 255, 255, 0.12);
    }

    /* Menu icon color: light bar */
    body:not(:has(main > .vs-hero:first-child)) .vs-menu-trigger > button.vs-nav-toolbar-icon {
        color: var(--vs-text-on-white);
    }

    body:has(main > .vs-hero:first-child) .vs-menu-trigger > button.vs-nav-toolbar-icon {
        color: var(--vs-white);
    }

    body:not(:has(main > .vs-hero:first-child)) .vs-menu-trigger > button.vs-nav-toolbar-icon:hover,
    body:not(:has(main > .vs-hero:first-child)) .vs-menu-trigger > button.vs-nav-toolbar-icon:focus-visible {
        background: rgba(14, 110, 108, 0.08);
    }

    body:not(:has(main > .vs-hero:first-child)) .vs-menu-trigger > button.vs-nav-toolbar-icon:focus-visible {
        outline: 2px solid rgba(14, 110, 108, 0.45);
        outline-offset: 2px;
    }

    body:has(main > .vs-hero:first-child) .vs-menu-trigger > button.vs-nav-toolbar-icon:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.55);
        outline-offset: 2px;
    }

    /* Home + hero: phone copy matches desktop-on-teal (white) */
    body:has(main > .vs-hero:first-child) .vs-menu-trigger .vs-nav-phone--toolbar .vs-nav-phone-icon {
        color: rgba(255, 255, 255, 0.96);
    }

    body:has(main > .vs-hero:first-child) .vs-menu-trigger .vs-nav-phone--toolbar .vs-nav-phone-label {
        color: rgba(255, 255, 255, 0.78);
    }

    body:has(main > .vs-hero:first-child) .vs-menu-trigger .vs-nav-phone--toolbar .vs-nav-phone-number {
        color: #fff;
    }

    body:has(main > .vs-hero:first-child) .vs-menu-trigger .vs-nav-phone--toolbar:focus-visible {
        outline-color: rgba(255, 255, 255, 0.55);
    }

    /* Compact toolbar: logo + phone + menu on one row */
    .vs-brand-tagline {
        font-size: clamp(0.5rem, 2.2vw, 0.5625rem);
        letter-spacing: 0.08em;
    }

    .vs-brand-name {
        font-size: clamp(0.88rem, 3.8vw, 1.05rem);
    }

    .vs-menu-trigger {
        gap: 0.28rem;
        padding: 0.4rem 0.45rem 0.4rem 0.35rem;
    }

    .vs-nav-phone--toolbar {
        max-width: min(38vw, 9.5rem);
        gap: 0.35rem;
    }

    .vs-nav-phone--toolbar .vs-nav-phone-icon {
        font-size: 1.1rem;
    }

    .vs-nav-phone--toolbar .vs-nav-phone-label {
        display: block;
        font-size: 0.56rem;
        letter-spacing: 0.08em;
        line-height: 1;
        opacity: 0.84;
    }

    .vs-nav-phone--toolbar .vs-nav-phone-number {
        font-size: 0.68rem;
        letter-spacing: 0.01em;
        line-height: 1.05;
    }

    button.vs-nav-toolbar-icon {
        min-width: 2.35rem;
        min-height: 2.35rem;
        font-size: 1.55rem;
    }
}

.vs-nav-block {
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem 0 1.5rem;
    min-height: 3.75rem;
    background: var(--vs-teal);
}

.vs-nav-list {
    gap: 0.25rem;
}

.vs-nav-list .nav-item {
    display: flex;
    align-items: stretch;
}

.vs-nav-link {
    color: var(--vs-white) !important;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1rem !important;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.vs-nav-link:hover,
.vs-nav-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--vs-white) !important;
}

/* Active: dark frosted glass pill (default desktop strip) */
.vs-nav-link.active {
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.14) 55%, rgba(0, 0, 0, 0.22) 100%);
    backdrop-filter: blur(24px) saturate(118%);
    -webkit-backdrop-filter: blur(24px) saturate(118%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 32px rgba(0, 0, 0, 0.2);
    color: var(--vs-white) !important;
}

/* Home: hero is first in <main> — navbar sits over hero with no solid bar */
body:has(main > .vs-hero:first-child) .vs-header {
    position: absolute;
    top: var(--vs-announcement-height);
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent;
}

body:has(main > .vs-hero:first-child) .vs-navbar {
    background: transparent;
    box-shadow: none;
}

body:has(main > .vs-hero:first-child) .vs-brand-block,
body:has(main > .vs-hero:first-child) .vs-nav-block,
body:has(main > .vs-hero:first-child) .vs-menu-trigger {
    background: transparent;
}

body:has(main > .vs-hero:first-child) .vs-brand {
    color: var(--vs-white);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

body:has(main > .vs-hero:first-child) .vs-brand:hover,
body:has(main > .vs-hero:first-child) .vs-brand:focus-visible {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

body:has(main > .vs-hero:first-child) .vs-navbar .vs-nav-phone {
    border-left-color: rgba(255, 255, 255, 0.28);
}

body:has(main > .vs-hero:first-child) .vs-navbar .vs-nav-phone-icon {
    color: rgba(255, 255, 255, 0.96);
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
}

body:has(main > .vs-hero:first-child) .vs-navbar .vs-nav-phone-label {
    color: rgba(255, 255, 255, 0.78);
}

body:has(main > .vs-hero:first-child) .vs-navbar .vs-nav-phone-number {
    color: #fff;
}

body:has(main > .vs-hero:first-child) .vs-navbar .vs-nav-phone:focus-visible {
    outline-color: rgba(255, 255, 255, 0.55);
}

/* Home (hero): pill-shaped nav links */
body:has(main > .vs-hero:first-child) .vs-nav-link {
    border-radius: 999px;
    padding: 0.45rem 0.85rem !important;
}

body:has(main > .vs-hero:first-child) .vs-nav-link:hover,
body:has(main > .vs-hero:first-child) .vs-nav-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.14);
}

body:has(main > .vs-hero:first-child) .vs-nav-link.active {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.16) 100%);
    backdrop-filter: blur(30px) saturate(115%);
    -webkit-backdrop-filter: blur(30px) saturate(115%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 44px rgba(0, 0, 0, 0.26);
    color: var(--vs-white) !important;
}

/* Inner pages (non-home): flat teal bar — no gradient, no white logo strip */
body.vs-page-inner .vs-navbar {
    background: var(--vs-teal);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body.vs-page-inner .vs-brand-block,
body.vs-page-inner .vs-nav-block,
body.vs-page-inner .vs-menu-trigger {
    background: transparent;
}

body.vs-page-inner .vs-brand {
    color: rgba(255, 255, 255, 0.96);
}

body.vs-page-inner .vs-brand:hover,
body.vs-page-inner .vs-brand:focus-visible {
    color: #fff;
}

body.vs-page-inner .vs-logo img {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

body.vs-page-inner .vs-navbar .vs-nav-phone {
    border-left-color: rgba(255, 255, 255, 0.28);
}

body.vs-page-inner .vs-navbar .vs-nav-phone--toolbar {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
}

body.vs-page-inner .vs-navbar .vs-nav-phone-icon {
    color: rgba(255, 255, 255, 0.96);
}

body.vs-page-inner .vs-navbar .vs-nav-phone-label {
    color: rgba(255, 255, 255, 0.78);
}

body.vs-page-inner .vs-navbar .vs-nav-phone-number {
    color: #fff;
}

body.vs-page-inner .vs-navbar .vs-nav-phone:focus-visible {
    outline-color: rgba(255, 255, 255, 0.55);
}

body.vs-page-inner .vs-nav-link {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    text-transform: none;
    padding: 0.45rem 0.85rem !important;
    border-radius: 999px;
}

body.vs-page-inner .vs-nav-link:hover,
body.vs-page-inner .vs-nav-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.14);
}

body.vs-page-inner .vs-nav-link.active {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.12) 100%);
    backdrop-filter: blur(24px) saturate(118%);
    -webkit-backdrop-filter: blur(24px) saturate(118%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 28px rgba(0, 0, 0, 0.18);
    color: var(--vs-white) !important;
}

@media (max-width: 991.98px) {
    body.vs-page-inner .vs-menu-trigger > button.vs-nav-toolbar-icon {
        color: var(--vs-white);
    }

    body.vs-page-inner .vs-menu-trigger > button.vs-nav-toolbar-icon:hover,
    body.vs-page-inner .vs-menu-trigger > button.vs-nav-toolbar-icon:focus-visible {
        background: rgba(255, 255, 255, 0.12);
    }

    body.vs-page-inner .vs-menu-trigger > button.vs-nav-toolbar-icon:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.55);
        outline-offset: 2px;
    }
}

/* ——— Language selector (glass dropdown) ——— */
.vs-letter-wide {
    letter-spacing: 0.12em;
}

.vs-lang-btn.vs-glass-toggle,
.vs-glass-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0.45rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--vs-white);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.vs-lang-btn.vs-glass-toggle:hover,
.vs-glass-toggle:hover,
.vs-lang-btn.vs-glass-toggle:focus-visible,
.vs-glass-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--vs-white);
}

.vs-lang-btn.dropdown-toggle::after {
    display: none;
}

.vs-lang-chevron {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    transform: rotate(45deg);
    margin-top: -0.2rem;
}

.vs-lang-flag {
    display: block;
    width: 22px;
    height: 16px;
    object-fit: cover;
    flex-shrink: 0;
    border: none;
    outline: none;
    box-shadow: none;
}

.vs-glass-item--with-flag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vs-glass-menu {
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.38) !important;
    border-radius: 0.5rem;
    padding: 0.35rem !important;
    margin-top: 0.4rem !important;
    min-width: 11rem;
    box-shadow: 0 12px 40px rgba(14, 110, 108, 0.25);
}

.dropup .vs-glass-menu {
    margin-top: 0 !important;
    margin-bottom: 0.4rem !important;
}

.vs-glass-item {
    color: rgba(255, 255, 255, 0.96);
    border-radius: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.vs-glass-item:hover,
.vs-glass-item:focus {
    background: rgba(255, 255, 255, 0.16);
    color: var(--vs-white);
}

.vs-glass-item.active {
    background: rgba(0, 0, 0, 0.22);
    color: var(--vs-white);
}

.vs-header .dropdown {
    z-index: 1060;
}

.vs-offcanvas .dropdown {
    z-index: 1060;
}

.vs-footer .vs-lang {
    display: inline-flex;
    justify-content: flex-start;
}

/* Language control on light footer (not glass-on-teal) */
.vs-footer .vs-lang-btn.vs-glass-toggle,
.vs-footer .vs-glass-toggle {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--vs-white);
    border: 1px solid rgba(14, 110, 108, 0.22);
    color: var(--vs-text-on-white);
    box-shadow: 0 1px 3px rgba(14, 110, 108, 0.06);
}

.vs-footer .vs-lang-btn.vs-glass-toggle:hover,
.vs-footer .vs-glass-toggle:hover,
.vs-footer .vs-lang-btn.vs-glass-toggle:focus-visible,
.vs-footer .vs-glass-toggle:focus-visible {
    background: rgba(31, 180, 174, 0.08);
    border-color: rgba(14, 110, 108, 0.35);
    color: var(--vs-teal-dark);
}

.vs-footer .vs-lang-chevron {
    border-right-color: var(--vs-teal-dark);
    border-bottom-color: var(--vs-teal-dark);
    opacity: 0.75;
}

.vs-footer .vs-glass-menu {
    background: var(--vs-white) !important;
    border: 1px solid rgba(14, 110, 108, 0.15) !important;
    box-shadow: 0 8px 28px rgba(14, 110, 108, 0.12);
}

.vs-footer .vs-glass-item {
    color: var(--vs-text-on-white);
}

.vs-footer .vs-glass-item:hover,
.vs-footer .vs-glass-item:focus {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

.vs-footer .vs-glass-item.active {
    background: rgba(31, 180, 174, 0.14);
    color: var(--vs-teal-dark);
}

.vs-footer .dropdown {
    z-index: 1060;
}

/* CRM top bar: same language control as footer (light background, readable menu) */
.vs-crm-topbar .vs-lang {
    display: inline-flex;
    align-items: center;
}

.vs-crm-topbar .vs-lang-btn.vs-glass-toggle {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--vs-white);
    border: 1px solid rgba(14, 110, 108, 0.22);
    color: var(--vs-text-on-white);
    box-shadow: 0 1px 3px rgba(14, 110, 108, 0.06);
}

.vs-crm-topbar .vs-lang-btn.vs-glass-toggle:hover,
.vs-crm-topbar .vs-lang-btn.vs-glass-toggle:focus-visible {
    background: rgba(31, 180, 174, 0.08);
    border-color: rgba(14, 110, 108, 0.35);
    color: var(--vs-teal-dark);
}

.vs-crm-topbar .vs-lang-chevron {
    border-right-color: var(--vs-teal-dark);
    border-bottom-color: var(--vs-teal-dark);
    opacity: 0.75;
}

.vs-crm-topbar .vs-glass-menu {
    background: var(--vs-white) !important;
    border: 1px solid rgba(14, 110, 108, 0.15) !important;
    box-shadow: 0 8px 28px rgba(14, 110, 108, 0.12);
}

.vs-crm-topbar .vs-glass-item {
    color: var(--vs-text-on-white);
}

.vs-crm-topbar .vs-glass-item:hover,
.vs-crm-topbar .vs-glass-item:focus {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

.vs-crm-topbar .vs-glass-item.active {
    background: rgba(31, 180, 174, 0.14);
    color: var(--vs-teal-dark);
}

.vs-crm-topbar .dropdown {
    z-index: 1060;
}

.vs-crm-menu-offcanvas .vs-glass-menu {
    background: var(--vs-white) !important;
    border: 1px solid rgba(14, 110, 108, 0.15) !important;
    box-shadow: 0 8px 28px rgba(14, 110, 108, 0.12);
}

.vs-crm-menu-offcanvas .vs-glass-item {
    color: var(--vs-text-on-white);
}

.vs-crm-menu-offcanvas .vs-glass-item:hover,
.vs-crm-menu-offcanvas .vs-glass-item:focus {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

.vs-crm-menu-offcanvas .vs-lang-btn.vs-glass-toggle {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--vs-white);
    border: 1px solid rgba(14, 110, 108, 0.22);
    color: var(--vs-text-on-white);
}

.vs-crm-menu-offcanvas .vs-lang-chevron {
    border-right-color: var(--vs-teal-dark);
    border-bottom-color: var(--vs-teal-dark);
    opacity: 0.75;
}

/* Inner pages: language menu opens over light breadcrumb/main — glass + white text is illegible */
body.vs-page-inner .vs-header .vs-glass-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--vs-white) !important;
    border: 1px solid rgba(14, 110, 108, 0.15) !important;
    box-shadow: 0 12px 40px rgba(14, 110, 108, 0.18);
}

body.vs-page-inner .vs-header .vs-glass-item {
    color: var(--vs-text-on-white);
}

body.vs-page-inner .vs-header .vs-glass-item:hover,
body.vs-page-inner .vs-header .vs-glass-item:focus {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

body.vs-page-inner .vs-header .vs-glass-item.active {
    background: rgba(31, 180, 174, 0.14);
    color: var(--vs-teal-dark);
}

/* ——— Offcanvas menu ——— */
.vs-offcanvas {
    --bs-offcanvas-width: min(20rem, 92vw);
    z-index: 1060;
    background: linear-gradient(165deg, var(--vs-teal) 0%, var(--vs-teal-dark) 100%);
    box-shadow: -0.5rem 0 2rem rgba(14, 110, 108, 0.35);
}

.vs-offcanvas .offcanvas-title {
    letter-spacing: 0.12em;
    font-size: 0.8125rem;
}

.vs-offcanvas-nav .nav-item {
    margin: 0;
}

.vs-offcanvas-phone-link {
    display: inline-flex;
    align-items: stretch;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.96) !important;
    transition: opacity 0.15s ease;
}

.vs-offcanvas-phone-link:hover,
.vs-offcanvas-phone-link:focus-visible {
    opacity: 0.9;
    color: #fff !important;
}

.vs-offcanvas-phone-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
    border-radius: 0.35rem;
}

.vs-offcanvas-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: stretch;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

.vs-offcanvas-phone-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.15;
}

.vs-offcanvas-phone-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.vs-offcanvas-phone-number {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.vs-offcanvas-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 1rem !important;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.vs-offcanvas-link:hover,
.vs-offcanvas-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--vs-white) !important;
}

/* Mobile menu: current page — glass chip aligned with hover, stronger frost (offcanvas is < lg) */
@media (max-width: 991.98px) {
    .vs-offcanvas-link.active {
        border: 1px solid transparent;
        background: linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.11) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.03) 100%
        );
        backdrop-filter: blur(16px) saturate(140%);
        -webkit-backdrop-filter: blur(16px) saturate(140%);
        border-radius: 0.5rem;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 4px 14px rgba(0, 0, 0, 0.1);
        color: rgba(255, 255, 255, 0.98) !important;
    }

    .vs-offcanvas-link.active:hover,
    .vs-offcanvas-link.active:focus-visible {
        background: linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.07) 50%,
            rgba(255, 255, 255, 0.04) 100%
        );
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 4px 16px rgba(0, 0, 0, 0.12);
    }
}

/* ——— Home: category cards carousel (full width) ——— */
.vs-category-section {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    background: var(--vs-white);
    padding-bottom: 2rem;
    overflow: hidden;
}

/* Pills artwork — bottom of section; strongest near bottom edge, mostly gone by upper ~⅔ of band */
.vs-category-section::after,
.vs-page-contact::before,
.vs-page-categories::after,
.vs-page-brands::after,
section.vs-page-brand::after,
.vs-product-detail::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: clamp(12rem, 58%, 26rem);
    pointer-events: none;
    z-index: 0;
    background-image: url("/assets/images/pills-bg.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    opacity: 0.62;
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        transparent 22%,
        rgba(0, 0, 0, 0.06) 34%,
        rgba(0, 0, 0, 0.22) 46%,
        rgba(0, 0, 0, 0.48) 58%,
        rgba(0, 0, 0, 0.78) 72%,
        rgba(0, 0, 0, 0.95) 82%,
        #000 92%,
        #000 100%
    );
    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        transparent 22%,
        rgba(0, 0, 0, 0.06) 34%,
        rgba(0, 0, 0, 0.22) 46%,
        rgba(0, 0, 0, 0.48) 58%,
        rgba(0, 0, 0, 0.78) 72%,
        rgba(0, 0, 0, 0.95) 82%,
        #000 92%,
        #000 100%
    );
}

@media (max-width: 575.98px) {
    .vs-category-section {
        padding-bottom: 1.35rem;
    }
}

@media (min-width: 992px) {
    .vs-category-section {
        padding-bottom: 2.75rem;
    }
}

/* Full-bleed intro; bottom fades into the carousel */
.vs-category-intro {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(1.5rem, 4vw, 2.75rem) 0 0;
    overflow: hidden;
}

.vs-category-intro::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(4.5rem, 22vw, 9rem);
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 35%,
        rgba(255, 255, 255, 0.82) 72%,
        var(--vs-white) 100%
    );
}

.vs-category-header {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: clamp(1.35rem, 3.5vw, 2.25rem) clamp(1rem, 4vw, 2.75rem) clamp(2.5rem, 9vw, 4.5rem);
    border-radius: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 130% 90% at 8% -5%, rgba(31, 180, 174, 0.22) 0%, transparent 58%),
        radial-gradient(ellipse 90% 80% at 102% 105%, rgba(14, 110, 108, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 50% 120%, rgba(31, 180, 174, 0.06) 0%, transparent 45%),
        linear-gradient(165deg, #e8f6f4 0%, #f9fdfc 38%, #ffffff 72%, #f4faf9 100%);
    border: none;
    border-bottom: 1px solid rgba(31, 180, 174, 0.16);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 0 0 1px rgba(31, 180, 174, 0.06),
        0 16px 48px rgba(14, 110, 108, 0.1);
}

.vs-category-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.85rem, 2.5vw, 1.15rem);
    width: 100%;
    max-width: 100%;
}

@media (max-width: 575.98px) {
    .vs-category-header {
        padding: clamp(1rem, 3vw, 1.35rem) clamp(0.85rem, 4vw, 1.15rem) clamp(1.85rem, 6vw, 2.35rem);
    }

    .vs-category-header-inner {
        gap: 0.6rem;
    }
}

.vs-category-pill-floater {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.58;
    filter: drop-shadow(0 2px 8px rgba(14, 110, 108, 0.18));
}

.vs-category-pill-floater--a {
    width: 5rem;
    height: 1.45rem;
    top: 0.75rem;
    right: 6%;
    background: linear-gradient(90deg, rgba(31, 180, 174, 0.75), rgba(31, 180, 174, 0.28));
    transform: rotate(-8deg);
    box-shadow: 0 2px 12px rgba(31, 180, 174, 0.25);
}

.vs-category-pill-floater--b {
    width: 3.35rem;
    height: 1.05rem;
    bottom: 1rem;
    left: 5%;
    background: linear-gradient(90deg, rgba(14, 110, 108, 0.42), rgba(31, 180, 174, 0.35));
    transform: rotate(12deg);
    box-shadow: 0 2px 10px rgba(14, 110, 108, 0.2);
}

.vs-category-pill-floater--c {
    width: 2.6rem;
    height: 2.6rem;
    top: 40%;
    left: 2.5%;
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.75), rgba(31, 180, 174, 0.35));
    box-shadow:
        inset 0 0 0 1.5px rgba(31, 180, 174, 0.35),
        0 3px 14px rgba(14, 110, 108, 0.15);
    opacity: 0.72;
}

@media (max-width: 575.98px) {
    .vs-category-pill-floater--c {
        display: none;
    }
}

.vs-category-title {
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.12;
    color: #0f2322;
    margin: 0;
}

@media (max-width: 575.98px) {
    .vs-category-title {
        font-size: clamp(1.38rem, 5.8vw, 1.6rem);
        line-height: 1.14;
        letter-spacing: -0.04em;
    }
}

.vs-category-sub {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #5c6e6d;
    margin: 0 auto;
    max-width: min(58rem, 100%);
    width: 100%;
}

@media (max-width: 575.98px) {
    .vs-category-sub {
        font-size: 0.875rem;
        line-height: 1.55;
        padding: 0 0.15rem;
    }
}

.vs-category-carousel-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7b7a;
    margin: clamp(0.5rem, 2vw, 0.85rem) auto clamp(0.35rem, 1.2vw, 0.55rem);
    padding: 0;
    max-width: min(58rem, 100%);
    width: 100%;
    text-align: center;
}

@media (max-width: 575.98px) {
    .vs-category-carousel-eyebrow {
        font-size: 0.625rem;
        letter-spacing: 0.12em;
        margin: 0.45rem auto 0.3rem;
    }
}

.vs-category-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem clamp(0.55rem, 1.2vw, 0.85rem);
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: min(64rem, 100%);
}

a.vs-category-pill,
a.vs-category-pill:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: clamp(0.8125rem, 1.85vw, 0.9375rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: none;
    text-decoration: none;
    color: #0a3f3d;
    background: linear-gradient(180deg, #ffffff 0%, rgba(240, 252, 249, 0.98) 100%);
    border: 1px solid rgba(31, 180, 174, 0.45);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.98) inset,
        0 3px 14px rgba(14, 110, 108, 0.12),
        0 1px 0 rgba(14, 110, 108, 0.06);
    cursor: pointer;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

a.vs-category-pill:hover {
    color: var(--vs-teal-dark);
    border-color: rgba(31, 180, 174, 0.75);
    background: linear-gradient(180deg, #ffffff 0%, rgba(220, 246, 242, 0.98) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.98) inset,
        0 6px 22px rgba(14, 110, 108, 0.18),
        0 2px 0 rgba(31, 180, 174, 0.12);
    transform: translateY(-3px);
}

a.vs-category-pill:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.55);
    outline-offset: 3px;
    color: var(--vs-teal-dark);
}

a.vs-category-pill:active {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 2px 10px rgba(14, 110, 108, 0.14);
}

.vs-category-swiper-wrap {
    position: relative;
    z-index: 1;
    padding: 0 0 clamp(1.5rem, 4vw, 2.5rem);
    max-width: 100%;
}

/* Symmetric gutters + arrows outside the swiper so cards stay aligned */
.vs-category-swiper-rail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(0.35rem, 1.2vw, 0.65rem);
    width: 100%;
    max-width: 100%;
    padding-left: max(env(safe-area-inset-left, 0px), clamp(0.5rem, 2.5vw, 1.5rem));
    padding-right: max(env(safe-area-inset-right, 0px), clamp(0.5rem, 2.5vw, 1.5rem));
    box-sizing: border-box;
}

.vs-category-swiper-rail .vs-category-swiper {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

@media (max-width: 575.98px) {
    .vs-category-swiper-wrap {
        padding-bottom: clamp(1.1rem, 3.5vw, 1.75rem);
    }

    .vs-category-swiper-rail {
        gap: 0.28rem;
        padding-left: max(env(safe-area-inset-left, 0px), clamp(0.35rem, 2vw, 0.85rem));
        padding-right: max(env(safe-area-inset-right, 0px), clamp(0.35rem, 2vw, 0.85rem));
    }
}

.vs-stories-swiper-wrap {
    position: relative;
    /* Same gutter as .vs-stories .container — keeps title and strip aligned */
    padding-left: var(--vs-stories-gutter);
    padding-right: var(--vs-stories-gutter);
    padding-bottom: clamp(0.85rem, 2vw, 1.25rem);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* overflow:hidden is required for Swiper; bottom padding keeps card shadows inside the padding box */
.vs-category-swiper.swiper {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    padding-top: clamp(0.65rem, 2vw, 1rem);
    padding-bottom: clamp(1.35rem, 4vw, 2.25rem);
    box-sizing: border-box;
    touch-action: pan-x pan-y pinch-zoom;
}

@media (max-width: 575.98px) {
    .vs-category-swiper.swiper {
        padding-top: 0.3rem;
        padding-bottom: clamp(1rem, 4vw, 1.65rem);
    }
}

.vs-category-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.vs-category-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
    overflow: visible;
    padding-bottom: clamp(0.35rem, 1.5vw, 0.65rem);
}

.vs-category-card {
    --vs-cat-bg: #6b7b7a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    min-height: 22rem;
    height: 100%;
    border-radius: 0.75rem;
    background-color: var(--vs-cat-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 110, 108, 0.12);
}

/* Photo layer (home / subs / products with --vs-cat-image); gradient-only card keeps bg on .vs-category-card */
.vs-category-card:not(.vs-category-card--catalog-all) {
    background-image: none;
}

.vs-category-card:not(.vs-category-card--catalog-all)::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    background-color: var(--vs-cat-bg);
    background-image: var(--vs-cat-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Darken at rest; fades out on hover so the photo reads brighter */
.vs-category-card:not(.vs-category-card--catalog-all)::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
    background: var(--vs-hero-overlay);
    opacity: 1;
    transition: opacity 0.45s ease;
}

.vs-category-card:not(.vs-category-card--catalog-all):hover::before,
.vs-category-card:not(.vs-category-card--catalog-all):focus-visible::before {
    opacity: 0;
}

.vs-category-card:not(.vs-category-card--catalog-all):hover::after,
.vs-category-card:not(.vs-category-card--catalog-all):focus-visible::after {
    transform: scale(1.08);
}

@media (max-width: 575.98px) {
    .vs-category-card {
        min-height: 16.75rem;
        border-radius: 0.65rem;
        box-shadow: 0 3px 16px rgba(14, 110, 108, 0.14);
    }
}

.vs-category-card:hover,
.vs-category-card:focus-visible {
    color: #fff;
}

/* Optional modifier: same contrast as other slides when using photo + overlay */
.vs-category-card--light {
    color: #fff;
}

.vs-category-card--light:hover,
.vs-category-card--light:focus-visible {
    color: #fff;
}

.vs-category-card--light .vs-category-card-list {
    opacity: 0.96;
}

.vs-category-card-inner {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    padding: 1.5rem 1.15rem;
    box-sizing: border-box;
}

@media (max-width: 575.98px) {
    .vs-category-card-inner {
        padding: 1.15rem 0.85rem;
    }
}

.vs-category-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    min-height: calc(1.2rem * 1.2 * 2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

@media (max-width: 575.98px) {
    .vs-category-card-title {
        font-size: 1.02rem;
        min-height: 0;
    }
}

.vs-category-card--light .vs-category-card-title {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.vs-category-card-list {
    list-style: none;
    margin: 0.85rem auto 0;
    padding: 0;
    width: 100%;
    max-width: 16rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.55;
    opacity: 0.96;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@media (max-width: 575.98px) {
    .vs-category-card-list {
        margin-top: 0.5rem;
        font-size: 0.72rem;
        line-height: 1.45;
    }
}

.vs-category-nav,
.vs-stories-nav,
.vs-home-hi-articles-nav,
.vs-brands-nav {
    z-index: 3;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--vs-teal-dark);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.vs-stories-nav,
.vs-home-hi-articles-nav {
    position: absolute;
    top: 50%;
    margin-top: -1.325rem;
}

.vs-category-swiper-rail .vs-category-nav {
    position: static;
    margin-top: 0;
    flex-shrink: 0;
}

.vs-category-nav:hover,
.vs-category-nav:focus-visible,
.vs-stories-nav:hover,
.vs-stories-nav:focus-visible,
.vs-home-hi-articles-nav:hover,
.vs-home-hi-articles-nav:focus-visible,
.vs-brands-nav:hover,
.vs-brands-nav:focus-visible {
    background: var(--vs-teal);
    color: #fff;
    box-shadow: 0 4px 18px rgba(14, 110, 108, 0.25);
}

.vs-category-nav:focus-visible,
.vs-stories-nav:focus-visible,
.vs-home-hi-articles-nav:focus-visible,
.vs-brands-nav:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.45);
    outline-offset: 2px;
}

.vs-stories-prev,
.vs-home-hi-articles-prev {
    left: 0.15rem;
}

.vs-stories-next,
.vs-home-hi-articles-next {
    right: 0.15rem;
}

@media (min-width: 1200px) {
    .vs-stories-prev,
    .vs-home-hi-articles-prev {
        left: 0.35rem;
    }

    .vs-stories-next,
    .vs-home-hi-articles-next {
        right: 0.35rem;
    }
}

.swiper-button-disabled.vs-category-nav,
.swiper-button-disabled.vs-stories-nav,
.swiper-button-disabled.vs-home-hi-articles-nav,
.swiper-button-disabled.vs-brands-nav {
    opacity: 0.35;
    pointer-events: none;
}

/* Stories strip nav: smaller on narrow screens */
@media (max-width: 575.98px) {
    .vs-stories-nav,
    .vs-home-hi-articles-nav {
        width: 2.35rem;
        height: 2.35rem;
        margin-top: -1.175rem;
        font-size: 1.1rem;
    }

    .vs-stories-prev,
    .vs-home-hi-articles-prev {
        left: 0.05rem;
    }

    .vs-stories-next,
    .vs-home-hi-articles-next {
        right: 0.05rem;
    }

    .vs-category-swiper-rail .vs-category-nav,
    .vs-brands-swiper-rail .vs-brands-nav {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1.1rem;
    }
}

/* ——— Brands strip: Swiper (up to 5 slides visible, above footer) ——— */
.vs-brands {
    flex-shrink: 0;
    padding: 2.25rem 0 2.5rem;
    background: linear-gradient(180deg, #fbfcfc 0%, #f4f8f7 100%);
    border-top: 1px solid rgba(14, 110, 108, 0.1);
    border-bottom: 1px solid rgba(14, 110, 108, 0.12);
}

@media (min-width: 992px) {
    .vs-brands {
        padding: 2.75rem 0 3rem;
    }
}

.vs-brands-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7b7a;
    margin-bottom: 0.35rem;
}

.vs-brands-title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0f2322;
    margin: 0 0 1.35rem;
}

.vs-brands-swiper-wrap {
    position: relative;
    z-index: 1;
    padding: 0 0 0.15rem;
    max-width: 100%;
}

.vs-brands-swiper-rail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(0.35rem, 1.2vw, 0.65rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.vs-brands-swiper-rail .vs-brands-swiper {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

.vs-brands-swiper.swiper {
    width: 100%;
    overflow: hidden;
    padding: 0.35rem 0 0.6rem;
    box-sizing: border-box;
    touch-action: pan-x pan-y pinch-zoom;
}

.vs-brands-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.vs-brands-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-brands-swiper-rail .vs-brands-nav {
    position: static;
    margin-top: 0;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .vs-brands-swiper-rail {
        gap: 0.28rem;
    }
}

.vs-brands-item {
    width: 100%;
    max-width: 12rem;
    margin: 0 auto;
    box-sizing: border-box;
}

a.vs-brands-logo-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 0.35rem;
    outline: none;
}

a.vs-brands-logo-link:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.45);
    outline-offset: 2px;
}

.vs-brands-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.75rem;
    padding: 0.35rem;
}

.vs-brands-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 3.25rem;
    object-fit: contain;
    opacity: 0.88;
    filter: grayscale(0.15);
    transition: opacity 0.2s ease, filter 0.2s ease;
    pointer-events: none;
    user-select: none;
}

.vs-brands-item:hover .vs-brands-logo,
.vs-brands-logo-link:hover .vs-brands-logo {
    opacity: 1;
    filter: grayscale(0);
}

/* ——— Stories: lead block (doctor visual + copy) above the rings strip ——— */
.vs-stories-lead {
    --vs-stories-gutter: clamp(0.75rem, 3vw, 2.75rem);
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
    padding-inline: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%);
    border-top: 1px solid rgba(14, 110, 108, 0.08);
    border-bottom: 1px solid rgba(14, 110, 108, 0.12);
    overflow-x: hidden;
}

.vs-stories-lead .container {
    padding-left: var(--vs-stories-gutter);
    padding-right: var(--vs-stories-gutter);
}

.vs-stories-lead-row {
    align-items: stretch;
}

.vs-stories-lead-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
    margin-bottom: 0;
    min-height: 0;
}

@media (min-width: 768px) {
    .vs-stories-lead-visual {
        margin-inline: 0;
        justify-content: flex-start;
        max-width: min(26rem, 100%);
    }
}

.vs-stories-lead-img {
    width: 100%;
    height: auto;
    max-height: min(22rem, 52vh);
    object-fit: contain;
    object-position: center center;
    display: block;
}

.vs-stories-lead-col-copy {
    padding-top: 0;
}

.vs-stories-lead-copy {
    width: 100%;
    max-width: min(34rem, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-inline: 0;
    padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.vs-stories-lead-title {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #0f2322;
    margin: 0 0 0.65rem;
}

.vs-stories-lead-text {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.65;
    color: #4a5a59;
    margin: 0 0 1.25rem;
    max-width: none;
}

.vs-stories-lead-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: var(--vs-teal);
    border: 1px solid var(--vs-teal);
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.vs-stories-lead-cta:hover,
.vs-stories-lead-cta:focus-visible {
    color: #fff;
    background: var(--vs-teal-dark);
    border-color: var(--vs-teal-dark);
}

.vs-stories-lead-cta .bi {
    font-size: 1.2rem;
    line-height: 1;
}


/* ——— Stories strip: Swiper (Instagram-style rings; fluid + full-width strip) ——— */
.vs-stories {
    --vs-stories-gutter: clamp(0.75rem, 3vw, 2.75rem);
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: clamp(1.35rem, 4vw, 2rem) 0 clamp(1.75rem, 4.5vw, 2.5rem);
    padding-inline: 0;
    background: linear-gradient(180deg, #f4f8f7 0%, #ffffff 100%);
    border-top: 1px solid rgba(14, 110, 108, 0.08);
    overflow-x: hidden;
}

/* Match carousel gutters so heading lines up with slides */
.vs-stories .container {
    padding-left: var(--vs-stories-gutter);
    padding-right: var(--vs-stories-gutter);
}

@media (min-width: 992px) {
    .vs-stories {
        padding: 2.75rem 0 3rem;
    }
}

.vs-stories-heading {
    font-size: clamp(0.6875rem, 0.65rem + 0.35vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7b7a;
    margin-bottom: 0.35rem;
}

.vs-stories-sub {
    font-size: clamp(0.75rem, 0.72rem + 0.35vw, 0.8125rem);
    color: #8a9695;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    max-width: min(26rem, 100%);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

/* Splide: full width strip; heading stays in .container above. */

.vs-stories-splide.splide {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: clamp(0.4rem, 1.5vw, 0.65rem) 0 clamp(0.55rem, 2vw, 0.85rem);
    padding-inline: 0;
    box-sizing: border-box;
}

.vs-stories-splide .splide__track {
    overflow: hidden;
}

.vs-stories-splide .splide__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Wider slides = fewer stories visible at once (≈2 on phone, ≈2.5 tablet, ≈3 desktop) */
.vs-stories-splide .splide__slide {
    width: clamp(8.25rem, calc(40vw + 1rem), 15rem);
    max-width: 15rem;
    height: auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media (min-width: 400px) {
    .vs-stories-splide .splide__slide {
        width: clamp(8.75rem, 38vw, 15rem);
    }
}

@media (min-width: 576px) {
    .vs-stories-splide .splide__slide {
        width: clamp(9rem, 34vw, 15rem);
    }
}

@media (min-width: 992px) {
    .vs-stories-splide .splide__slide {
        width: clamp(11rem, 24vw, 20rem);
    }
}

.vs-stories-splide .splide__pagination,
.vs-stories-splide .splide__arrows,
.vs-stories-splide .splide__arrow {
    display: none !important;
}

.vs-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: clamp(0.4rem, 1.2vw, 0.6rem);
    padding: clamp(0.1rem, 0.5vw, 0.2rem) 0;
    color: #3d4a49;
    transition: color 0.2s ease;
}

.vs-story-item:hover,
.vs-story-item:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-story-item:focus-visible {
    outline: 2px solid var(--vs-teal);
    outline-offset: 3px;
    border-radius: 0.35rem;
}

.vs-story-ring {
    width: min(100%, clamp(7.25rem, calc(36vw + 0.5rem), 13rem));
    max-width: 100%;
    padding: clamp(3px, 0.8vw, 5px);
    border-radius: 50%;
    box-sizing: border-box;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: linear-gradient(145deg, #1fb4ae 0%, var(--vs-teal) 45%, #126f6d 100%);
    box-shadow: 0 clamp(4px, 1.2vw, 8px) clamp(16px, 3vw, 28px) rgba(14, 110, 108, 0.22);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (min-width: 400px) {
    .vs-story-ring {
        width: min(100%, clamp(7.75rem, 34vw, 13rem));
    }
}

@media (min-width: 576px) {
    .vs-story-ring {
        width: min(100%, clamp(8rem, 30vw, 13rem));
    }
}

@media (min-width: 992px) {
    .vs-story-ring {
        width: min(100%, clamp(8.5rem, 24vw, 13rem));
    }
}

@media (min-width: 1200px) {
    .vs-story-ring {
        padding: 6px;
    }
}

.vs-story-avatar {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-story-avatar .vs-story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.vs-story-label {
    display: block;
    width: 100%;
    font-size: clamp(0.625rem, 0.58rem + 0.35vw, 0.875rem);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    max-width: 100%;
    padding-inline: 0.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 399.98px) {
    .vs-story-label {
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        min-height: 2.5em;
    }
}

@media (min-width: 992px) {
    .vs-story-label {
        font-size: 0.875rem;
    }
}

.vs-story-item:hover .vs-story-ring,
.vs-story-item:focus-visible .vs-story-ring {
    box-shadow: 0 6px 18px rgba(14, 110, 108, 0.28);
    transform: translateY(-2px);
}

/* ——— Home: features · products · articles (below stories) ——— */
.vs-home-highlights {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.25rem, 5vw, 3.25rem);
    background: #ffffff;
    border-top: 1px solid rgba(14, 110, 108, 0.1);
}

/* Pills artwork — top of section; strong near top edge only, fades out higher above content */
.vs-home-highlights::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: clamp(12rem, 58%, 26rem);
    pointer-events: none;
    z-index: 0;
    background-image: url("/assets/images/pills-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    opacity: 0.62;
    -webkit-mask-image: linear-gradient(
        180deg,
        #000 0%,
        #000 8%,
        rgba(0, 0, 0, 0.95) 18%,
        rgba(0, 0, 0, 0.78) 28%,
        rgba(0, 0, 0, 0.48) 42%,
        rgba(0, 0, 0, 0.22) 54%,
        rgba(0, 0, 0, 0.06) 66%,
        transparent 78%,
        transparent 100%
    );
    mask-image: linear-gradient(
        180deg,
        #000 0%,
        #000 8%,
        rgba(0, 0, 0, 0.95) 18%,
        rgba(0, 0, 0, 0.78) 28%,
        rgba(0, 0, 0, 0.48) 42%,
        rgba(0, 0, 0, 0.22) 54%,
        rgba(0, 0, 0, 0.06) 66%,
        transparent 78%,
        transparent 100%
    );
}

.vs-home-highlights > .container {
    position: relative;
    z-index: 1;
}

.vs-home-hi-block {
    height: 100%;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    border-radius: 0.75rem;
    border: 1px solid transparent;
    box-sizing: border-box;
    /* Inner fill + border that fades out toward the bottom edge */
    background:
        linear-gradient(180deg, #fbfcfc 0%, #ffffff 100%) padding-box,
        linear-gradient(
            180deg,
            rgba(14, 110, 108, 0.14) 0%,
            rgba(14, 110, 108, 0.08) 42%,
            rgba(14, 110, 108, 0.03) 72%,
            rgba(14, 110, 108, 0) 100%
        )
            border-box;
    background-clip: padding-box, border-box;
}

.vs-home-hi-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7b7a;
    margin: 0 0 0.35rem;
}

.vs-home-hi-title {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #0f2322;
    margin: 0 0 0.85rem;
}

.vs-home-hi-block-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    margin-bottom: 0.35rem;
}

.vs-home-hi-block-head-text {
    min-width: 0;
    flex: 1 1 auto;
}

.vs-home-hi-block-head-text .vs-home-hi-title {
    margin-bottom: 0;
}

.vs-home-hi-block-head .vs-home-hi-more {
    flex-shrink: 0;
    margin-top: 0;
    margin-left: auto;
    align-self: flex-start;
    white-space: nowrap;
    font-size: 0.75rem;
    line-height: 1.25;
    padding-top: 0.12rem;
}

@media (max-width: 400px) {
    .vs-home-hi-block-head {
        flex-wrap: wrap;
    }

    .vs-home-hi-block-head .vs-home-hi-more {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }
}

.vs-home-hi-block-head + .vs-home-hi-lead {
    margin: 0 0 1rem;
}

.vs-home-hi-lead {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #5c6e6d;
    margin: -0.25rem 0 1rem;
}

.vs-home-hi-features li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #3d4a49;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(14, 110, 108, 0.08);
}

.vs-home-hi-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vs-home-hi-features .bi {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1.15rem;
    color: var(--vs-teal);
}

.vs-home-hi-products li + li {
    margin-top: 0.5rem;
}

.vs-home-hi-product {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.5rem;
    margin: 0 -0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease;
}

.vs-home-hi-product:hover,
.vs-home-hi-product:focus-visible {
    background: rgba(31, 180, 174, 0.08);
}

.vs-home-hi-product:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.4);
    outline-offset: 2px;
}

.vs-home-hi-product-img-wrap {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 0.45rem;
    overflow: hidden;
    background: #eef5f4;
}

.vs-home-hi-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vs-home-hi-product-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.vs-home-hi-product-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f2322;
    line-height: 1.3;
}

.vs-home-hi-product-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vs-teal-dark);
}

.vs-home-hi-articles-wrap {
    position: relative;
    overflow: visible;
    padding: 0.35rem 2.65rem 1.5rem;
    margin: 0 -0.25rem;
}

@media (max-width: 575.98px) {
    .vs-home-hi-articles-wrap {
        padding: 0.35rem 2.35rem 1.5rem;
    }
}

/* Blog row: don’t clip carousel shadows (Swiper uses overflow:hidden) */
.vs-home-highlights .row.mt-4 {
    overflow: visible;
}

.vs-home-highlights .row.mt-4 .vs-home-hi-block {
    overflow: visible;
}

.vs-home-hi-articles-swiper.swiper {
    overflow: hidden;
    border-radius: 0;
    /* Large bottom inset: hover uses translateY(-3px) + ~36px blur — needs ~2rem+ */
    padding: 0.45rem 0 clamp(1.75rem, 5vw, 2.5rem);
    box-sizing: border-box;
}

.vs-home-hi-articles-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
    display: flex;
    overflow: visible;
    align-items: stretch;
    padding: 0.35rem 0 clamp(0.5rem, 2vw, 0.85rem);
}

.vs-home-hi-articles-swiper .swiper-slide > .vs-home-hi-article {
    flex: 1 1 auto;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    height: 100%;
}

.vs-home-hi-article {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 0.7rem;
    /* Don’t clip own box-shadow (overflow:hidden + radius crops shadows) */
    overflow: visible;
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 2px 16px rgba(14, 110, 108, 0.08);
    border: 1px solid rgba(14, 110, 108, 0.1);
    background: #fff;
}

.vs-home-hi-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(14, 110, 108, 0.14);
    border-color: rgba(31, 180, 174, 0.28);
}

.vs-home-hi-article:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.5);
    outline-offset: 3px;
}

.vs-home-hi-article-visual {
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    min-height: 7.5rem;
    overflow: hidden;
    border-radius: 0.7rem 0.7rem 0 0;
    background-image: var(--vs-hi-article);
    background-size: cover;
    background-position: center;
}

.vs-home-hi-article-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(31, 180, 174, 0.08) 50%,
        rgba(14, 110, 108, 0.14) 100%
    );
    pointer-events: none;
}

.vs-home-hi-article-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 1;
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vs-teal-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 180, 174, 0.35);
    box-shadow: 0 2px 10px rgba(14, 110, 108, 0.12);
}

.vs-home-hi-article-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 1rem 1.1rem;
    border-radius: 0 0 0.7rem 0.7rem;
    background: linear-gradient(180deg, #fbfcfc 0%, #ffffff 100%);
    border-top: 1px solid rgba(14, 110, 108, 0.08);
}

.vs-home-hi-article-date {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vs-teal);
    margin: 0;
}

.vs-home-hi-article-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.38;
    color: #0f2322;
    margin: 0;
    transition: color 0.15s ease;
    min-height: calc(0.9375rem * 1.38 * 3);
}

@media (min-width: 1200px) {
    .vs-home-hi-article-title {
        font-size: 0.8125rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        min-height: calc(0.8125rem * 1.38 * 2);
    }
}

.vs-home-hi-article:hover .vs-home-hi-article-title,
.vs-home-hi-article:focus-visible .vs-home-hi-article-title {
    color: var(--vs-teal-dark);
}

.vs-home-hi-article-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--vs-teal);
}

.vs-home-hi-article-cta .bi {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.vs-home-hi-article:hover .vs-home-hi-article-cta .bi {
    transform: translateX(3px);
}

.vs-home-hi-more {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--vs-teal);
    text-decoration: none;
}

.vs-home-hi-more:hover,
.vs-home-hi-more:focus-visible {
    color: var(--vs-teal-dark);
    text-decoration: underline;
}

.vs-home-hi-more .bi {
    font-size: 1.25rem;
    line-height: 1;
}

/* ——— Inner pages: categories · brands · products ——— */
.vs-page-categories,
.vs-page-brands,
.vs-page-products {
    flex-grow: 1;
    width: 100%;
    background: linear-gradient(180deg, #fbfcfc 0%, #ffffff 38%, #f9fdfc 100%);
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-page-categories {
    position: relative;
    overflow-x: hidden;
}

.vs-page-categories > .vs-category-intro,
.vs-page-categories > .container {
    position: relative;
    z-index: 1;
}

.vs-page-brands {
    position: relative;
    overflow-x: hidden;
}

.vs-page-brands > .vs-category-intro,
.vs-page-brands > .container {
    position: relative;
    z-index: 1;
}

.vs-product-filters-list {
    margin: 0;
    padding: 0;
}

a.vs-product-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    color: #0a3f3d;
    background: #fff;
    border: 1px solid rgba(31, 180, 174, 0.35);
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

a.vs-product-filter-pill:hover,
a.vs-product-filter-pill:focus-visible {
    color: var(--vs-teal-dark);
    border-color: rgba(31, 180, 174, 0.65);
    background: rgba(31, 180, 174, 0.08);
}

a.vs-product-filter-pill.is-active {
    color: #fff;
    background: var(--vs-teal);
    border-color: var(--vs-teal);
}

a.vs-product-filter-pill.is-active:hover,
a.vs-product-filter-pill.is-active:focus-visible {
    color: #fff;
    background: var(--vs-teal-dark);
    border-color: var(--vs-teal-dark);
}

/* Products index: category cards (replaces top filter pills) */
.vs-product-category-picker {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.vs-category-card--catalog-all {
    background-color: transparent;
    background-image: linear-gradient(
        145deg,
        var(--vs-teal) 0%,
        var(--vs-teal-dark) 52%,
        #0a524e 100%
    );
    background-size: 100% 100%;
    transition: background-size 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.vs-category-card--catalog-all:hover,
.vs-category-card--catalog-all:focus-visible {
    background-size: 108% 108%;
}

.vs-product-list-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1.25rem;
    max-width: 52rem;
}

a.vs-product-category-back {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--vs-teal-dark);
    text-decoration: none;
    transition: color 0.15s ease;
}

a.vs-product-category-back .bi {
    font-size: 1.35rem;
    line-height: 1;
    margin-left: -0.2rem;
}

a.vs-product-category-back:hover,
a.vs-product-category-back:focus-visible {
    color: var(--vs-teal);
    text-decoration: underline;
}

.vs-product-list-context {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f2322;
    letter-spacing: -0.02em;
}

.vs-product-subcategory-browse .vs-product-subcategory-group {
    margin-top: 2.5rem;
}

@media (min-width: 992px) {
    .vs-product-subcategory-browse .vs-product-subcategory-group {
        margin-top: 3rem;
    }
}

.vs-product-subcategory-group-title {
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    font-weight: 800;
    color: #0f2322;
    text-align: center;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

a.vs-product-category-parent-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vs-teal);
    text-decoration: none;
}

a.vs-product-category-parent-link:hover,
a.vs-product-category-parent-link:focus-visible {
    text-decoration: underline;
}

.vs-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(14, 110, 108, 0.12);
    background: #fff;
    box-shadow: 0 2px 16px rgba(14, 110, 108, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vs-product-card:hover {
    box-shadow: 0 10px 32px rgba(14, 110, 108, 0.12);
    transform: translateY(-3px);
}

.vs-product-card-visual {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #eef5f4;
}

.vs-product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.vs-product-card:hover .vs-product-card-img {
    transform: scale(1.04);
}

.vs-product-card-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 1;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5c2c2c;
    background: rgba(255, 248, 248, 0.95);
    border: 1px solid rgba(180, 80, 80, 0.35);
}

.vs-product-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1.15rem;
    flex: 1 1 auto;
}

.vs-product-card-brand {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vs-teal);
    margin: 0;
}

.vs-product-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
    min-height: calc(1.05rem * 1.3 * 3);
}

.vs-product-card-title a {
    color: #0f2322;
    text-decoration: none;
}

.vs-product-card-title a:hover,
.vs-product-card-title a:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-product-card-excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #5c6e6d;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: calc(0.8125rem * 1.5 * 2);
}

.vs-product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.65rem;
}

.vs-product-card-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f2322;
}

.vs-product-card-cta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--vs-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.vs-product-card-cta:hover,
.vs-product-card-cta:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-product-card:hover .vs-product-card-cta .bi {
    transform: translateX(3px);
}

.vs-product-card-cta .bi {
    transition: transform 0.2s ease;
}

/* ——— Product detail ——— */
.vs-product-detail {
    flex-grow: 1;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fbfcfc 0%, #ffffff 45%, #f9fdfc 100%);
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-product-detail > .container {
    position: relative;
    z-index: 1;
}

.vs-product-detail-gallery {
    position: sticky;
    top: 1rem;
}

@media (max-width: 991.98px) {
    .vs-product-detail-gallery {
        position: static;
    }
}

.vs-product-detail-main {
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(14, 110, 108, 0.12);
    background: #fff;
    box-shadow: 0 4px 24px rgba(14, 110, 108, 0.08);
}

.vs-product-detail-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.vs-product-detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.vs-product-detail-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vs-product-detail-thumb img {
    width: 4.25rem;
    height: 4.25rem;
    object-fit: cover;
    display: block;
}

.vs-product-detail-thumb:hover,
.vs-product-detail-thumb:focus-visible {
    border-color: rgba(31, 180, 174, 0.45);
    outline: none;
}

.vs-product-detail-thumb.is-active {
    border-color: var(--vs-teal);
    box-shadow: 0 0 0 1px rgba(31, 180, 174, 0.35);
}

.vs-product-detail-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vs-teal);
    margin: 0 0 0.35rem;
}

.vs-product-detail-title {
    font-size: clamp(1.45rem, 3.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #0f2322;
    margin: 0 0 1rem;
}

.vs-product-detail-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}

.vs-product-detail-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f2322;
}

.vs-product-detail-stock {
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.vs-product-detail-stock--ok {
    color: #1a6b4a;
}

.vs-product-detail-stock--no {
    color: #8a4a4a;
}

.vs-product-detail-meta {
    font-size: 0.875rem;
    margin: 0 0 1.25rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-product-detail-meta li + li {
    margin-top: 0.35rem;
}

.vs-product-detail-meta a {
    color: var(--vs-teal);
    font-weight: 600;
    text-decoration: none;
}

.vs-product-detail-meta a:hover,
.vs-product-detail-meta a:focus-visible {
    text-decoration: underline;
}

/* Product: phone + chat in one rounded teal bar (inner nav–style white copy) */
.vs-product-contact-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 0;
    border-radius: 1.125rem;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        var(--vs-teal) 0%,
        var(--vs-teal-dark) 52%,
        #0a524e 100%
    );
    box-shadow:
        0 4px 24px rgba(14, 110, 108, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vs-nav-phone--product-bar {
    flex: 1 1 15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 1.1rem 1.35rem;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    text-decoration: none;
    color: #fff;
    transition: background-color 0.15s ease;
}

.vs-nav-phone--product-bar:hover,
.vs-nav-phone--product-bar:focus-visible {
    opacity: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.vs-nav-phone--product-bar:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: -2px;
}

.vs-nav-phone--product-bar .vs-nav-phone-icon {
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1.75rem, 4vw, 2.15rem);
}

.vs-nav-phone--product-bar .vs-nav-phone-label {
    color: rgba(255, 255, 255, 0.78);
}

.vs-nav-phone--product-bar .vs-nav-phone-number {
    color: #fff;
    font-size: 1.0625rem;
}

.vs-product-contact-bar .vs-chat-channels--product-bar {
    flex: 1 1 12rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    margin: 0;
    padding: 0.85rem 1.1rem;
    background: rgba(0, 0, 0, 0.14);
}

.vs-chat-channels--product-bar .vs-chat-btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* Same brand colors as contact / default .vs-chat-btn--whatsapp & --viber */
.vs-chat-channels--product-bar .vs-chat-btn--whatsapp {
    background: #25d366;
    border-color: rgba(255, 255, 255, 0.45);
}

.vs-chat-channels--product-bar .vs-chat-btn--whatsapp:hover,
.vs-chat-channels--product-bar .vs-chat-btn--whatsapp:focus-visible {
    color: #fff;
    background: #1ebe57;
    border-color: rgba(255, 255, 255, 0.55);
    filter: none;
    transform: translateY(-1px);
}

.vs-chat-channels--product-bar .vs-chat-btn--viber {
    background: #7360f2;
    border-color: rgba(255, 255, 255, 0.4);
}

.vs-chat-channels--product-bar .vs-chat-btn--viber:hover,
.vs-chat-channels--product-bar .vs-chat-btn--viber:focus-visible {
    color: #fff;
    background: #5f4ddb;
    border-color: rgba(255, 255, 255, 0.55);
    filter: none;
    transform: translateY(-1px);
}

.vs-chat-channels--product-bar .vs-chat-btn-icon svg {
    color: #fff;
}

@media (max-width: 575.98px) {
    .vs-nav-phone--product-bar {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .vs-product-contact-bar .vs-chat-channels--product-bar {
        flex: 1 1 100%;
        justify-content: center;
    }
}

.vs-chat-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vs-chat-channels--inline {
    flex-direction: row;
    align-items: center;
}

.vs-chat-channels--stacked {
    flex-direction: column;
    align-items: stretch;
}

.vs-chat-channels--stacked .vs-chat-btn {
    justify-content: center;
}

.vs-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.35rem;
    border-radius: 9999px;
    font-size: 1.0625rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    line-height: 1.25;
    transition: filter 0.15s ease, transform 0.15s ease;
}

.vs-chat-btn:hover,
.vs-chat-btn:focus-visible {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.vs-chat-btn-icon {
    display: flex;
    flex-shrink: 0;
}

.vs-chat-btn-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.vs-chat-btn-label {
    white-space: nowrap;
}

.vs-chat-btn--whatsapp {
    background: #25d366;
}

.vs-chat-btn--viber {
    background: #7360f2;
}

/* Simple Icons SVG is black; invert to white on the purple button */
.vs-chat-btn-icon-img--viber {
    display: block;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.vs-contact-chat-channels {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-brand-hero .vs-chat-channels {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.vs-product-detail-body {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.72;
    margin-bottom: 1.5rem;
}

.vs-product-detail-body.text-secondary {
    color: #000000;
    font-weight: 600;
}

.vs-product-detail-body p:last-child {
    margin-bottom: 0;
}

.vs-inner-page-head {
    max-width: 42rem;
}

.vs-inner-page-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7b7a;
    margin: 0 0 0.5rem;
}

.vs-inner-page-title {
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #0f2322;
    margin: 0 0 0.65rem;
}

.vs-inner-page-lead {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    font-weight: 500;
    line-height: 1.65;
    color: #5c6e6d;
    margin: 0;
}

.vs-cat-thumb-card {
    --vs-cat-thumb-bg: #6b7b7a;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.85rem;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: var(--vs-cat-thumb-bg);
    box-shadow: 0 4px 22px rgba(14, 110, 108, 0.12);
}

.vs-cat-thumb-card:hover,
.vs-cat-thumb-card:focus-visible {
    color: #fff;
}

.vs-cat-thumb-card--light {
    color: #1f1f1f;
}

.vs-cat-thumb-card--light:hover,
.vs-cat-thumb-card--light:focus-visible {
    color: #1f1f1f;
}

.vs-cat-thumb-card-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.vs-cat-thumb-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.vs-cat-thumb-card:hover .vs-cat-thumb-card-img,
.vs-cat-thumb-card:focus-visible .vs-cat-thumb-card-img {
    transform: scale(1.08);
}

.vs-cat-thumb-card-scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.25) 100%
    );
    opacity: 1;
    transition: opacity 0.45s ease;
}

.vs-cat-thumb-card:hover .vs-cat-thumb-card-scrim,
.vs-cat-thumb-card:focus-visible .vs-cat-thumb-card-scrim {
    opacity: 0;
}

.vs-cat-thumb-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
}

.vs-cat-thumb-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    min-height: calc(1.2rem * 1.2 * 2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.vs-cat-thumb-card--light .vs-cat-thumb-card-title {
    text-shadow: none;
}

.vs-cat-thumb-card-list {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.92;
    margin: 0;
    padding: 0;
}

.vs-cat-thumb-card-list li + li {
    margin-top: 0.2rem;
}

.vs-cat-thumb-card--light .vs-cat-thumb-card-list {
    opacity: 0.88;
}

.vs-cat-thumb-card-cta {
    margin-top: auto;
    padding-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.vs-cat-thumb-card--light .vs-cat-thumb-card-cta {
    color: var(--vs-teal-dark);
}

.vs-cat-thumb-card .bi {
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.vs-cat-thumb-card:hover .bi,
.vs-cat-thumb-card:focus-visible .bi {
    transform: translateX(3px);
}

.vs-cat-thumb-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 2px;
}

.vs-cat-thumb-card--light:focus-visible {
    outline-color: rgba(31, 180, 174, 0.65);
}

.vs-brand-tile {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.85rem 1.15rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(14, 110, 108, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
    box-shadow: 0 2px 14px rgba(14, 110, 108, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vs-brand-tile:hover {
    border-color: rgba(31, 180, 174, 0.35);
    box-shadow: 0 6px 22px rgba(14, 110, 108, 0.12);
}

.vs-brand-tile-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    width: 100%;
    margin-bottom: 0.65rem;
}

.vs-brand-tile-logo {
    max-width: 100%;
    height: auto;
    max-height: 3.75rem;
    width: auto;
    object-fit: contain;
}

.vs-brand-tile-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #3d4a49;
    margin: 0;
    line-height: 1.35;
}

a.vs-brand-tile--link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

a.vs-brand-tile--link:hover .vs-brand-tile-name,
a.vs-brand-tile--link:focus-visible .vs-brand-tile-name {
    color: var(--vs-teal-dark);
}

.vs-brand-tile--link .vs-brand-tile-name {
    margin-bottom: 0.35rem;
}

.vs-brand-tile-more {
    margin-top: auto;
    padding-top: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--vs-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

a.vs-brand-tile--link:hover .vs-brand-tile-more,
a.vs-brand-tile--link:focus-visible .vs-brand-tile-more {
    color: var(--vs-teal-dark);
}

a.vs-brand-tile--link:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.45);
    outline-offset: 3px;
}

/* ——— Brand detail page (section only — body also uses .vs-page-brand for inner layout hooks) ——— */
section.vs-page-brand {
    position: relative;
    flex-grow: 1;
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fbfcfc 0%, #ffffff 50%, #f9fdfc 100%);
}

section.vs-page-brand > .vs-brand-hero,
section.vs-page-brand > .vs-brand-products-wrap {
    position: relative;
    z-index: 1;
}

.vs-brand-hero {
    border-bottom: 1px solid rgba(14, 110, 108, 0.12);
    background:
        radial-gradient(ellipse 80% 90% at 15% 0%, rgba(31, 180, 174, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 100% 30%, rgba(14, 110, 108, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #f2faf9 0%, #ffffff 100%);
}

.vs-brand-hero-logo-wrap {
    padding: 1rem 1.25rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid rgba(14, 110, 108, 0.1);
    box-shadow: 0 4px 24px rgba(14, 110, 108, 0.08);
}

.vs-brand-hero-logo {
    width: 100%;
    height: auto;
    max-height: 8rem;
    object-fit: contain;
    display: block;
}

.vs-brand-hero-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7b7a;
    margin: 0 0 0.35rem;
}

.vs-brand-hero-title {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #0f2322;
    margin: 0 0 0.5rem;
}

.vs-brand-hero-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--vs-teal-dark);
    margin: 0 0 1rem;
}

.vs-brand-hero-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a5a59;
    max-width: 40rem;
}

.vs-brand-hero-desc p:last-child {
    margin-bottom: 0;
}

.vs-brand-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vs-teal);
    text-decoration: none;
}

.vs-brand-hero-back:hover,
.vs-brand-hero-back:focus-visible {
    color: var(--vs-teal-dark);
    text-decoration: underline;
}

.vs-brand-products-wrap {
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-brand-products-title {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f2322;
    margin: 0 0 0.35rem;
}

.vs-brand-products-sub {
    font-size: 0.9rem;
}

.vs-brand-empty {
    border: 1px dashed rgba(14, 110, 108, 0.25);
    background: rgba(255, 255, 255, 0.6);
}

.vs-brand-empty-icon {
    font-size: 2.5rem;
    color: rgba(14, 110, 108, 0.35);
    display: block;
    margin-bottom: 0.75rem;
}

.vs-product-detail-brand a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(31, 180, 174, 0.45);
}

.vs-product-detail-brand a:hover,
.vs-product-detail-brand a:focus-visible {
    color: var(--vs-teal-dark);
    border-bottom-color: var(--vs-teal-dark);
}

/* ——— Blog: listing & article ——— */
.vs-page-blog {
    flex-grow: 1;
    width: 100%;
    background: linear-gradient(180deg, #fbfcfc 0%, #ffffff 40%, #f9fdfc 100%);
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(14, 110, 108, 0.12);
    background: #fff;
    box-shadow: 0 2px 18px rgba(14, 110, 108, 0.07);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.vs-blog-card:hover {
    box-shadow: 0 12px 40px rgba(14, 110, 108, 0.12);
    transform: translateY(-4px);
}

.vs-blog-card-visual {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef5f4;
}

.vs-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vs-blog-card:hover .vs-blog-card-img {
    transform: scale(1.04);
}

.vs-blog-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vs-teal-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 180, 174, 0.35);
    box-shadow: 0 2px 10px rgba(14, 110, 108, 0.1);
}

.vs-blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.1rem 1.15rem 1.25rem;
    flex: 1 1 auto;
}

.vs-blog-card-date {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vs-teal);
}

.vs-blog-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin: 0;
    min-height: calc(1.1rem * 1.35 * 3);
}

.vs-blog-card-title a {
    color: #0f2322;
    text-decoration: none;
}

.vs-blog-card-title a:hover,
.vs-blog-card-title a:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-blog-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6e6d;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    min-height: calc(0.875rem * 1.55 * 3);
}

.vs-blog-card-cta {
    margin-top: auto;
    padding-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--vs-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.vs-blog-card-cta:hover,
.vs-blog-card-cta:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-blog-article {
    flex-grow: 1;
    width: 100%;
    background: #fff;
}

.vs-blog-article-hero {
    position: relative;
    margin: 0;
}

.vs-blog-article-hero-media {
    position: relative;
    max-height: min(52vh, 28rem);
    overflow: hidden;
}

.vs-blog-article-hero-img {
    width: 100%;
    height: min(52vh, 28rem);
    object-fit: cover;
    display: block;
}

.vs-blog-article-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 35, 34, 0.15) 0%,
        rgba(15, 35, 34, 0.55) 100%
    );
    pointer-events: none;
}

.vs-blog-article-hero-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    padding-top: 2rem;
}

.vs-blog-article-hero-text {
    max-width: 48rem;
}

.vs-blog-article-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(31, 180, 174, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 0.65rem;
}

.vs-blog-article-title {
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 0.65rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.vs-blog-article-meta {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.vs-blog-article-meta-sep {
    opacity: 0.7;
}

.vs-blog-article-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #3d4a49;
}

.vs-blog-article-content p {
    margin-bottom: 1.1rem;
}

.vs-blog-article-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2322;
    margin: 1.75rem 0 0.75rem;
}

.vs-blog-article-content h2:first-child {
    margin-top: 0;
}

.vs-blog-article-content ul {
    margin: 0 0 1.1rem;
    padding-left: 1.25rem;
}

.vs-blog-article-content li {
    margin-bottom: 0.35rem;
}

.vs-blog-article-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14, 110, 108, 0.12);
}

.vs-blog-article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--vs-teal);
    text-decoration: none;
}

.vs-blog-article-back:hover,
.vs-blog-article-back:focus-visible {
    color: var(--vs-teal-dark);
    text-decoration: underline;
}

.vs-blog-article-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.55rem 1.1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--vs-teal);
    border: 1px solid var(--vs-teal);
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.vs-blog-article-cta:hover,
.vs-blog-article-cta:focus-visible {
    color: #fff;
    background: var(--vs-teal-dark);
    border-color: var(--vs-teal-dark);
}

/* ——— Services: listing & detail ——— */
.vs-page-services {
    flex-grow: 1;
    width: 100%;
    background: linear-gradient(180deg, #fbfcfc 0%, #ffffff 40%, #f9fdfc 100%);
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(14, 110, 108, 0.12);
    background: #fff;
    box-shadow: 0 2px 18px rgba(14, 110, 108, 0.07);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.vs-service-card:hover {
    box-shadow: 0 12px 40px rgba(14, 110, 108, 0.12);
    transform: translateY(-4px);
}

.vs-service-card-visual {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8f4f2;
}

.vs-service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vs-service-card:hover .vs-service-card-img {
    transform: scale(1.05);
}

.vs-service-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.15rem 1.2rem 1.25rem;
    flex: 1 1 auto;
}

.vs-service-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
    min-height: calc(1.1rem * 1.3 * 3);
}

.vs-service-card-title a {
    color: #0f2322;
    text-decoration: none;
}

.vs-service-card-title a:hover,
.vs-service-card-title a:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-service-card-lead {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6e6d;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    min-height: calc(0.875rem * 1.55 * 4);
}

.vs-service-card-cta {
    margin-top: auto;
    padding-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--vs-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.vs-service-card-cta:hover,
.vs-service-card-cta:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-service-detail {
    flex-grow: 1;
    width: 100%;
    background: #fff;
}

.vs-service-detail-hero {
    position: relative;
    margin: 0;
}

.vs-service-detail-hero-media {
    position: relative;
    max-height: min(48vh, 26rem);
    overflow: hidden;
}

.vs-service-detail-hero-img {
    width: 100%;
    height: min(48vh, 26rem);
    object-fit: cover;
    display: block;
}

.vs-service-detail-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 35, 34, 0.2) 0%,
        rgba(14, 110, 108, 0.55) 100%
    );
    pointer-events: none;
}

.vs-service-detail-hero-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
    padding-top: 2rem;
}

.vs-service-detail-hero-text {
    max-width: 48rem;
}

.vs-service-detail-title {
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 0.65rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.vs-service-detail-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 40rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.vs-service-detail-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #3d4a49;
}

.vs-service-detail-content p {
    margin-bottom: 1.1rem;
}

.vs-service-detail-content h2 {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2322;
    margin: 1.75rem 0 0.75rem;
}

.vs-service-detail-content h2:first-child {
    margin-top: 0;
}

.vs-service-detail-content ul {
    margin: 0 0 1.1rem;
    padding-left: 1.25rem;
}

.vs-service-detail-content li {
    margin-bottom: 0.35rem;
}

.vs-service-detail-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14, 110, 108, 0.12);
}

.vs-service-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--vs-teal);
    text-decoration: none;
}

.vs-service-detail-back:hover,
.vs-service-detail-back:focus-visible {
    color: var(--vs-teal-dark);
    text-decoration: underline;
}

.vs-service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.vs-service-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.6rem 1.15rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.vs-service-detail-btn--primary {
    color: #fff;
    background: var(--vs-teal);
    border: 1px solid var(--vs-teal);
}

.vs-service-detail-btn--primary:hover,
.vs-service-detail-btn--primary:focus-visible {
    color: #fff;
    background: var(--vs-teal-dark);
    border-color: var(--vs-teal-dark);
}

.vs-service-detail-btn--outline {
    color: var(--vs-teal-dark);
    background: #fff;
    border: 1px solid rgba(31, 180, 174, 0.45);
}

.vs-service-detail-btn--outline:hover,
.vs-service-detail-btn--outline:focus-visible {
    background: rgba(31, 180, 174, 0.08);
}

/* ——— Contact page ——— */
.vs-page-contact {
    flex-grow: 1;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fbfcfc 0%, #ffffff 45%, #f9fdfc 100%);
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
}

.vs-page-contact > .vs-category-intro,
.vs-page-contact > .container,
.vs-page-contact > .vs-map-section {
    position: relative;
    z-index: 1;
}

/* Hero: same pattern as home «Διάλεξε κατηγορία» (intro + header + floaters + dot grid) */
.vs-page-contact .vs-category-header-inner .vs-inner-page-eyebrow,
.vs-page-products .vs-category-header-inner .vs-inner-page-eyebrow,
.vs-page-categories .vs-category-header-inner .vs-inner-page-eyebrow,
.vs-page-brands .vs-category-header-inner .vs-inner-page-eyebrow,
.vs-page-blog .vs-category-header-inner .vs-inner-page-eyebrow,
.vs-page-services .vs-category-header-inner .vs-inner-page-eyebrow {
    margin-bottom: 0;
}

/* Inner listing heroes: flush under breadcrumb (no extra top gap) */
.vs-page-contact .vs-category-intro,
.vs-page-products .vs-category-intro,
.vs-page-categories .vs-category-intro,
.vs-page-brands .vs-category-intro,
.vs-page-blog .vs-category-intro,
.vs-page-services .vs-category-intro {
    padding-top: 0;
}

.vs-page-contact .vs-category-header,
.vs-page-products .vs-category-header,
.vs-page-categories .vs-category-header,
.vs-page-brands .vs-category-header,
.vs-page-blog .vs-category-header,
.vs-page-services .vs-category-header {
    padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2.75rem) clamp(2.5rem, 9vw, 4.5rem);
}

/* Contact cards: same white panel treatment as .vs-blog-card / listings */
.vs-contact-aside,
.vs-contact-form-wrap {
    position: relative;
    border-radius: 0.85rem;
    border: 1px solid rgba(14, 110, 108, 0.12);
    background: #fff;
    box-shadow: 0 2px 18px rgba(14, 110, 108, 0.07);
}

.vs-contact-aside {
    padding: 1.25rem 1.35rem;
    height: 100%;
}

.vs-contact-form-wrap {
    padding: 1.35rem 1.4rem 1.5rem;
}

.vs-contact-aside-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2322;
    margin: 0 0 1.15rem;
}

.vs-contact-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(14, 110, 108, 0.08);
}

.vs-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vs-contact-item-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--vs-teal-dark);
    background: rgba(31, 180, 174, 0.1);
}

.vs-contact-item-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7b7a;
    margin-bottom: 0.25rem;
}

.vs-contact-item-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #3d4a49;
}

.vs-contact-item-text a {
    color: var(--vs-teal);
    font-weight: 600;
    text-decoration: none;
}

.vs-contact-item-text a:hover,
.vs-contact-item-text a:focus-visible {
    color: var(--vs-teal-dark);
    text-decoration: underline;
}

.vs-contact-alert {
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
}

.vs-contact-form .form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f2322;
}

.vs-contact-form .form-control {
    border-radius: 0.5rem;
    border-color: rgba(14, 110, 108, 0.2);
}

.vs-contact-form .form-control:focus {
    border-color: rgba(31, 180, 174, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(31, 180, 174, 0.15);
}

.vs-contact-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vs-contact-submit {
    --bs-btn-font-weight: 700;
    padding: 0.6rem 1.35rem;
    border-radius: 0.5rem;
    color: #fff;
    background: var(--vs-teal);
    border: 1px solid var(--vs-teal);
}

.vs-contact-submit:hover,
.vs-contact-submit:focus-visible {
    color: #fff;
    background: var(--vs-teal-dark);
    border-color: var(--vs-teal-dark);
}

/* ——— Google Maps embed ——— */
.vs-map-section {
    width: 100%;
    padding: 2.25rem 0 2.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
    border-top: 1px solid rgba(14, 110, 108, 0.08);
}

.vs-page-contact .vs-map-section {
    border-top: none;
    padding-top: 0;
    padding-bottom: 2.5rem;
    background: transparent;
}

.vs-map-section--compact {
    padding: 1.75rem 0 2.25rem;
}

.vs-map-section-head {
    max-width: 40rem;
    margin-bottom: 1.35rem;
}

.vs-map-section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2322;
    margin: 0 0 0.5rem;
}

.vs-map-section-title--inline {
    text-align: center;
    margin-bottom: 0.35rem;
}

.vs-map-section-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #5c6e6d;
    margin: 0 auto;
    max-width: 36rem;
    text-align: center;
}

.vs-map-section--compact .vs-map-section-lead {
    margin-bottom: 1rem;
}

.vs-map-embed {
    position: relative;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(14, 110, 108, 0.12);
    box-shadow: 0 4px 24px rgba(14, 110, 108, 0.08);
    aspect-ratio: 16 / 9;
    min-height: 220px;
    background: #e8f0ef;
}

.vs-map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vs-map-section-note {
    margin-top: 1rem;
}

.vs-map-section-note a {
    color: var(--vs-teal);
    font-weight: 600;
    text-decoration: none;
}

.vs-map-section-note a:hover,
.vs-map-section-note a:focus-visible {
    color: var(--vs-teal-dark);
    text-decoration: underline;
}

/* ——— Breadcrumb (non–home pages) ——— */
.vs-breadcrumb-wrap {
    flex-shrink: 0;
    background: linear-gradient(180deg, #fafdfc 0%, #f5faf9 100%);
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
    padding: 0.5rem 0;
}

.vs-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.vs-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.vs-breadcrumb li:not(:last-child)::after {
    content: "/";
    color: rgba(14, 110, 108, 0.35);
    font-weight: 500;
    margin: 0 0.4rem;
}

.vs-breadcrumb a {
    color: var(--vs-teal);
    text-decoration: none;
}

.vs-breadcrumb a:hover,
.vs-breadcrumb a:focus-visible {
    color: var(--vs-teal-dark);
    text-decoration: underline;
}

.vs-breadcrumb [aria-current="page"] {
    color: #5c6e6d;
    font-weight: 600;
}

/* ——— 404 page ——— */
.vs-page-404 {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: min(78vh, 52rem);
    padding: clamp(2.5rem, 8vw, 5rem) 1rem clamp(3rem, 10vw, 6rem);
    box-sizing: border-box;
    background:
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(31, 180, 174, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(14, 110, 108, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #f5faf9 0%, #ffffff 55%, #fbfcfc 100%);
    border-bottom: 1px solid rgba(14, 110, 108, 0.1);
    position: relative;
    overflow: hidden;
}

.vs-page-404::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image: radial-gradient(rgba(31, 180, 174, 0.12) 1px, transparent 1px);
    background-size: 16px 16px;
    mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
}

.vs-page-404-inner {
    position: relative;
    z-index: 1;
    max-width: 38rem;
}

.vs-page-404-code {
    font-size: clamp(5rem, 22vw, 12rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
    margin: 0 0 0.75rem;
    background: linear-gradient(135deg, #1fb4ae 0%, var(--vs-teal-dark) 55%, #126f6d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 24px rgba(14, 110, 108, 0.2));
}

.vs-page-404-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #0f2322;
    margin: 0 0 1rem;
}

.vs-page-404-lead {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #5c6e6d;
    margin: 0 0 0.65rem;
}

.vs-page-404-lead-en {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    color: #8a9695;
    margin: 0 0 2rem;
}

.vs-page-404-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff !important;
    background: linear-gradient(135deg, var(--vs-teal) 0%, var(--vs-teal-dark) 100%);
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(14, 110, 108, 0.28);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.vs-page-404-btn:hover,
.vs-page-404-btn:focus-visible {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14, 110, 108, 0.35);
    filter: brightness(1.03);
}

.vs-page-404-btn:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.55);
    outline-offset: 3px;
}

/* ——— Social strip (above footer) ——— */
.vs-social-strip {
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--vs-teal-dark) 0%, var(--vs-teal) 48%, #126f6d 100%);
    color: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 16px rgba(14, 110, 108, 0.12);
}

.vs-social-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    padding: 0.65rem 0.75rem;
    min-height: 2.75rem;
}

@media (min-width: 768px) {
    .vs-social-strip-inner {
        padding: 0.75rem 1rem;
    }
}

.vs-social-strip-text {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
    max-width: 26rem;
}

.vs-social-strip-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.vs-social-strip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.vs-social-strip-link:hover,
.vs-social-strip-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.vs-social-strip-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 2px;
}

.vs-social-strip-icon {
    display: flex;
    font-size: 1.05rem;
    line-height: 1;
}

/* ——— Footer (4-column reference layout: brand + legal | nav | nav | contact + legal) ——— */
.vs-footer {
    flex-shrink: 0;
    background: var(--vs-white);
    color: #1a1a1a;
    border-top: 1px solid rgba(14, 110, 108, 0.12);
}

.vs-footer-inner {
    padding: 2.5rem 0.75rem 2.25rem;
}

@media (min-width: 992px) {
    .vs-footer-inner {
        padding: 3rem 1rem 2.5rem;
    }
}

.vs-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--vs-teal);
    text-decoration: none;
    text-transform: lowercase;
}

.vs-footer-logo-tagline {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.25;
    color: #6b7b7a;
    text-transform: none;
}

.vs-footer-logo-img {
    display: block;
    width: 3rem;
    height: auto;
    flex-shrink: 0;
}

.vs-footer-logo-text {
    line-height: 1.15;
}

.vs-footer-logo:hover,
.vs-footer-logo:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-footer-legal {
    max-width: 22rem;
}

.vs-footer-legal-line {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #6b7b7a;
    margin-bottom: 0;
}

.vs-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.vs-footer-nav-link {
    display: inline-block;
    font-size: 0.9375rem;
    line-height: 1.4;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.vs-footer-nav-link:hover,
.vs-footer-nav-link:focus-visible {
    color: var(--vs-teal);
}

.vs-footer-phone {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.vs-footer-phone a {
    color: #1a1a1a;
    text-decoration: none;
}

.vs-footer-phone a:hover,
.vs-footer-phone a:focus-visible {
    color: var(--vs-teal);
}

.vs-footer-email {
    font-size: 0.9375rem;
    line-height: 1.4;
}

.vs-footer-email a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.vs-footer-email a:hover,
.vs-footer-email a:focus-visible {
    color: var(--vs-teal);
    border-bottom-color: rgba(31, 180, 174, 0.45);
}

.vs-footer-lang-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7b7a;
}

.vs-footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vs-footer-legal-links a {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #8a9695;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.vs-footer-legal-links a:hover,
.vs-footer-legal-links a:focus-visible {
    color: var(--vs-teal-dark);
}

/* Copyright + dev: same container as columns — no extra strip */
.vs-footer-meta {
    margin-top: 1.75rem;
    padding-top: 0.25rem;
}

@media (min-width: 992px) {
    .vs-footer-meta {
        margin-top: 2rem;
    }
}

.vs-footer-copyright {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #6b7b7a;
    font-weight: 500;
}

/* Stacked “Developed by” / icon + name — transparent, black text (icon via filter) */
.vs-footer-dev {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: #1a1a1a;
    background: transparent;
    border: none;
    box-shadow: none;
}

.vs-footer-dev:hover,
.vs-footer-dev:focus-visible {
    color: #1a1a1a;
}

.vs-footer-dev:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.45);
    outline-offset: 3px;
    border-radius: 0.2rem;
}

.vs-footer-dev-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.2;
    opacity: 0.85;
}

.vs-footer-dev-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.vs-footer-dev-name {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #1a1a1a;
}

/* fossa.svg is white — render as black on light footer */
.vs-footer-dev-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.vs-footer-dev:hover .vs-footer-dev-icon,
.vs-footer-dev:focus-visible .vs-footer-dev-icon {
    transform: scale(1.28);
}

/* ——— Hero (carousel backgrounds) ——— */
.vs-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: clamp(19rem, 52vh, 34rem);
    padding-block: 2.25rem;
    padding-inline: 0;
    overflow: hidden;
    color: var(--vs-white);
}

body:has(main > .vs-hero:first-child) .vs-hero {
    padding-top: calc(var(--vs-announcement-height) + var(--vs-header-height) + var(--vs-hero-pad-y));
    padding-bottom: var(--vs-hero-pad-y);
}

.vs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vs-hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.1s ease-in-out;
    pointer-events: none;
}

.vs-hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.vs-hero-slide-inner {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    will-change: transform;
}

.vs-hero-slide.is-active .vs-hero-slide-inner {
    animation: vs-hero-kenburns 9s ease-in-out infinite alternate;
}

/* Full-slide click target. Only the active slide receives clicks thanks to
   its higher z-index; inactive slides keep pointer-events:none. The overlay
   and hero-content sit above this link, so the overlay text/CTA button still
   win click priority over this fallback link. */
.vs-hero-slide-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: auto;
    text-decoration: none;
    color: transparent;
    background: transparent;
}

.vs-hero-slide-link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: -6px;
    border-radius: 4px;
}

.vs-hero-slide:not(.is-active) .vs-hero-slide-link {
    pointer-events: none;
}

@keyframes vs-hero-kenburns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vs-hero-slide-inner {
        animation: none !important;
    }
}

.vs-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: var(--vs-hero-overlay);
    pointer-events: none;
}

/* Let Bootstrap .container handle width, max-width, horizontal margin (centered) and gutters */
.vs-hero-content {
    position: relative;
    z-index: 4;
}

/* Grid: all panels share one cell → row height = tallest slide (fixes huge gap above vs cramped below) */
.vs-hero-text-stack {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 40rem;
    margin-left: 0;
    margin-right: auto;
    isolation: isolate;
}

.vs-hero-text-panel {
    grid-area: 1 / 1;
    position: relative;
    place-self: start stretch;
    opacity: 0;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    transition: opacity 1.1s ease-in-out;
    pointer-events: none;
    text-align: inherit;
}

.vs-hero-text-panel.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.vs-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
}

.vs-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--vs-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.vs-hero-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
    .vs-hero {
        padding-block: 3rem;
        min-height: clamp(22rem, 56vh, 40rem);
    }

    body:has(main > .vs-hero:first-child) .vs-hero {
        padding-top: calc(var(--vs-announcement-height) + var(--vs-header-height) + var(--vs-hero-pad-y));
        padding-bottom: var(--vs-hero-pad-y);
    }

    .vs-hero-lead {
        font-size: 1.125rem;
    }
}

main > .vs-hero:first-child + .vs-category-section .vs-category-intro {
    padding-top: 0;
}

/* ——— Administration (CRM) ——— */
body.vs-page-admin-login {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(165deg, #f4faf9 0%, #ffffff 42%, #eef8f7 100%);
}

body.vs-page-admin-login .vs-admin-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.vs-page-admin-login .vs-admin-layout-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.vs-admin-layout-foot {
    flex-shrink: 0;
    padding: 1rem 1rem 1.25rem;
    border-top: 1px solid rgba(14, 110, 108, 0.1);
    background: rgba(255, 255, 255, 0.45);
}

.vs-admin-login {
    width: 100%;
    max-width: min(32rem, 100%);
}

.vs-admin-login-card {
    border-radius: 1rem;
    border: 1px solid rgba(14, 110, 108, 0.12) !important;
}

.vs-admin-login-logo-wrap {
    width: auto;
    max-width: 12rem;
    height: auto;
    min-height: 0;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(14, 110, 108, 0.12);
    box-shadow: 0 6px 24px rgba(14, 110, 108, 0.1);
}

.vs-admin-login-logo-img {
    display: block;
    width: 100%;
    max-width: 11rem;
    height: auto;
    aspect-ratio: 280 / 237;
    object-fit: contain;
}

.vs-admin-login-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f2322;
}

.vs-admin-login-submit {
    --bs-btn-bg: var(--vs-teal);
    --bs-btn-border-color: var(--vs-teal);
    --bs-btn-hover-bg: var(--vs-teal-dark);
    --bs-btn-hover-border-color: var(--vs-teal-dark);
    padding-block: 0.65rem;
    border-radius: 0.5rem;
}

.vs-admin-login-foot a {
    color: var(--vs-teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.vs-admin-login-foot a:hover,
.vs-admin-login-foot a:focus-visible {
    text-decoration: underline;
}

/* CRM dashboard (top bar + main) */
body.vs-page-admin-dashboard {
    min-height: 100vh;
}

.vs-admin-app--topbar {
    min-height: 100vh;
}

/* ——— CRM top bar (no border; glass user control like site footer lang) ——— */
.vs-crm-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 253, 253, 0.88) 100%);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 1px 0 rgba(14, 110, 108, 0.06);
}

.vs-crm-topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "brand nav actions";
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 0.65rem clamp(1rem, 3vw, 1.75rem);
    max-width: 100%;
}

.vs-crm-topbar-burger--area {
    justify-self: start;
    align-self: center;
}

.vs-crm-topbar-burger {
    border-radius: 0.5rem;
    padding: 0.35rem 0.45rem;
    line-height: 1;
    border: none !important;
    background: transparent;
    color: #0a0a0a;
    box-shadow: none !important;
}

.vs-crm-topbar-burger:hover,
.vs-crm-topbar-burger:focus-visible {
    background: rgba(31, 180, 174, 0.1);
    color: #0a0a0a;
}

.vs-crm-topbar-burger:focus,
.vs-crm-topbar-burger:active {
    box-shadow: none !important;
}

.vs-crm-topbar-burger:focus-visible {
    outline: 2px solid rgba(14, 110, 108, 0.35);
    outline-offset: 2px;
}

.vs-crm-topbar-burger-icon {
    display: block;
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 700;
    -webkit-text-stroke: 0.65px currentColor;
    paint-order: stroke fill;
}

.vs-crm-topbar-brand--area {
    grid-area: brand;
    min-width: 0;
    justify-self: start;
}

.vs-crm-topbar-nav--area {
    grid-area: nav;
    justify-self: center;
}

.vs-crm-topbar-actions--area {
    grid-area: actions;
    justify-self: end;
}

.vs-crm-topbar-brand {
    flex-shrink: 0;
}

.vs-crm-topbar-logo-link {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem 0.65rem;
    text-decoration: none;
    color: #0f2322;
}

.vs-crm-topbar-logo-link:hover,
.vs-crm-topbar-logo-link:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-crm-topbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2rem;
}

.vs-crm-topbar-logo img {
    width: 100%;
    height: auto;
    max-height: 2rem;
    object-fit: contain;
}

.vs-crm-topbar-title {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.2rem 0.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 0.9375rem;
    line-height: 1.2;
}

.vs-crm-topbar-title-name {
    font-weight: 800;
}

.vs-crm-topbar-title-sep {
    color: rgba(14, 110, 108, 0.35);
    font-weight: 700;
}

.vs-crm-topbar-title-crm {
    color: var(--vs-teal-dark);
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vs-crm-topbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    min-width: 0;
}

.vs-crm-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2a3432;
    text-decoration: none;
    border: none;
    background: transparent;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.vs-crm-topbar-link .bi {
    font-size: 1rem;
    opacity: 0.85;
}

.vs-crm-topbar-link:hover,
.vs-crm-topbar-link:focus-visible {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

.vs-crm-topbar-link.is-active {
    background: rgba(31, 180, 174, 0.16);
    color: var(--vs-teal-dark);
}

.vs-crm-topbar-link--muted {
    color: #5a6a68;
    font-weight: 600;
}

.vs-crm-topbar-link--muted:hover,
.vs-crm-topbar-link--muted:focus-visible {
    color: var(--vs-teal-dark);
}

.vs-crm-topbar-link--disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.vs-crm-topbar-actions {
    flex-shrink: 0;
}

/* User dropdown: same glass-on-light treatment as footer language */
.vs-crm-topbar .vs-crm-user-dd {
    z-index: 1060;
}

.vs-crm-topbar .vs-crm-user-btn.vs-glass-toggle {
    max-width: min(16rem, 72vw);
    padding: 0.42rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(14, 110, 108, 0.14);
    color: var(--vs-text-on-white);
    box-shadow: 0 2px 12px rgba(14, 110, 108, 0.06);
}

.vs-crm-topbar .vs-crm-user-btn.vs-glass-toggle:hover,
.vs-crm-topbar .vs-crm-user-btn.vs-glass-toggle:focus-visible,
.vs-crm-topbar .vs-crm-user-btn.vs-glass-toggle.show {
    background: rgba(31, 180, 174, 0.08);
    border-color: rgba(14, 110, 108, 0.28);
    color: var(--vs-teal-dark);
}

.vs-crm-topbar .vs-crm-user-dd .dropdown-toggle::after {
    display: none;
}

.vs-crm-user-ico {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--vs-teal-dark);
    opacity: 0.9;
}

.vs-crm-user-name {
    display: inline-block;
    max-width: 10rem;
    vertical-align: middle;
}

.vs-crm-user-chevron {
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    margin-left: 0.1rem;
    border-right: 2px solid rgba(14, 110, 108, 0.55);
    border-bottom: 2px solid rgba(14, 110, 108, 0.55);
    transform: rotate(45deg);
    margin-top: -0.15rem;
}

.vs-crm-topbar .vs-glass-menu {
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(14, 110, 108, 0.12) !important;
    box-shadow: 0 12px 40px rgba(14, 110, 108, 0.14);
    margin-top: 0.45rem !important;
    min-width: 12.5rem;
    padding: 0.35rem !important;
}

.vs-crm-topbar .vs-glass-item {
    color: var(--vs-text-on-white);
    border-radius: 0.4rem;
}

.vs-crm-topbar .vs-glass-item:hover,
.vs-crm-topbar .vs-glass-item:focus {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

.vs-crm-topbar .dropdown-item.text-danger {
    color: #b42318 !important;
}

.vs-crm-topbar .dropdown-item.text-danger:hover,
.vs-crm-topbar .dropdown-item.text-danger:focus {
    background: rgba(180, 35, 24, 0.08);
    color: #8f1c14 !important;
}

@media (max-width: 991.98px) {
    /* True viewport center for logo + title: side controls stay left/right; unequal widths no longer shift the mark */
    .vs-crm-topbar-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        min-height: 3.35rem;
        gap: 0.5rem;
    }

    .vs-crm-topbar-burger--area,
    .vs-crm-topbar-brand--area,
    .vs-crm-topbar-actions--area {
        grid-area: unset;
    }

    .vs-crm-topbar-burger--area {
        flex: 0 0 auto;
        position: relative;
        z-index: 2;
    }

    .vs-crm-topbar-actions--area {
        flex: 0 0 auto;
        position: relative;
        z-index: 2;
        margin-left: auto;
    }

    .vs-crm-topbar-brand--area {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: max-content;
        max-width: min(78vw, calc(100% - 6.5rem));
        min-width: 0;
        pointer-events: auto;
    }

    .vs-crm-topbar-logo-link {
        justify-content: center;
    }
}

/* CRM mobile menu (offcanvas) */
.vs-crm-menu-offcanvas {
    --bs-offcanvas-width: min(20rem, 92vw);
    z-index: 1045;
    background: #fbfdfd;
    box-shadow: 0.35rem 0 1.5rem rgba(14, 110, 108, 0.12);
}

.vs-crm-offcanvas-title {
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #000;
    line-height: 1.25;
}

.vs-crm-offcanvas-brand-img {
    display: flex;
    align-items: center;
    width: 2rem;
    height: 1.75rem;
}

.vs-crm-offcanvas-brand-img img {
    width: 100%;
    height: auto;
    max-height: 1.75rem;
    object-fit: contain;
}

a.vs-crm-offcanvas-link.nav-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #2a3432;
    padding: 0.55rem 0.75rem;
}

a.vs-crm-offcanvas-link.nav-link:hover,
a.vs-crm-offcanvas-link.nav-link:focus-visible {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

a.vs-crm-offcanvas-link.nav-link.active {
    background: rgba(31, 180, 174, 0.16);
    color: var(--vs-teal-dark);
}

.vs-admin-login-logo-wrap--sm {
    width: auto;
    max-width: 4rem;
    height: auto;
    min-height: 0;
    padding: 0.25rem 0.35rem;
    margin: 0;
}

.vs-admin-login-logo-wrap--sm .vs-admin-login-logo-img {
    width: 100%;
    max-width: 3.5rem;
    height: auto;
    aspect-ratio: 280 / 237;
    object-fit: contain;
}

a.vs-crm-side-link {
    border-radius: 0.5rem;
    color: #2a3432;
    font-weight: 600;
    font-size: 0.9375rem;
}

a.vs-crm-side-link:hover,
a.vs-crm-side-link:focus-visible {
    background: rgba(31, 180, 174, 0.1);
    color: var(--vs-teal-dark);
}

a.vs-crm-side-link.active {
    background: rgba(31, 180, 174, 0.18);
    color: var(--vs-teal-dark);
}

.vs-crm-dash-tile {
    border-radius: 0.75rem;
}

.vs-crm-dash-icon {
    background: rgba(31, 180, 174, 0.12);
    color: var(--vs-teal-dark);
}

.vs-crm-dash-icon .bi {
    font-size: 1.25rem;
}

a.text-reset:hover .vs-crm-dash-tile {
    box-shadow: 0 0.35rem 1.25rem rgba(14, 110, 108, 0.14);
    transform: translateY(-1px);
}

a.text-reset .vs-crm-dash-tile {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* CRM file manager: breadcrumb path (only above files table card) */
.vs-crm-files-path-bar {
    padding: 0.85rem 1rem 0.95rem;
    background: linear-gradient(135deg, rgba(14, 110, 108, 0.07) 0%, rgba(31, 180, 174, 0.06) 100%);
    border-radius: 0.5rem;
    border: 1px solid rgba(14, 110, 108, 0.14);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.vs-crm-files-path-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #5c6e6d;
    margin-bottom: 0.5rem;
}

/* Use div/span (not ol/li) so browser never shows ordered-list numbers on separators */
.vs-crm-files-path-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 0.35rem;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.vs-crm-files-path-item {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.vs-crm-files-path-sep {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0 0.05rem;
    color: rgba(92, 110, 109, 0.5);
    font-size: 0.75rem;
    line-height: 1;
    user-select: none;
}

.vs-crm-files-path-link {
    color: #0e6e6c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(14, 110, 108, 0.35);
    padding-bottom: 0.05rem;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    border-radius: 0.2rem;
    padding: 0.15rem 0.35rem;
    margin: -0.15rem -0.35rem;
}

.vs-crm-files-path-link:hover {
    color: #063d3c;
    border-bottom-color: rgba(14, 110, 108, 0.65);
    background: rgba(255, 255, 255, 0.45);
}

.vs-crm-files-path-link:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.55);
    outline-offset: 2px;
}

.vs-crm-files-path-current {
    font-weight: 700;
    color: #1a2e2d;
    padding: 0.15rem 0.35rem;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 0.3rem;
    border: 1px solid rgba(14, 110, 108, 0.12);
}

/* CRM upload modal (drag & drop, multi-file queue) */
.vs-crm-upload-card {
    border-left: 3px solid rgba(31, 180, 174, 0.45);
}

#crmUploadModal .modal-content {
    border-radius: 0.65rem;
    overflow: hidden;
}

.vs-crm-upload-dropzone {
    min-height: 11rem;
    border: 2px dashed rgba(14, 110, 108, 0.38);
    background: linear-gradient(165deg, rgba(14, 110, 108, 0.06) 0%, rgba(255, 255, 255, 0.65) 55%, rgba(31, 180, 174, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.vs-crm-upload-dropzone:hover {
    border-color: rgba(14, 110, 108, 0.6);
    box-shadow: 0 0.35rem 1rem rgba(14, 110, 108, 0.08);
}

.vs-crm-upload-dropzone:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.55);
    outline-offset: 3px;
}

.vs-crm-upload-dropzone--active {
    border-color: #1fb4ae;
    border-style: solid;
    background: rgba(31, 180, 174, 0.1);
    box-shadow: 0 0 0 4px rgba(31, 180, 174, 0.12);
    transform: scale(1.01);
}

.vs-crm-upload-dropzone-icon {
    font-size: 2.35rem;
    color: rgba(14, 110, 108, 0.55);
    margin-bottom: 0.35rem;
    line-height: 1;
}

.vs-crm-upload-queue {
    max-height: 14rem;
    overflow-y: auto;
}

.vs-crm-upload-queue-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.vs-crm-upload-queue-item:last-child {
    border-bottom: none;
}

/* CRM file manager table */
.vs-crm-files-table tbody a:not(.text-decoration-none) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.vs-crm-files-table tbody a.text-decoration-none {
    text-decoration: none;
}

.vs-crm-files-table tbody .btn-link {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.vs-crm-files-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5c6e6d;
    font-weight: 700;
}

.vs-crm-files-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    vertical-align: middle;
}

.vs-crm-files-thumb--doc {
    width: 56px;
    height: 56px;
    min-width: 56px;
}

.vs-crm-files-thumb-link:focus-visible {
    outline: 2px solid rgba(31, 180, 174, 0.55);
    outline-offset: 2px;
    border-radius: 0.35rem;
}

.vs-crm-preview-iframe {
    min-height: min(75vh, 720px);
    background: #fff;
}
