:root {
    --monita-cream: #F3EED9;
    --monita-red: #ED3237;
    --monita-brown: #711717;
    --monita-yellow: #FF9000;
    --monita-black: #000000;
    --monita-white: #FFFFFF;
    --monita-white-40: rgba(255, 255, 255, 0.4);
    --monita-grey: #818181;
    --monita-red-20: rgba(237, 50, 55, 0.2);
    --monita-green-20: rgba(58, 205, 1, 0.2);
    --radius-lg: 40px;
    --radius-md: 20px;
    --radius-sm: 10px;
    --site-max-width: 1920px;
}

body {
    font-family: 'Cabinet Grotesk', sans-serif;
    background: var(--monita-cream);
    color: var(--monita-black);
}

@media (min-width: 1600px) {
    html {
        zoom: 1;
    }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    html {
        zoom: 0.92;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    html {
        zoom: 0.84;
    }
}

@media (min-width: 1100px) and (max-width: 1279px) {
    html {
        zoom: 0.76;
    }
}

@media (min-width: 901px) and (max-width: 1099px) {
    html {
        zoom: 0.68;
    }
}

/* Shared minimum text size */
.header-topbar,
.header-topbar a,
.header-nav a,
.header-search input,
.footer-col h4,
.footer-col p,
.footer-col a,
.footer-col li,
.footer-newsletter input,
.footer-newsletter button,
.footer-bottom {
    font-size: 16px !important;
}

.site-header {
    position: relative;
    z-index: 30;
}

.header-shell {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.header-topbar {
    background: var(--monita-red) !important;
    color: var(--monita-white);
    font-size: 16px;
    line-height: 20px;
}

.header-topbar-inner {
    min-height: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.header-topbar-left,
.header-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-topbar-left {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
}

.header-topbar-right {
    grid-column: 3;
    justify-self: end;
    min-width: 0;
    width: fit-content;
    flex: 0 0 auto;
    margin-left: auto;
}

.header-topbar a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    white-space: nowrap;
}

.header-topbar a:hover,
.header-topbar a:focus {
    color: var(--monita-white) !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

.header-topbar-user {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
    width: fit-content;
    flex: 0 0 auto;
}

.header-topbar-logout {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
    width: fit-content;
    flex: 0 0 auto;
}

.header-topbar-right a {
    width: fit-content;
    flex: 0 0 auto;
}

.header-topbar-right .header-topbar-logout,
.header-topbar-right .header-topbar-user,
.header-topbar-right > a {
    flex-shrink: 0;
}

.header-topbar-user img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.header-topbar-logout i {
    font-size: 14px;
    line-height: 1;
}

.header-topbar a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.header-main {
    background: var(--monita-white-40) !important;
    border-bottom: 1px solid var(--monita-white) !important;
    box-shadow: 0 10px 18px rgba(113, 23, 23, 0.08);
}

.header-main-inner {
    background: transparent !important;
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-self: start;
}

.header-nav a {
    color: var(--monita-black);
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    width: 108px;
    height: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 20px;
}

.header-search {
    position: relative;
    width: min(248px, 100%);
}

.header-search input {
    width: 100%;
    height: 38px;
    border: 0;
    outline: none;
    border-radius: var(--radius-md);
    background: var(--monita-cream);
    color: var(--monita-black);
    padding: 0 42px 0 16px;
    font-size: 16px;
    line-height: 20px;
}

.header-search img {
    position: absolute;
    right: 14px;
    top: 56%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.header-icon {
    position: relative;
    color: var(--monita-black);
    text-decoration: none;
    line-height: 0.98;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.header-account-link {
    color: var(--monita-black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-decoration: none;
    font-weight: 500;
}

.header-account-name {
    color: var(--monita-black);
    display: inline-block;
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px !important;
    line-height: 18px;
}

.header-cart {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--monita-yellow);
    box-shadow: 0 8px 18px rgba(175, 104, 0, 0.14);
}

.header-cart img {
    width: 18px;
    height: 18px;
    filter: none;
}

.header-cart {
    color: var(--monita-yellow);
}

.header-badge-icon {
    position: relative;
}

.header-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(237, 50, 55, 1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px !important;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(237, 50, 55, 0.28);
    border: 2px solid #ffffff;
    z-index: 4;
}

.header-count-badge.is-empty {
    display: none !important;
}

.header-cart span,
.header-badge-icon span {
    display: inline-flex !important;
}

.site-footer {
    background: var(--monita-white-40) !important;
    border-top: 1px solid var(--monita-white) !important;
    padding: 32px 0 24px;
    overflow-x: clip;
}

.footer-shell {
    width: min(100%, var(--site-max-width));
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--monita-black);
}

.footer-brand {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    flex: 1 1 auto;
    min-width: 0;
}

.footer-brand img {
    width: 150px;
    height: 96px;
    object-fit: contain;
}

.footer-wordmark {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 70px;
    font-weight: 900;
    color: var(--monita-cream);
    letter-spacing: 0;
    white-space: nowrap;
    margin-top: 0;
    text-align: center;
    margin-left: 0;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 40px;
    margin-top: 0;
    margin-left: 0;
    flex: 0 0 auto;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--monita-black);
    border: 1px solid var(--monita-black);
    text-decoration: none;
    background: var(--monita-cream);
}

.footer-socials a i {
    font-size: 13px;
    line-height: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 320px 150px 170px 170px 190px;
    column-gap: 56px;
    row-gap: 20px;
    padding: 36px 0 8px;
    align-items: start;
}

.footer-col:first-child {
    max-width: none;
    grid-column: auto;
}

.footer-col:nth-child(2) {
    grid-column: auto;
}

.footer-col:nth-child(3) {
    grid-column: auto;
    margin-left: 0;
}

.footer-col:nth-child(4) {
    grid-column: auto;
}

.footer-col:nth-child(5) {
    grid-column: auto;
}

.footer-col {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-col:first-child p {
    max-width: 352px;
    line-height: 1.32;
    font-weight: 400;
}
.footer-col h4 {
    margin: 0 0 24px;
    color: var(--monita-grey);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.footer-col p,
.footer-col a,
.footer-col li {
    color: var(--monita-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    list-style: none;
}

.footer-col:not(:first-child) a,
.footer-col:not(:first-child) li,
.footer-col:not(:first-child) .footer-address {
    font-weight: 500;
}

.footer-col:first-child p {
    color: var(--monita-black);
    font-weight: 400;
}
.footer-col li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.footer-col li img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-address {
    display: block;
    line-height: 22px;
}
.footer-col ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
}

.footer-col:nth-child(2) ul,
.footer-col:nth-child(3) ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 196px;
}

.footer-col:nth-child(4) ul {
    display: grid;
    gap: 24px;
}

.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    width: 345px;
    max-width: 100%;
    min-height: 60px;
    height: 60px;
    background: var(--monita-cream);
    border-radius: 40px;
    border: 1px solid var(--monita-black);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    padding: 0 6px 0 20px;
}

.footer-newsletter input {
    border: 0;
    background: transparent;
    outline: none;
    font-size: 16px;
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    color: #2d2722;
    font-family: inherit;
    line-height: 20px;
}

.footer-newsletter input::placeholder {
    color: #b5aebd;
}

.footer-newsletter button {
    border: 0;
    border-radius: 20px;
    background: var(--monita-yellow);
    color: var(--monita-black);
    width: 136px;
    min-width: 136px;
    height: 40px;
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    font-family: inherit;
    box-shadow: 0 8px 18px rgba(175, 104, 0, 0.14);
    white-space: nowrap;
}

.footer-bottom {
    position: relative;
    text-align: center;
    margin-top: 48px;
    padding: 0 0 22px;
    color: #6a6055;
    font-size: 0.7rem;
    overflow: hidden;
    min-height: 140px;
}

.footer-since {
    position: absolute;
    left: 50%;
    right: auto;
    top: 42px;
    width: 100%;
    height: 181px;
    font-size: clamp(180px, 18vw, 270px);
    line-height: 70px;
    font-weight: 900;
    color: var(--monita-cream);
    letter-spacing: 0;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    text-align: center;
    transform: translateX(-50%);
    margin-top: 0;
}

.footer-bottom span {
    position: absolute;
    left: 50%;
    top: 56px;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-md);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .header-main-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 14px 24px 18px;
    }

    .header-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .header-topbar-inner,
    .header-topbar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-topbar-right {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        justify-self: end;
    }

    .header-topbar-inner {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header-nav {
        gap: 20px;
        font-size: 0.95rem;
        justify-content: center;
    }

    .header-logo img {
        width: 88px;
    }

    .header-actions {
        gap: 20px;
        flex-wrap: wrap;
    }

    .header-search {
        width: 100%;
    }

    .header-icon {
        font-size: 1.35rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}








.footer-newsletter button img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
}



/* Global minimum text size */
:where(p, a, li, label, input, select, textarea, button, span) {
    font-size: max(16px, 1em) !important;
}









@media (max-width: 900px) {
    .header-shell,
    .footer-shell {
        padding: 0 40px;
    }

    .header-main-inner {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "logo actions"
            "nav nav";
        align-items: center;
        justify-items: stretch;
        gap: 14px 20px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .header-nav {
        grid-area: nav;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px 18px;
    }

    .header-actions {
        grid-area: actions;
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .header-search {
        width: min(220px, 100%);
    }

    .header-logo {
        grid-area: logo;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .header-shell,
    .footer-shell {
        padding: 0 16px;
    }

    .header-topbar-inner {
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .header-topbar-left,
    .header-topbar-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .header-topbar a {
        gap: 6px;
        font-size: 10px !important;
        line-height: 12px;
    }

    .header-topbar-logout,
    .header-topbar-user {
        gap: 6px;
        font-size: 10px !important;
        line-height: 12px;
    }

    .header-topbar a img {
        width: 10px;
        height: 10px;
    }

    .header-main-inner {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "logo actions"
            "nav nav";
        gap: 6px 10px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .header-logo img {
        width: 78px;
    }

    .header-nav {
        gap: 8px 12px;
        justify-content: flex-start;
        text-align: left;
    }

    .header-nav a {
        font-size: 11px !important;
        line-height: 14px;
    }

    .header-actions {
        gap: 8px;
        width: auto;
        min-width: 0;
    }

    .header-search {
        width: 124px;
    }

    .header-search input {
        height: 30px;
        padding: 0 28px 0 10px;
        font-size: 11px !important;
    }

    .header-search img {
        right: 10px;
        width: 12px;
        height: 12px;
    }

    .header-icon img {
        width: 14px;
        height: 14px;
    }

    .header-cart {
        width: 30px;
        height: 30px;
    }

    .header-cart img {
        width: 12px;
        height: 12px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        padding-bottom: 12px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-brand img {
        width: 96px;
    }

    .footer-socials {
        margin-left: 0;
        margin-top: 0;
        justify-content: flex-start;
        align-self: flex-start;
        gap: 10px;
    }

    .footer-wordmark {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 40px;
    }

    .footer-col:last-child {
        order: -1;
    }

    .footer-col:first-child,
    .footer-col:first-child p {
        max-width: 100%;
    }

    .footer-newsletter {
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
    }
}




@media (max-width: 640px) {
    .site-footer {
        background: var(--monita-white-40) !important;
        overflow-x: clip;
        overflow-y: visible;
    }

    .footer-shell {
        width: fit-content !important;
        min-width: 0 !important;
        max-width: calc(100% - 16px) !important;
        padding: 0 16px !important;
        margin: 0 0 0 16px !important;
        background: var(--monita-white-40) !important;
    }
}

@media (min-width: 641px) {
    .site-footer {
        min-width: 0;
        overflow-x: clip;
        overflow-y: hidden;
    }

    .footer-shell {
        width: 1440px !important;
        min-width: 1440px;
        max-width: 1440px !important;
        padding: 0 !important;
    }

    .footer-top {
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: space-between !important;
        gap: 32px !important;
        width: 1440px !important;
        padding-bottom: 16px !important;
        border-bottom: 1px solid var(--monita-black) !important;
    }

    .footer-brand {
        flex-direction: row !important;
        align-items: flex-end !important;
        gap: 32px !important;
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .footer-brand img {
        width: 150px !important;
        height: 96px !important;
        flex: 0 0 auto !important;
        object-fit: contain !important;
    }

    .footer-wordmark {
        font-size: clamp(34px, 5.3vw, 64px) !important;
        line-height: 70px !important;
        margin-top: 0 !important;
        white-space: nowrap !important;
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        letter-spacing: 0 !important;
        text-align: center !important;
        margin-left: 0 !important;
    }

    .footer-socials {
        margin-top: 0 !important;
        margin-left: 0 !important;
        gap: 20px !important;
        justify-content: flex-start !important;
        align-self: auto !important;
        flex-wrap: nowrap !important;
        flex: 0 0 auto !important;
        min-height: 40px !important;
    }

    .footer-socials a {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px !important;
    }

    .footer-socials a i {
        font-size: 13px !important;
    }

    .footer-grid {
        grid-template-columns: 436px 140px 180px 175px 273px !important;
        column-gap: 56px !important;
        row-gap: 20px !important;
        padding: 36px 0 8px !important;
    }

    .footer-col:last-child {
        order: 0;
    }
}

@media (min-width: 641px) {
    :root {
        --chrome-scale: clamp(0.72, calc(100vw / 1440), 1);
    }

    .site-header,
    .site-footer {
        zoom: var(--chrome-scale);
    }

    .site-header .header-shell,
    .site-footer .footer-shell {
        width: 1440px !important;
        max-width: 1440px !important;
    }
}

@media (max-width: 768px) {
    .header-shell,
    .footer-shell {
        padding: 0 24px;
    }

    .header-main-inner {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "logo actions"
            "nav nav";
        gap: 10px 16px;
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 0;
    }

    .header-nav {
        grid-area: nav;
        gap: 10px 14px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .header-nav a {
        font-size: 14px !important;
        line-height: 18px;
    }

    .header-logo img {
        width: 86px;
    }

    .header-actions {
        grid-area: actions;
        gap: 10px;
    }

    .header-search {
        width: min(190px, 100%);
    }

    .header-search input {
        height: 34px;
        padding: 0 34px 0 12px;
        font-size: 13px !important;
    }

    .header-icon img {
        width: 18px;
        height: 18px;
    }

    .header-account-name {
        max-width: 86px;
        font-size: 12px !important;
        line-height: 16px;
    }

    .header-cart {
        width: 36px;
        height: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 24px;
    }

    .footer-newsletter {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .header-shell,
    .footer-shell {
        padding: 0 14px;
    }

    .header-topbar {
        font-size: 11px;
        line-height: 14px;
    }

    .header-topbar-inner {
        gap: 4px;
        padding-top: 2px;
        padding-bottom: 2px;
        min-height: 26px;
    }

    .header-topbar-left,
    .header-topbar-right {
        gap: 8px;
    }

    .header-topbar a {
        font-size: 9px !important;
        line-height: 11px;
        gap: 4px;
    }

    .header-main-inner {
        gap: 6px 8px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header-logo img {
        width: 70px;
    }

    .header-nav {
        gap: 6px 10px;
    }

    .header-nav a {
        font-size: 10px !important;
        line-height: 13px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-search {
        width: 116px;
    }

    .header-search input {
        height: 28px;
        padding: 0 26px 0 10px;
        font-size: 10px !important;
    }

    .header-search img {
        right: 8px;
        width: 10px;
        height: 10px;
    }

    .header-icon img {
        width: 13px;
        height: 13px;
    }

    .header-account-name {
        display: none;
    }

    .header-cart {
        width: 28px;
        height: 28px;
    }

    .header-topbar-left,
    .header-topbar-right {
        gap: 10px !important;
    }

    .header-nav {
        gap: 8px !important;
    }

    .footer-top {
        gap: 10px;
        padding-bottom: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 28px;
    }

    .footer-col h4,
    .footer-col p,
    .footer-col a,
    .footer-col li,
    .footer-newsletter input,
    .footer-newsletter button,
    .footer-bottom {
        font-size: 14px !important;
        line-height: 18px;
    }

    .footer-newsletter {
        min-height: 52px;
        height: 52px;
        padding: 0 5px 0 14px;
    }

    .footer-newsletter button {
        min-width: 116px;
        width: 116px;
        height: 36px;
        min-height: 36px;
        font-size: 13px !important;
    }

    .footer-bottom {
        margin-top: 28px;
        min-height: 96px;
    }

    .footer-since,
    .footer-wordmark {
        display: none;
    }

    .footer-bottom {
        font-size: 12px !important;
        line-height: 16px;
    }
}

@media (max-width: 640px) {
    .header-topbar-inner {
        min-height: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        flex-wrap: nowrap;
    }

    .header-topbar-left,
    .header-topbar-right {
        width: auto;
        justify-content: center;
        gap: 8px !important;
        min-width: 0;
    }

    .header-topbar-left {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .header-topbar a {
        font-size: 9px !important;
        line-height: 11px;
        gap: 4px;
        white-space: nowrap;
    }

    .header-topbar-user,
    .header-topbar-logout {
        font-size: 9px !important;
        line-height: 11px;
        gap: 4px;
        white-space: nowrap;
    }

    .header-topbar a img {
        width: 9px;
        height: 9px;
    }

    .header-topbar-user img {
        width: 9px;
        height: 9px;
    }

    .header-main-inner {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "logo actions"
            "nav nav";
        gap: 6px 10px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .header-actions {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 8px !important;
        align-items: center;
    }

    .header-search {
        width: min(148px, 100%) !important;
    }

    .header-nav {
        justify-content: center !important;
        gap: 8px 12px !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        width: 100%;
        text-align: center;
    }

    .site-footer .footer-shell {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding-top: 32px !important;
    }

    .footer-col {
        width: 100%;
    }

    .footer-newsletter {
        width: 100% !important;
    }

    .footer-bottom {
        min-height: 0 !important;
        margin-top: 20px !important;
        padding: 0 0 12px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-bottom span {
        position: static !important;
        transform: none !important;
        display: block;
        padding: 0 !important;
        white-space: normal;
    }

    .footer-since {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header-topbar-inner {
        gap: 8px !important;
    }

    .header-topbar-left,
    .header-topbar-right {
        gap: 8px !important;
    }

    .header-main-inner {
        gap: 8px !important;
    }

    .header-search {
        width: min(132px, 100%) !important;
    }

    .header-nav {
        gap: 8px !important;
        scrollbar-width: none;
    }

    .header-nav::-webkit-scrollbar {
        display: none;
    }

    .footer-top {
        gap: 8px !important;
    }

    .footer-socials {
        flex-wrap: wrap;
    }

    .footer-newsletter {
        min-width: 0;
    }
}

@media (max-width: 360px) {
    .header-topbar-inner {
        flex-wrap: nowrap;
        row-gap: 0 !important;
    }

    .header-topbar a {
        font-size: 8px !important;
        line-height: 10px;
    }

    .header-topbar-user {
        font-size: 8px !important;
        line-height: 10px;
    }

    .header-logo img {
        width: 64px;
    }

    .header-search {
        width: 104px !important;
    }

    .header-nav a {
        font-size: 9px !important;
        line-height: 12px;
    }

    .footer-newsletter button {
        min-width: 102px;
        width: 102px;
    }

    .footer-bottom {
        font-size: 11px !important;
        line-height: 15px;
    }
}

.floating-chat-trigger {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 144, 0, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(255, 144, 0, 0.28);
    z-index: 1200;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-chat-trigger:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 20px 34px rgba(255, 144, 0, 0.36);
}

.floating-chat-trigger img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

@media (max-width: 767px) {
    .floating-chat-trigger {
        right: 16px;
        bottom: 84px;
        width: 62px;
        height: 62px;
    }

    .floating-chat-trigger img {
        width: 26px;
        height: 26px;
    }
}
