/* assets/css/fs-cohesion.css */
/* Cohesie laag voor feyen.shop (Unify “skin” + sectie flow)
   NB: deze file definieert de traditionele feyen.shop tokens. */

:root {
    /* Traditionele feyen.shop tokens */
    --brand: #275D38; /* Feyen groen primair */
    --brand-2: #7A9A01; /* Feyen groen secundair */
    --accent: #DC4405; /* Feyen oranje primair */
    --accent-light: #EA7600; /* Feyen oranje secundair */
    --ink: #3D3D3D; /* donkergrijs voor tekst */
    --muted: #6b7280; /* subtiel grijs voor secundaire tekst */
    --bg: #f9fafb; /* zachte achtergrondkleur */
    --card: #ffffff; /* witte kaartachtergrond */
    --ring: rgba(39, 93, 56, .3); /* zachte groene schaduw */
    --ring-strong: rgba(39, 93, 56, .55);

    /* Handige rgb-varianten voor rgba() */
    --brand-rgb: 39, 93, 56;
    --brand-2-rgb: 122, 154, 1;
    --accent-rgb: 220, 68, 5;
    --accent-light-rgb: 234, 118, 0;

    /* Layout tokens (blijven gelijk) */
    --border: rgba(14, 24, 39, .08);
    --shadow: 0 12px 35px rgba(11, 18, 32, .08);
    --radius: 16px;

    /* Backward compat (oude variabelen) */
    --feyen-orange: var(--accent);
    --feyen-dark: var(--ink);
}

/* Basis */
body {
    background: var(--bg);
    color: var(--ink);
}

/* Progress bar bovenin (sticky) */
.fs-top-progress {
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 3px;
    background: rgba(11, 18, 32, .06);
}

.fs-top-progress > i {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(
            90deg,
            rgba(var(--accent-rgb), 0),
            rgba(var(--accent-rgb), 1),
            rgba(var(--accent-rgb), 0)
    );
    transition: width .08s linear;
}

/* Subtiele accentlijn onder navbar */
.fs-accent {
    height: 4px;
    background: linear-gradient(
            90deg,
            rgba(var(--accent-rgb), 0),
            rgba(var(--accent-rgb), 1),
            rgba(var(--accent-rgb), 0)
    );
}

/* Page wrap */
.fs-page-wrap {
    padding-bottom: 10px;
    min-height: 100vh;
}

/* Container iets rustiger */
.container {
    max-width: 1200px;
}

/* Unify “witte blokken” upgraden */
.g-bg-white,
.u-shadow-v1-1,
.u-shadow-v1-3 {
    background: var(--card) !important;
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
}

/* Buttons moderner */
.feyen-button,
.u-btn-primary,
.u-btn-deeporange {
    border-radius: 12px !important;
    font-weight: 700;
    letter-spacing: .2px;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.feyen-button:hover,
.u-btn-primary:hover,
.u-btn-deeporange:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(var(--accent-rgb), .18);
    filter: brightness(1.01);
}

/* Typografie iets strakker */
h1, h2, h3, h4, h5 {
    letter-spacing: .2px;
}

/* Slider / wrappers afronden */
#carouselExampleIndicators,
.rev_slider_wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: #000;
}

.carousel .carousel-item {
    background-size: cover;
    background-position: center center;
}

/* === Cohesie laag: secties + overgangen === */
.fs-section {
    position: relative;
    padding: 26px 0;
    isolation: isolate;
}

.fs-section-inner {
    position: relative;
    padding-top: 10px;
}

/* Reveal helpers */
.fs-reveal {
    opacity: 1;
    transform: none;
}

.fs-fade-in {
    animation: fsFadeIn .22s ease-out both;
}

@keyframes fsFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky mini “Inhoud” (TOC) */
.fs-toc {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
    width: 280px;
    max-width: calc(100vw - 36px);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(14, 24, 39, .10);
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(11, 18, 32, .12);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.fs-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-bottom: 1px solid rgba(14, 24, 39, .08);
}

.fs-toc-title {
    font-weight: 900;
    letter-spacing: .2px;
    margin: 0;
    font-size: 13px;
}

