:root {
    --maru-mustard: #C98A2E;
    --maru-green: #214A2B;
    --maru-cream: #FFF3D8;
    --maru-terracotta: #B85F3C;
    --maru-ink: #1B3020;
    --maru-muted: rgba(27, 48, 32, .72);
    --maru-groundnut: #B9853F;
    --maru-sesame: #E3C164;
    --maru-coconut: #F8EAD2;
    --maru-leaf: #6E8A3A;
    --maru-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --maru-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.maru-site {
    margin: 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(227, 193, 100, .18), transparent 18rem),
        radial-gradient(circle at 92% 30%, rgba(185, 133, 63, .13), transparent 20rem),
        linear-gradient(180deg, #FFF7E8 0%, var(--maru-cream) 36%, #FFFAF0 100%);
    color: var(--maru-ink);
    font-family: var(--maru-font-sans);
    font-weight: 500;
}

img {
    max-width: 100%;
}

.maru-site h1,
.maru-site h2,
.maru-site h3,
.maru-site .maru-header__brand,
.maru-site .maru-footer__logo {
    font-family: var(--maru-font-heading);
    font-weight: 800;
    letter-spacing: 0;
}

.maru-skip {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 50;
    background: var(--maru-green);
    color: var(--maru-cream);
    padding: .75rem 1rem;
}

.maru-skip:focus {
    top: 1rem;
}

.maru-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.maru-site.is-loading {
    cursor: progress;
}

.maru-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 50%, rgba(16, 40, 23, 0.96), rgba(5, 4, 3, 0.99));
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .3s cubic-bezier(0.25, 1, 0.5, 1), visibility .3s cubic-bezier(0.25, 1, 0.5, 1);
}

.maru-page-loader.is-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.maru-page-loader__card {
    display: grid;
    width: min(13.5rem, calc(100vw - 2rem));
    place-items: center;
    gap: 1.2rem;
    border: 1px solid rgba(214, 168, 79, .18);
    border-radius: 1.25rem;
    background: rgba(5, 4, 3, 0.75);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .6), 0 0 30px rgba(214, 168, 79, 0.05);
    padding: 1.6rem 1.4rem;
    backdrop-filter: blur(8px);
}

.maru-page-loader__mark {
    position: relative;
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    place-items: center;
}

.maru-page-loader__ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(214, 168, 79, .15);
    border-top-color: var(--maru-antique-gold);
    border-radius: 50%;
    animation: maru-loader-spin 0.9s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}

.maru-page-loader__ring::before,
.maru-page-loader__ring::after {
    display: none; /* Hide unnecessary decorations for a cleaner minimalist look */
}

.maru-page-loader__drop {
    position: relative;
    z-index: 2;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, var(--maru-mustard), var(--maru-antique-gold));
    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.6),
        0 4px 10px rgba(214, 168, 79, 0.4);
    transform: rotate(-45deg);
    animation: maru-loader-drop 1.4s ease-in-out infinite;
}

.maru-page-loader__drop::after {
    content: "";
    position: absolute;
    top: .25rem;
    left: .25rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
}

.maru-page-loader__seed {
    display: none; /* Hide seeds to keep the loader extremely minimal and professional */
}

.maru-page-loader__text {
    color: var(--maru-cream);
    font-family: Georgia, serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0.9;
    animation: maru-text-pulse 1.4s ease-in-out infinite alternate;
}

@keyframes maru-text-pulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

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

@keyframes maru-loader-spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes maru-loader-drop {
    0%,
    100% {
        transform: rotate(-45deg) scale(.92);
    }

    50% {
        transform: rotate(-45deg) scale(1.08);
    }
}

@keyframes maru-loader-orbit-one {
    0% {
        transform: rotate(0deg) translateX(3.05rem) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(3.05rem) rotate(-360deg);
    }
}

@keyframes maru-loader-orbit-two {
    0% {
        transform: rotate(120deg) translateX(3.05rem) rotate(-120deg);
    }

    100% {
        transform: rotate(480deg) translateX(3.05rem) rotate(-480deg);
    }
}