.fs-toc-toggle {
    border: 0;
    background: rgba(var(--accent-rgb), .10);
    border: 1px solid rgba(var(--accent-rgb), .22);
    border-radius: 12px;
    padding: 6px 10px;
    font-weight: 800;
    cursor: pointer;
    color: var(--ink);
}

.fs-toc-body {
    padding: 10px 10px 12px;
}

.fs-toc a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none !important;
    color: var(--ink);
    font-weight: 800;
    font-size: 13px;
}

.fs-toc a:hover {
    background: rgba(11, 18, 32, .04);
}

.fs-toc a.is-active {
    background: rgba(var(--brand-rgb), .10);
    border: 1px solid rgba(var(--brand-rgb), .18);
}

.fs-toc .fs-toc-icon {
    opacity: .75;
    margin-right: 6px;
}

.fs-toc.is-collapsed .fs-toc-body {
    display: none;
}

/* Op mobiel: kleiner en niet irritant */
@media (max-width: 768px) {
    .fs-toc {
        right: 12px;
        bottom: 12px;
        width: 240px;
    }
}

/* Kleine helper: zachtere “hard borders” die Unify soms gebruikt */
.g-brd-bottom {
    border-bottom-color: rgba(14, 24, 39, .08) !important;
}

/* === Section headers + flow connectors === */
.fs-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin: 0 auto 16px;
    width: min(1200px, 100%);
    padding: 0 15px;
}

.fs-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(61, 61, 61, .70);
}

.fs-section-kicker i {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-rgb), .12);
    border: 1px solid rgba(var(--brand-rgb), .22);
    color: rgba(61, 61, 61, .95);
    font-style: normal;
    font-weight: 900;
}

.fs-section-title {
    margin: 6px 0 0;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: .2px;
    color: var(--ink);
}

@media (min-width: 768px) {
    .fs-section-title {
        font-size: 34px;
    }
}

.fs-section-sub {
    margin: 10px 0 0;
    color: rgba(61, 61, 61, .78);
    line-height: 1.55;
    max-width: 70ch;
}

.fs-section-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.fs-section-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(14, 24, 39, .10);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 10px 24px rgba(11, 18, 32, .06);
    color: var(--ink);
    text-decoration: none !important;
    font-weight: 900;
    letter-spacing: .2px;
}

.fs-section-action:hover {
    border-color: rgba(var(--accent-rgb), .25);
    box-shadow: 0 16px 40px rgba(11, 18, 32, .10);
    transform: translateY(-1px);
}

.fs-section-action .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb), .10);
}

/* Connector (visuele flow tussen blokken) */
.fs-connector {
    width: min(1100px, 92%);
    margin: 18px auto 0;
    height: 34px;
    position: relative;
    pointer-events: none;
}

.fs-connector:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(
            180deg,
            rgba(var(--accent-rgb), 0),
            rgba(var(--accent-rgb), .45),
            rgba(var(--accent-rgb), 0)
    );
}

.fs-connector:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(var(--accent-rgb), .20);
    opacity: .85;
}

/* Op mobiel: minder groot */
@media (max-width: 768px) {
    .fs-section-head {
        margin-bottom: 10px;
    }

    .fs-section-action {
        padding: 9px 12px;
    }

    .fs-connector {
        height: 26px;
    }
}

/* =========================================
   Footer skin (zonder je HTML te slopen)
========================================= */

.fs-footer {
    position: relative;
    padding: 64px 0;
    background: rgba(255, 255, 255, .90);
    border-top: 1px solid rgba(14, 24, 39, .08);
}

.fs-footer:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(
            90deg,
            rgba(var(--accent-rgb), 0),
            rgba(var(--accent-rgb), 1),
            rgba(var(--accent-rgb), 0)
    );
    opacity: .75;
}

.fs-footer .container {
    position: relative;
}

.fs-footer .u-heading-v2-3--bottom {
    border-bottom-color: rgba(var(--accent-rgb), .35) !important;
}

.fs-footer h2,
.fs-footer .u-heading-v2__title {
    font-weight: 950 !important;
    letter-spacing: .2px;
    color: var(--ink) !important;
}

/* Tekst rustiger */
.fs-footer p,
.fs-footer address,
.fs-footer small {
    color: rgba(61, 61, 61, .78) !important;
}

/* Link styling */
.fs-footer a {
    color: rgba(61, 61, 61, .86) !important;
    text-decoration: none !important;
}

.fs-footer a:hover {
    color: var(--accent) !important;
}

/* Kolommen opmaken als “cards” */
.fs-footer .fs-footer-col {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(14, 24, 39, .08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(11, 18, 32, .06);
    padding: 18px 18px 14px;
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.fs-footer .fs-footer-col:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(11, 18, 32, .10);
    border-color: rgba(var(--accent-rgb), .18);
}

/* Social icons netter */
.fs-footer .u-icon-v3 {
    border-radius: 14px !important;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: 1px solid rgba(14, 24, 39, .10);
    background: rgba(11, 18, 32, .04) !important;
    color: rgba(61, 61, 61, .72) !important;
}

.fs-footer .u-icon-v3:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(11, 18, 32, .10);
    background: rgba(var(--accent-rgb), .10) !important;
    border-color: rgba(var(--accent-rgb), .25);
    color: rgba(61, 61, 61, .92) !important;
}

/* “Snel naar” lijst: minder hard, meer klikbaar */
.fs-footer .g-brd-bottom {
    border-bottom-color: rgba(14, 24, 39, .08) !important;
}

.fs-footer .fs-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background .15s ease, transform .15s ease;
}

.fs-footer .fs-footer-link:hover {
    background: rgba(11, 18, 32, .04);
    transform: translateX(1px);
}

.fs-footer .fs-footer-link i {
    opacity: .55;
}

/* Contact icon bubbles */
.fs-footer .fs-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-rgb), .10);
    border: 1px solid rgba(var(--brand-rgb), .18);
    color: rgba(61, 61, 61, .78);
}

/* Copyright footer */
.fs-copyright {
    background: #0b1220;
    color: rgba(255, 255, 255, .78);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.fs-copyright a {
    color: rgba(255, 255, 255, .75) !important;
}

.fs-copyright a:hover {
    color: #fff !important;
}

/* Mobile spacing */
@media (max-width: 991px) {
    .fs-footer {
        padding: 44px 0;
    }

    .fs-footer .fs-footer-col {
        margin-bottom: 14px;
    }
}

/* Steps */
.fs-step {
    display: none;
    opacity: 0;
    transform: translateY(6px);
}

.fs-step.is-active {
    display: block;
    opacity: 1;
    transform: none;
}

.fs-step.is-leaving {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
}

.fs-step.is-entering {
    opacity: 0;
    transform: translateY(6px);
}

.fs-step.is-entering.is-active {
    opacity: 1;
    transform: none;
    transition: opacity .22s ease, transform .22s ease;
}

/* Header */
.fs-checkout-header .fs-kicker {
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.fs-checkout-header .fs-title {
    margin: 6px 0 0;
    font-weight: 900;
}

.fs-checkout-header .fs-subtitle {
    margin-top: 6px;
    color: var(--muted);
}

.fs-step-pills {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fs-pill {
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .08);
    background: var(--card);
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.fs-pill .fs-pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(var(--brand-rgb), .25);
}

.fs-pill.is-active {
    border-color: rgba(var(--brand-rgb), .35);
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .12);
}

.fs-pill.is-active .fs-pill-dot {
    background: var(--brand);
}

/* Top progress bar (je had al #stepFormProgress) */
.fs-top-progress {
    height: 4px;
    background: rgba(0, 0, 0, .06);
    border-radius: 999px;
    overflow: hidden;
}

.fs-top-progress > i {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--brand);
    transition: width .22s ease;
}


.fs-checkout-header {
    margin-bottom: 22px;
}

.fs-checkout-header .fs-title {
    font-size: 38px;
    line-height: 1.05;
}

.fs-step-pills-wrap {
    display: flex;
    justify-content: flex-end;
}