@keyframes maru-loader-orbit-three {
    0% {
        transform: rotate(240deg) translateX(3.05rem) rotate(-240deg);
    }

    100% {
        transform: rotate(600deg) translateX(3.05rem) rotate(-600deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .maru-page-loader__ring,
    .maru-page-loader__ring::before,
    .maru-page-loader__drop,
    .maru-page-loader__seed {
        animation: none;
    }
}

.maru-topbar {
    width: 100%;
    background: linear-gradient(90deg, #050403 0%, #102817 48%, #050403 100%);
    color: #d6a84f;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(214, 168, 79, .22);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.maru-topbar::-webkit-scrollbar {
    display: none;
}

.maru-topbar__inner {
    width: max-content;
    min-width: 100%;
    min-height: 34px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .85rem;
    padding: 0 1rem;
}

.maru-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    color: inherit;
    white-space: nowrap;
}

.maru-topbar__item svg {
    width: .9rem;
    height: .9rem;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.maru-topbar__sep {
    content: "";
    width: 1px;
    height: .9rem;
    flex: 0 0 auto;
    background: rgba(214, 168, 79, .42);
}

.maru-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(5, 4, 3, .94);
    border-bottom: 1px solid rgba(214, 168, 79, .28);
    box-shadow: 0 14px 34px rgba(5, 4, 3, .24);
    backdrop-filter: blur(16px);
}

.maru-header__inner {
    width: min(96vw, 1760px);
    min-height: 5rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.maru-header__brand {
    display: inline-grid;
    width: auto;
    flex: 0 0 auto;
    gap: .08rem;
    color: #d6a84f;
    text-decoration: none;
}

.maru-header__brand-main {
    font-family: var(--maru-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: 0;
}

.maru-header__brand-sub {
    color: rgba(247, 237, 210, .86);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.1;
}

.maru-header__toggle {
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(214, 168, 79, .38);
    border-radius: .45rem;
    background: transparent;
    color: #d6a84f;
    cursor: pointer;
}

.maru-header__toggle span {
    width: 1.25rem;
    height: 2px;
    background: currentColor;
}

.maru-header__nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    border: 1px solid rgba(214, 168, 79, .22);
    border-radius: .5rem;
    background: rgba(5, 4, 3, .98);
    padding: .75rem;
    box-shadow: 0 20px 48px rgba(5, 4, 3, .34);
}

.maru-header__nav.is-open {
    display: grid;
}

.maru-header__links {
    display: grid;
}

.maru-header__links a {
    position: relative;
    color: var(--maru-cream);
    order: 10;
    padding: .75rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
}

.maru-header__links a::after {
    content: "";
    position: absolute;
    right: .75rem;
    bottom: .42rem;
    left: .75rem;
    height: 1px;
    background: #d6a84f;
    opacity: 0;
    transform: scaleX(.4);
    transform-origin: center;
    transition: opacity .18s ease, transform .18s ease;
}

.maru-header__links a:hover,
.maru-header__links a:focus-visible,
.maru-header__links a.is-active {
    color: #d6a84f;
}

.maru-header__links a:hover::after,
.maru-header__links a:focus-visible::after,
.maru-header__links a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.maru-header__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: .55rem;
    width: 100%;
    order: 20;
}

.maru-header__search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.55rem;
    align-items: center;
    width: min(100%, 18rem);
    margin: .15rem 0 .55rem;
    border: 1px solid rgba(214, 168, 79, .24);
    border-radius: 999px;
    background: rgba(247, 237, 210, .1);
    position: relative;
    overflow: visible;
}

.maru-header__search input {
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--maru-cream);
    padding: .72rem 1rem;
    font: inherit;
    outline: 0;
}

.maru-header__search input::placeholder {
    color: rgba(247, 237, 210, .62);
}

.maru-header__search button {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    border: 0;
    background: transparent;
    color: #d6a84f;
    cursor: pointer;
}

.maru-header__suggestions {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    left: 0;
    z-index: 70;
    display: grid;
    gap: .25rem;
    border: 1px solid rgba(33, 74, 43, .14);
    border-radius: .65rem;
    background: #FFFAF0;
    padding: .45rem;
    box-shadow: 0 22px 48px rgba(33, 74, 43, .18);
}

.maru-header__suggestions[hidden] {
    display: none;
}

.maru-search-result {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: .65rem;
    align-items: center;
    border-radius: .45rem;
    color: var(--maru-ink);
    padding: .42rem;
    text-decoration: none;
}

.maru-search-result:hover,
.maru-search-result:focus-visible {
    background: rgba(201, 138, 46, .14);
    color: var(--maru-green);
}