.fs-step-pills {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(14, 24, 39, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 30px rgba(11, 18, 32, .06);
    backdrop-filter: blur(8px);
}

.fs-pill {
    white-space: nowrap;
    padding: 10px 14px;
}

/* Pills altijd naast elkaar */
.fs-step-pills {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

/* Knoppen mogen niet afbreken */
.fs-pill {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 9px 12px; /* iets compacter */
    font-size: 13px; /* iets kleiner */
}

/* Als het echt te krap wordt: horizontaal scrollen i.p.v. stapelen */
@media (max-width: 991px) {
    .fs-step-pills-wrap {
        justify-content: flex-start;
    }

    .fs-step-pills {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
    }

    .fs-step-pills::-webkit-scrollbar {
        height: 6px;
    }

    .fs-step-pills::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, .12);
        border-radius: 999px;
    }

    /* ================================
   Checkout header pills (FINAL)
   ================================ */
    /* Geef de rechter kolom meer ruimte en align mooi */
    .fs-checkout-header .row {
        align-items: center;
    }

    /* Maak het pill-blok compact en strak */
    .fs-step-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 12px !important;

        /* card-styling: minder “vette” padding */
        padding: 8px 10px !important;
        border-radius: 14px !important;
        border: 1px solid rgba(14, 24, 39, .08) !important;
        background: rgba(255, 255, 255, .92) !important;
        box-shadow: 0 10px 24px rgba(11, 18, 32, .06) !important;
    }

    /* Pills zelf: kleiner, strakker */
    .fs-pill {
        flex: 0 0 auto !important;
        white-space: nowrap !important;

        padding: 8px 12px !important;
        font-size: 12.5px !important;
        border-radius: 999px !important;
    }

    /* Dot iets kleiner */
    .fs-pill .fs-pill-dot {
        width: 8px !important;
        height: 8px !important;
    }

    /* Op laptop/klein desktop: laat het blok niet te breed worden */
    @media (max-width: 1200px) {
        .fs-step-pills {
            gap: 10px !important;
        }
    }

    /* Op mobiel: nog steeds naast elkaar, maar scrollbaar als het krap is */
    @media (max-width: 768px) {
        .fs-step-pills-wrap {
            justify-content: flex-start !important;
        }

        .fs-step-pills {
            justify-content: flex-start !important;
            width: 100% !important;
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch !important;
        }
    }

}

.fs-step-pills-wrap {
    display: flex;
    justify-content: flex-end;
}


@media (max-width: 768px) {
    .fs-step-pills-wrap {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .fs-step-pills {
        width: 100%;
        justify-content: space-between;
    }

    .fs-pill {
        flex: 1;
        justify-content: center;
    }
}


/* ================================
   Account menu (menunavigatie)
   ================================ */
.fs-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.fs-card__body {
    padding: 18px;
}

.fs-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fs-profile__avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(14, 24, 39, .10);
    background: rgba(11, 18, 32, .04);
    flex: 0 0 auto;
}

.fs-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.fs-profile__name {
    font-weight: 950;
    letter-spacing: .2px;
    line-height: 1.1;
}

.fs-profile__sub {
    color: rgba(61, 61, 61, .70);
    font-weight: 800;
    font-size: 12px;
    margin-top: 2px;
}

.fs-divider {
    height: 1px;
    background: rgba(14, 24, 39, .08);
    margin: 14px 0;
}

.fs-nav {
    display: grid;
    gap: 8px;
}

.fs-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none !important;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: .15px;
    border: 1px solid transparent;
    background: transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.fs-nav__item:hover {
    background: rgba(var(--brand-rgb), .06);
    border-color: rgba(var(--brand-rgb), .18);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(11, 18, 32, .08);
}

.fs-nav__item.is-active {
    background: rgba(var(--brand-rgb), .10);
    border-color: rgba(var(--brand-rgb), .28);
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .12);
}

.fs-nav__icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(11, 18, 32, .04);
    border: 1px solid rgba(14, 24, 39, .08);
    color: rgba(61, 61, 61, .86);
    flex: 0 0 auto;
}

.fs-nav__label {
    flex: 1;
}

.fs-nav__chev {
    opacity: .55;
    font-weight: 900;
    margin-left: 4px;
}