.maru-search-result img {
    width: 3rem;
    height: 3rem;
    border-radius: .4rem;
    object-fit: cover;
}

.maru-search-result strong,
.maru-search-result small {
    display: block;
    line-height: 1.25;
}

.maru-search-result strong {
    font-size: .84rem;
    font-weight: 800;
}

.maru-search-result small,
.maru-search-result__price {
    color: rgba(27, 48, 32, .62);
    font-size: .72rem;
    font-weight: 800;
}

.maru-search-empty {
    color: rgba(27, 48, 32, .72);
    padding: .75rem;
    font-size: .86rem;
    font-weight: 800;
}

.maru-header__search svg,
.maru-header__cart svg,
.maru-header__icon-link svg {
    width: 1.15rem;
    height: 1.15rem;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.maru-header__icon-link,
.maru-header__cart {
    position: relative;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(214, 168, 79, .34);
    background: rgba(247, 237, 210, .08);
    color: #d6a84f !important;
    text-decoration: none;
    padding: 0 !important;
}

.maru-header__cart {
    background: #d6a84f;
    border-color: #d6a84f;
    color: #050403 !important;
}

.maru-header__icon-link:hover,
.maru-header__icon-link:focus-visible,
.maru-header__cart:hover,
.maru-header__cart:focus-visible {
    transform: translateY(-1px);
}

.maru-header__cart span {
    position: absolute;
    top: -.32rem;
    right: -.32rem;
    display: grid;
    min-width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border: 1px solid #050403;
    border-radius: 999px;
    background: #f2b72e;
    color: #050403;
    padding: 0 .32rem;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
}

.maru-services {
    background: #FFFAF0;
    border-top: 1px solid rgba(33, 74, 43, .1);
}

.maru-services__inner {
    width: min(96vw, 1760px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    padding: 1rem 0;
}

.maru-services__item {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: .65rem;
    align-items: center;
}

.maru-services__icon {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    color: var(--maru-green);
}

.maru-services__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.maru-services strong,
.maru-services small {
    display: block;
    line-height: 1.25;
}

.maru-services strong {
    color: var(--maru-green);
    font-size: .82rem;
    font-weight: 800;
}

.maru-services small {
    color: rgba(27, 48, 32, .66);
    font-size: .72rem;
    font-weight: 700;
}

.maru-home-split {
    width: min(96vw, 1760px);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    padding: 0 0 2rem;
}

.maru-home-split .maru-barmer,
.maru-home-split .maru-why {
    background: transparent;
}

.maru-home-split .maru-barmer__inner,
.maru-home-split .maru-why__inner {
    width: 100%;
    padding: 0;
}

.maru-home-split .maru-barmer__media,
.maru-home-split .maru-barmer__media img,
.maru-home-split .maru-why__media,
.maru-home-split .maru-why__media img {
    min-height: 17rem;
}

.maru-home-split .maru-barmer__title,
.maru-home-split .maru-why__title {
    font-size: clamp(1.8rem, 6vw, 2.25rem);
    max-width: 18ch;
}

.maru-home-split .maru-barmer__content {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
}

.maru-home-split .maru-barmer__eyebrow {
    width: fit-content;
    margin-inline: auto;
}

.maru-home-split .maru-barmer__title,
.maru-home-split .maru-barmer__copy,
.maru-home-split .maru-barmer__stats {
    margin-left: auto;
    margin-right: auto;
}

.maru-home-split .maru-barmer__stats {
    max-width: 28rem;
}

.maru-home-split .maru-barmer__stat {
    text-align: center;
}

.maru-home-split .maru-barmer__icon {
    margin-left: auto;
    margin-right: auto;
}

.maru-home-split .maru-barmer__copy + .maru-barmer__copy,
.maru-home-split .maru-why__intro {
    display: none;
}

.maru-flash {
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    z-index: 60;
    max-width: min(22rem, calc(100% - 2rem));
    border-radius: .4rem;
    background: var(--maru-green);
    color: var(--maru-cream);
    padding: .9rem 1rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.maru-page {
    width: min(96vw, 1760px);
    margin: 0 auto;
    padding: 3rem 0;
}

.maru-page__title {
    margin: 0 0 1rem;
    color: var(--maru-green);
    font-size: clamp(2.2rem, 10vw, 4rem);
    line-height: 1;
}

.maru-page__copy {
    max-width: 42rem;
    color: var(--maru-muted);
    line-height: 1.7;
}

.maru-panel {
    border: 1px solid rgba(33, 74, 43, .14);
    border-radius: .5rem;
    background: #FFFAF0;
    padding: 1rem;
}

.maru-form {
    display: grid;
    gap: 1rem;
}

.maru-form-grid {
    display: grid;
    gap: 1rem;
}

.maru-field {
    display: grid;
    gap: .4rem;
}

.maru-field label {
    color: var(--maru-green);
    font-size: .85rem;
    font-weight: 800;
}

.maru-field input,
.maru-field textarea,
.maru-field select {
    width: 100%;
    min-height: 2.8rem;
    border: 1px solid rgba(33, 74, 43, .22);
    border-radius: .35rem;
    background: #FFFAF0;
    color: var(--maru-ink);
    padding: .75rem .85rem;
    font: inherit;
}

.maru-button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--maru-green);
    border-radius: .35rem;
    background: var(--maru-green);
    color: var(--maru-cream);
    padding: .8rem 1.1rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.maru-button--light {
    background: var(--maru-mustard);
    color: var(--maru-green);
    border-color: var(--maru-mustard);
}

.maru-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 55;
    display: inline-grid;
    width: 3.4rem;
    height: 3.4rem;
    place-items: center;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.maru-whatsapp svg {
    width: 1.55rem;
    height: 1.55rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.maru-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.maru-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (min-width: 760px) {
    .maru-header__inner,
    .maru-page {
        width: min(96vw, 1760px);
    }

    .maru-topbar__inner {
        width: min(96vw, 1760px);
        min-width: 0;
        justify-content: center;
        gap: 1.15rem;
        padding: 0;
    }

    .maru-header__toggle {
        display: none;
    }

    .maru-header__nav {
        position: static;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        padding: 0;
        box-shadow: none;
        gap: 1rem;
    }

    .maru-header__links {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: center;
        gap: .18rem;
    }

    .maru-header__links a {
        order: 0;
        padding: .82rem .42rem;
        font-size: .8rem;
    }

    .maru-header__actions {
        display: flex;
        width: auto;
        flex: 0 0 auto;
    }

    .maru-header__search {
        width: 3rem;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: .35rem;
        grid-template-columns: minmax(0, 0fr) 2.55rem;
        transition: width .22s ease, background .22s ease;
    }

    .maru-header__search:focus-within {
        width: min(14rem, 20vw);
        grid-template-columns: minmax(0, 1fr) 2.55rem;
        background: rgba(247, 237, 210, .14);
    }

    .maru-header__search input {
        width: 0;
        padding-left: 0;
        padding-right: 0;
        opacity: 0;
        transition: opacity .18s ease, padding .18s ease;
    }

    .maru-header__search:focus-within input {
        width: auto;
        padding-left: 1rem;
        padding-right: .25rem;
        opacity: 1;
    }

    .maru-header__suggestions {
        left: auto;
        width: 23rem;
    }

    .maru-services__inner {
        width: min(96vw, 1760px);
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .maru-home-split {
        width: min(96vw, 1760px);
        grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
        align-items: stretch;
    }

    .maru-home-split .maru-barmer__inner,
    .maru-home-split .maru-why__inner {
        grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
        gap: 1rem;
        align-items: stretch;
    }

    .maru-home-split .maru-why__inner {
        display: block;
    }

    .maru-home-split .maru-why__media {
        margin-top: 1rem;
    }

    .maru-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Keep the premium header refresh last so legacy header styles cannot override it. */
.maru-site {
    --black: #050403;
    --dark-green: #07130b;
    --bottle-green: #102817;
    --label-green: #1f4a2e;
    --gold: #d6a84f;
    --mustard-gold: #f2b72e;
    --cream: #f7edd2;
    --muted: #b9aa82;
    --gold-border: rgba(214, 168, 79, .32);
}

.maru-topbar {
    height: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid rgba(214, 168, 79, .18);
    background: var(--black);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    scrollbar-width: none;
}

.maru-topbar__inner {
    width: min(96vw, 1760px);
    min-width: 0;
    min-height: 32px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.45rem;
}

.maru-topbar__item {
    gap: .42rem;
}

.maru-topbar__item svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.maru-topbar__sep {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--gold);
    opacity: .95;
}

.maru-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(214, 168, 79, .2);
    background: rgba(5, 4, 3, .86);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, .26);
}

.maru-header__inner {
    width: min(96vw, 1760px);
    min-height: 64px;
}

.maru-header__brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--gold);
}

.maru-header__brand-logo {
    display: block;
    width: clamp(8.2rem, 15vw, 12rem);
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.maru-header__brand-text {
    display: none;
}

.maru-header__links a {
    color: var(--cream);
    font-size: .95rem;
    font-weight: 700;
}

.maru-header__links a::after {
    right: .42rem;
    left: .42rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.maru-header__links a:hover,
.maru-header__links a:focus-visible,
.maru-header__links a.is-active {
    color: var(--gold);
}

.maru-header__search {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.maru-header__search button,
.maru-header__icon-link,
.maru-header__cart {
    border-color: transparent;
    background: transparent;
    color: var(--cream) !important;
}

.maru-header__cart span {
    background: var(--mustard-gold);
    color: var(--black);
}

.maru-header__toggle {
    border-color: rgba(214, 168, 79, .38);
    color: var(--gold);
}

@media (max-width: 759px) {
    .maru-topbar {
        overflow: hidden !important;
    }

    .maru-topbar__inner {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
        position: relative;
        height: 32px;
        padding: 0;
        overflow: hidden !important;
    }

    .maru-topbar__sep {
        display: inline-block !important;
        color: var(--gold);
        opacity: 0.8;
        padding: 0 0.5rem;
    }

    .maru-topbar__socials {
        display: none !important;
    }

    .maru-topbar__announcements {
        display: flex !important;
        align-items: center !important;
        gap: 1.5rem !important;
        white-space: nowrap !important;
        width: max-content !important;
        animation: topbarMarquee 20s linear infinite !important;
    }

    .maru-topbar__item {
        position: static !important;
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: auto !important;
        height: auto !important;
        white-space: nowrap !important;
    }

    @keyframes topbarMarquee {
        0% { transform: translate3d(100vw, 0, 0); }
        100% { transform: translate3d(-100%, 0, 0); }
    }

    .maru-header__inner {
        width: calc(100% - 1.5rem);
    }

    .maru-header__brand-logo {
        width: 9.2rem;
    }

    .maru-header__nav {
        background: rgba(5, 4, 3, .98);
        border-color: rgba(214, 168, 79, .28);
    }
}

@media (min-width: 760px) {
    /* Topbar Desktop Layout & Spacing */
    .maru-topbar__inner {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }

    .maru-topbar__announcements {
        display: flex !important;
        align-items: center !important;
        gap: 1.45rem !important;
        margin: 0 auto !important;
    }

    .maru-topbar__socials {
        display: flex !important;
        align-items: center !important;
        gap: 0.85rem !important;
        position: absolute !important;
        right: 1.5rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .maru-topbar__social-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: transform 0.2s ease, opacity 0.2s ease !important;
        opacity: 0.9 !important;
    }

    .maru-topbar__social-link:hover {
        transform: scale(1.18) !important;
        opacity: 1 !important;
    }

    .maru-topbar__social-link svg {
        width: 15px !important;
        height: 15px !important;
        display: block !important;
    }

    /* Menu Navigation Spacing */
    .maru-header__links {
        gap: 2.2rem !important;
    }

    .maru-header__links a {
        padding: .82rem .6rem !important;
    }

    /* Always-Open Search Input Field */
    .maru-header__search {
        width: 250px !important;
        grid-template-columns: minmax(0, 1fr) 2.55rem !important;
        background: rgba(247, 237, 210, .08) !important;
        border: 1px solid rgba(214, 168, 79, .25) !important;
        border-radius: 999px !important;
        margin-left: 1rem !important;
        transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease !important;
    }

    .maru-header__search:focus-within {
        background: rgba(247, 237, 210, .14) !important;
        border-color: rgba(214, 168, 79, .6) !important;
        box-shadow: 0 0 8px rgba(214, 168, 79, .25) !important;
    }

    .maru-header__search input {
        width: 100% !important;
        padding-left: 1rem !important;
        padding-right: .25rem !important;
        opacity: 1 !important;
        font-size: .85rem !important;
        color: var(--cream) !important;
        background: transparent !important;
    }
}