/* ================================
   Account content blocks
   ================================ */
.fs-breadcrumb {
    padding: 18px 0;
    border-bottom: 1px solid rgba(14, 24, 39, .08);
    background: rgba(255, 255, 255, .55);
}

.fs-breadcrumb a {
    color: rgba(61, 61, 61, .86);
    text-decoration: none !important;
    font-weight: 800;
}

.fs-breadcrumb a:hover {
    color: var(--accent);
}

.fs-breadcrumb .sep {
    opacity: .35;
    margin: 0 8px;
}

.fs-breadcrumb .current {
    font-weight: 950;
    color: var(--ink);
}

.fs-content-card {
    margin-bottom: 16px;
}

.fs-content-card h3 {
    margin: 0 0 10px;
    font-weight: 950;
    letter-spacing: .2px;
}

.fs-kv {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 10px 16px;
    padding-top: 6px;
}

.fs-kv dt {
    color: rgba(61, 61, 61, .70);
    font-weight: 900;
}

.fs-kv dd {
    margin: 0;
    font-weight: 900;
    color: var(--ink);
}

@media (max-width: 768px) {
    .fs-kv {
        grid-template-columns: 1fr;
    }

    .fs-kv dt {
        margin-top: 10px;
    }
}

.fs-note {
    color: rgba(61, 61, 61, .78);
    line-height: 1.6;
}

/* ================================
   Home hero (slider) strak onder header
   ================================ */
.fs-hero {
    margin-top: 0 !important; /* pakt jouw .fs-block marge */
    padding-top: 0 !important; /* pakt .fs-section padding */
}

.fs-hero .fs-section-inner {
    padding-top: 0 !important; /* pakt .fs-section-inner padding */
}
/* ==================================
   Home slider: alleen onderrand
   ================================== */

.fs-hero #carouselExampleIndicators,
.fs-hero .rev_slider_wrapper{
    border: 0 !important;                 /* alle randen weg */
    border-bottom: 1px solid var(--border) !important;  /* alleen onder */
}

.fs-hero #carouselExampleIndicators,
.fs-hero .rev_slider_wrapper{
    border: 0 !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: none !important;
}

/* =====================================================
   FS BRAND — Premium 2026 navbar styling
   ===================================================== */

.fs-brand{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 64px;
    padding: 0 14px;

    text-decoration: none;
    position: relative;
}

/* glass container */
.fs-brand__wrap{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 54px;
    padding: 0 18px;

    border-radius: 18px;

    background: rgba(255,255,255,.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(14,24,39,.08);

    box-shadow:
            0 8px 28px rgba(11,18,32,.08),
            0 2px 6px rgba(11,18,32,.06);

    transition:
            transform .15s ease,
            box-shadow .18s ease,
            border-color .18s ease,
            background .18s ease;
}

/* logo size */
.fs-brand__logo{
    height: 40px;        /* GROTER */
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform .2s ease;
}

/* Hover premium lift */
.fs-brand:hover .fs-brand__wrap{
    transform: translateY(-2px);

    border-color: rgba(220,68,5,.28);

    box-shadow:
            0 18px 40px rgba(11,18,32,.12),
            0 4px 10px rgba(11,18,32,.08);
}

/* subtiele accent glow */
.fs-brand:hover .fs-brand__wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: 0 0 0 4px rgba(220,68,5,.10);
    pointer-events: none;
}

/* logo micro zoom */
.fs-brand:hover .fs-brand__logo{
    transform: scale(1.04);
}

/* Sticky header variant */
.u-header--is-sticky .fs-brand{
    height: 56px;
}

.u-header--is-sticky .fs-brand__logo{
    height: 32px;
}

.u-header--is-sticky .fs-brand__wrap{
    height: 46px;
}

/* Dark header compatibility */
.u-header--dark .fs-brand__wrap{
    background: rgba(255,255,255,.90);
}

/* Focus accessibility */
.fs-brand:focus{
    outline: none;
}

.fs-brand:focus .fs-brand__wrap{
    box-shadow:
            0 0 0 4px rgba(220,68,5,.18),
            0 8px 28px rgba(11,18,32,.08);
}