﻿/* Web stylesheet bundle - flattened to avoid @import waterfall */

/* Source: public/css/web/base.css */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--web-body-text, #1f2937);
    font-family: var(--web-body-font-family, Arial, Helvetica, sans-serif);
    font-size: var(--web-body-font-size, 16px);
    line-height: 1.6;
    background: var(--web-body-background, #ffffff);
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}
a {
    color: var(--web-link-text, inherit);
    font-family: var(--web-link-font-family, inherit);
    font-size: inherit;
    text-decoration: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

.site-container {
    width: min(100% - 32px, var(--web-site-width, 1200px));
    margin: 0 auto;
}

.site-topbar__inner,
.site-header__inner,
.site-nav__inner {
    display: flex;
    align-items: center;
}

.home-page {
    overflow-x: hidden;
}

body[data-disable-copy="1"],
body[data-disable-copy="1"] * {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.seo-hidden-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Source: public/css/web/top.css */
.site-topbar {
    color: var(--web-top-text, #ffffff);
    font-family: var(--web-top-font-family, inherit);
    font-size: var(--web-top-font-size, 14px);
    background: var(--web-top-background, #0f172a);
}

.site-topbar__inner {
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
}

.site-topbar__content {
    width: 100%;
}

.site-topbar__content > * {
    margin-top: 0;
    margin-bottom: 0;
}

/* Source: public/css/web/header.css */
/* ==============================
   HEADER
================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transform: translateY(0);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease;
    will-change: transform;
}

.site-header.is-header-hidden {
    transform: translateY(calc(-100% - 12px));
}

.site-header.is-header-scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--web-link-text, #2563eb),
        #38bdf8,
        #22c55e,
        var(--web-link-text, #2563eb)
    );
    background-size: 220% 100%;
    animation: siteHeaderLine 7s linear infinite;
}

@keyframes siteHeaderLine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 220% 50%;
    }
}

.site-header__inner {
    position: relative;
    z-index: 100;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: nowrap;
}

.site-header--menu-only::before {
    display: none;
}
.site-header--menu-only {
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.07);
}
.site-menu-only-bar {
    display: none;
    min-height: 54px;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .site-menu-only-bar {
        display: flex;
    }
}

/* ==============================
   LOGO
================================= */
.site-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    border-radius: 18px;
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.site-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.16));
}

.site-logo picture {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    display: block;
    max-width: 100%;
    max-height: auto;
    height: auto;
    object-fit: contain;
}

/* ==============================
   SEARCH
================================= */
.site-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 520px;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.site-search:focus-within {
    z-index: 120;
}

.site-search-results {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    max-height: min(520px, 70vh);
    overflow-y: auto;
    padding: 7px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}
.site-search-results[hidden] {
    display: none;
}
.site-search-results > a {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 9px;
    border-radius: 6px;
    color: #172033;
    text-decoration: none;
    transition: background 0.18s ease;
}
.site-search-results > a:hover,
.site-search-results > a.is-active {
    background: #f1f6ff;
}
.site-search-result__media {
    display: grid;
    overflow: hidden;
    width: 52px;
    height: 44px;
    place-items: center;
    border-radius: 5px;
    background: #eef2f6;
    color: #98a2b3;
}
.site-search-result__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-search-result__body {
    display: grid;
    min-width: 0;
    gap: 3px;
}
.site-search-result__body small {
    color: var(--web-link-text, #2563eb);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}
.site-search-result__body strong {
    overflow: hidden;
    font-size: 13px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-search-results__message {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #667085;
    font-size: 13px;
}
.site-search .site-search-results__all {
    display: flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: #f8fafc;
    color: var(--web-link-text, #2563eb);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.site-search:focus-within {
    border-color: var(--web-link-text, #2563eb);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.12),
        0 14px 30px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.site-search > i {
    margin-left: 16px;
    color: #64748b;
    font-size: 14px;
}

.site-search input {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    color: #0f172a;
    font-size: 14px;
    background: transparent;
    border: 0;
    outline: none;
}

.site-search input::placeholder {
    color: #94a3b8;
}

.site-search button {
    min-width: 92px;
    min-height: 46px;
    padding: 0 18px;
    color: #ffffff;
    font-weight: 800;
    font-family: var(--web-button-font-family, inherit);
    font-size: var(--web-button-font-size, 14px);
    background: linear-gradient(135deg, var(--web-link-text, #2563eb), #1e40af);
    border: 0;
    cursor: pointer;
    transition:
        filter 0.25s ease,
        transform 0.25s ease;
    border-radius: 0 25px 25px 0;
}

.site-search button:hover {
    filter: brightness(1.08);
}

.site-search button:active {
    transform: scale(0.97);
}

/* ==============================
   HEADER TOOLS
================================= */
.site-header-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-header-banner-info {
    display: grid;
    /* max-width: 320px;
    padding: 10px 14px; */
    color: var(--web-banner-text-color, #ffffff);
    font-size: 13px;
    line-height: 1.55;
    /* background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
        var(--web-banner-background-color, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    word-break: break-word; */
}

.site-header-banner-info > * {
    margin: 0;
}

.site-header-banner-info a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
}

.site-header-banner-info strong,
.site-header-banner-info b {
    font-weight: 900;
}

/* ==============================
   LANGUAGE
================================= */
.site-language {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Dạng language cũ: .site-language > a */
.site-language > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    color: var(--web-menu-text, #334155);
    font-family: var(--web-menu-font-family, inherit);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.site-language > a img {
    width: 24px;
    height: 17px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15);
}

.site-language > a:hover,
.site-language > a.is-active {
    color: var(--web-link-text, #1d4ed8);
    background: var(--web-link-background, #eff6ff);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.13);
    transform: translateY(-2px);
}

.site-language > a.is-active::after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 7px;
    width: 7px;
    height: 7px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

/* Dạng language dropdown mới */
.site-language__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    color: #0f172a;
    /* font: inherit; */
    /* font-weight: 800; */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    cursor: pointer;
}

.site-language__toggle img,
.site-language__menu img {
    width: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.site-language__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    font-size: 12px;
    font-weight: 900;
    background: #f1f5f9;
    border-radius: 6px;
}

.site-language__name {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.site-language__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 80;
    /* min-width: 180px; */
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.site-language.is-open .site-language__menu,
.site-language:hover .site-language__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-language .site-language__menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 10px;
    color: #334155;
    font-size: 13px;
    /* font-weight: 750; */
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    transform: none;
}

.site-language .site-language__menu a:hover,
.site-language .site-language__menu a.is-active {
    color: var(--web-link-text, #1d4ed8);
    background: var(--web-link-background, #eff6ff);
}

/* ==============================
   HEADER ACTIONS
================================= */
.site-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.site-header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    gap: 8px;
    color: var(--web-menu-text, #334155);
    font: inherit;
    font-size: 13px;
    /* font-weight: 800; */
    white-space: nowrap;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header-action::before {
    content: "";
    position: absolute;
    inset: auto auto -45% -45%;
    width: 90%;
    height: 90%;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.18),
        transparent 65%
    );
    opacity: 0;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.site-header-action i,
.site-header-action span {
    position: relative;
    z-index: 1;
}

.site-header-action i {
    font-size: 16px;
}

.site-header-action:hover {
    color: var(--web-link-text, #1d4ed8);
    background: var(--web-link-background, #eff6ff);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.14);
    transform: translateY(-2px);
}

.site-header-action:hover::before {
    opacity: 1;
    transform: translate(16%, -16%);
}

/* ==============================
   CART ACTION SPECIAL - PREMIUM
================================= */
.site-header-action--cart {
    isolation: isolate;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(
            135deg,
            var(--web-link-text, #2563eb),
            #172554 58%,
            #020617
        );
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 14px 32px rgba(37, 99, 235, 0.28),
        0 4px 10px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.site-header-action--cart::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.42) 48%,
        transparent 62%,
        transparent 100%
    );
    opacity: 0;
    transform: translateX(-120%);
    transition:
        opacity 0.35s ease,
        transform 0.65s ease;
}

.site-header-action--cart::after {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: 0;
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 25% 20%,
            rgba(255, 255, 255, 0.28),
            transparent 34%
        ),
        radial-gradient(
            circle at 80% 100%,
            rgba(56, 189, 248, 0.22),
            transparent 38%
        );
    pointer-events: none;
}

.site-header-action--cart i,
.site-header-action--cart .site-header-action__text,
.site-header-action--cart span:not(.site-cart-badge) {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.site-header-action--cart i {
    font-size: 17px;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.22));
    transition: transform 0.25s ease;
}

.site-header-action--cart:hover {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #2563eb, #1e3a8a 56%, #020617);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow:
        0 18px 42px rgba(37, 99, 235, 0.38),
        0 0 0 5px rgba(37, 99, 235, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.035);
}

.site-header-action--cart:hover::before {
    opacity: 1;
    transform: translateX(120%);
}

.site-header-action--cart:hover i {
    transform: translateY(-1px) rotate(-8deg) scale(1.08);
}

.site-header-action--cart:active {
    transform: translateY(-1px) scale(0.98);
}

/* Badge sá»‘ lÆ°á»£ng */
.site-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fb7185, #ef4444 45%, #b91c1c);
    border: 2px solid #ffffff;
    border-radius: 999px;
    box-shadow:
        0 8px 18px rgba(220, 38, 38, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.site-cart-badge::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: inherit;
    animation: siteCartBadgePulse 1.8s ease-out infinite;
}

@keyframes siteCartBadgePulse {
    0% {
        opacity: 0.8;
        transform: scale(0.85);
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

/* ==============================
   CART DRAWER
================================= */
.site-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.site-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 91;
    display: flex;
    flex-direction: column;
    width: min(420px, 92vw);
    height: 100vh;
    background: #ffffff;
    box-shadow: -20px 0 50px rgba(15, 23, 42, 0.22);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

body.is-cart-open {
    overflow: hidden;
}

body.is-cart-open .site-cart-overlay {
    opacity: 1;
    visibility: visible;
}

body.is-cart-open .site-cart-drawer {
    transform: translateX(0);
}

.site-cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.site-cart-drawer__head span {
    display: block;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.site-cart-drawer__head strong {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
}

.site-cart-drawer__head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
}

.site-cart-drawer__body {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    text-align: center;
    color: #64748b;
}

.site-cart-empty > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: var(--web-link-text, #2563eb);
    font-size: 28px;
    background: var(--web-link-background, #eff6ff);
    border-radius: 18px;
}

.site-cart-empty > p {
    margin: 0;
    color: #475569;
    font-weight: 700;
}

.site-cart-drawer__foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 20px 20px;
    border-top: 1px solid #e2e8f0;
}

.site-cart-drawer__foot a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    color: #334155;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.site-cart-drawer__foot a:last-child {
    color: #ffffff;
    background: var(--web-link-text, #2563eb);
    border-color: var(--web-link-text, #2563eb);
}

/* ==============================
   DYNAMIC COMMERCE BADGES
================================= */
.site-action-badge[data-count="0"] {
    display: none;
}

.site-cart-drawer__body.has-items {
    display: block;
    overflow-y: auto;
    padding: 8px 20px;
    text-align: left;
}

.site-cart-empty {
    display: flex;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.site-cart-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}

.site-cart-item__media {
    display: grid;
    overflow: hidden;
    width: 76px;
    height: 76px;
    place-items: center;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 6px;
    background: #f1f5f9;
}

.site-cart-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-cart-item__body {
    min-width: 0;
}

.site-cart-item__title {
    display: -webkit-box;
    overflow: hidden;
    color: #0f172a;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.4;
    text-decoration: none !important;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    line-clamp: 2;
}
.site-cart-item__price {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 14px;
}

.site-cart-item__controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
}

.site-cart-item__controls button {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    color: #475569;
    cursor: pointer;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    background: #ffffff;
}

.site-cart-item__controls button:last-child {
    margin-left: auto;
    color: #dc2626;
}

.site-cart-item__controls span {
    min-width: 24px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 750;
    text-align: center;
}

.site-cart-total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 4px;
}

.site-cart-total span {
    color: #475569;
    font-weight: 700;
}

.site-cart-total strong {
    color: #dc2626;
    font-size: 18px;
}
/* ==============================
   CART DRAWER LAYOUT FIX
================================= */
.site-cart-drawer,
.site-cart-drawer * {
    box-sizing: border-box;
}

.site-cart-drawer__body {
    min-width: 0;
    min-height: 0;
}

.site-cart-drawer__body.has-items {
    flex: 1 1 auto;
    align-items: initial;
    justify-content: initial;
    flex-direction: initial;
    gap: 0;
    overscroll-behavior: contain;
}

.site-cart-item {
    width: 100%;
    min-width: 0;
}

.site-cart-item__media > i {
    width: auto;
    height: auto;
    color: #94a3b8;
    font-size: 22px;
    background: transparent;
}

.site-cart-item__controls button i {
    width: auto;
    height: auto;
    color: inherit;
    font-size: 11px;
    background: transparent;
    border-radius: 0;
}

.site-cart-item__controls button:last-child i {
    font-size: 13px;
}

.site-cart-drawer__foot {
    flex: 0 0 auto;
    background: #ffffff;
}

@media (max-width: 480px) {
    .site-cart-drawer {
        width: 100vw;
    }

    .site-cart-drawer__head {
        padding: 16px;
    }

    .site-cart-drawer__body.has-items {
        padding: 6px 16px;
    }

    .site-cart-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 11px;
    }

    .site-cart-item__media {
        width: 64px;
        height: 64px;
    }

    .site-cart-drawer__foot {
        padding: 14px 16px 16px;
    }
}

/* Source: public/css/web/menu.css */
/* ==============================
   MENU DESKTOP
================================= */
.site-nav {
    position: relative;
    z-index: 45;
    border-top: 1px solid rgba(226, 232, 240, 0.78);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(248, 250, 252, 0.96)
    );
}

.site-header--menu-only .site-nav {
    border-top: 0;
}

.site-nav__inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    max-width: 190px;
    min-width: 120px;
    min-height: 42px;
    margin-right: 10px;
}

.site-nav__brand img {
    display: block;
    width: auto;
    max-width: 100%;
    /* max-height: 42px; */
    height: auto;
    object-fit: contain;
}

.site-nav {
    min-height: 62px;
}

.site-nav__menu {
    min-height: 42px;
}

.site-nav__menu {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    flex: 1 1 auto;
    /* justify-content: flex-end; */
}

.site-nav__extras {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 0;
}

.site-nav__search-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid #dbe4ed;
    border-radius: 999px;
    color: #334155;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.site-nav__search-toggle:hover {
    color: var(--web-link-text, #1d4ed8);
    background: var(--web-link-background, #eff6ff);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.14);
}

.site-nav__consult-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 0 16px;
    border: 1px solid var(--web-main-color, var(--web-link-text, #01711b));
    border-radius: 999px;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    background: var(--web-main-color, var(--web-link-text, #01711b));
    box-shadow: 0 9px 20px color-mix(in srgb, var(--web-main-color, #01711b), transparent 72%);
    cursor: pointer;
    transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.site-nav__consult-toggle:hover,
.site-nav__consult-toggle:focus-visible {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 13px 26px color-mix(in srgb, var(--web-main-color, #01711b), transparent 62%);
}

.site-nav__consult-toggle:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--web-main-color, #01711b), transparent 70%);
    outline-offset: 2px;
}

.site-nav__consult-toggle:active {
    transform: translateY(0);
}

.site-nav__info {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-height: 42px;
    padding-left: 18px;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.site-nav__info > * {
    margin: 0;
}

.site-nav__info a {
    color: var(--web-link-text, #1d4ed8);
    text-decoration: none;
}

.site-nav__info a:hover {
    text-decoration: underline;
}

.site-nav__mobile-head,
.site-mobile-menu-overlay {
    display: none;
}

.site-search-modal[hidden] {
    display: none !important;
}

.site-search-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 92px 22px 22px;
    isolation: isolate;
}

.site-search-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(9, 15, 25, 0.72);
    backdrop-filter: blur(10px) saturate(0.82);
    cursor: pointer;
}

.site-search-modal__focus {
    position: absolute;
    top: 84px;
    left: 50%;
    width: min(880px, calc(100vw - 44px));
    height: 220px;
    transform: translateX(-50%);
    border-radius: 34px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.55),
        rgba(255, 255, 255, 0.1) 42%,
        transparent 72%
    );
    filter: blur(12px);
    pointer-events: none;
}

.site-search-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(56, 189, 248, 0.16),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.985),
            rgba(247, 250, 252, 0.97)
        );
    box-shadow:
        0 34px 90px rgba(15, 23, 42, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.14);
}

.site-search-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.site-search-modal__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--web-link-text, #2563eb);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-search-modal__head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.2;
}

.site-search-modal__desc {
    margin: 10px 0 0;
    color: #5b6778;
    font-size: 14px;
    line-height: 1.7;
}

.site-search-modal__close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid #dbe4ed;
    border-radius: 50%;
    color: #475569;
    background: #ffffff;
    cursor: pointer;
}

.site-search--modal {
    max-width: none;
    min-width: 0;
    position: relative;
    z-index: 2;
    margin-top: 10px;
    border-width: 1px;
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.12),
        0 0 0 8px rgba(255, 255, 255, 0.32);
}

body.is-search-modal-open {
    overflow: hidden;
}

.site-nav__link-row {
    display: contents;
}

.site-nav__submenu-toggle {
    display: none;
}

.site-nav__item,
.site-nav__child {
    position: relative;
}

/* Hỗ trợ cả menu có class .site-nav__link và menu cũ dùng thẳng thẻ a */
.site-nav__link,
.site-nav__inner > a,
.site-nav__dropdown a,
.site-nav__subdropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--web-menu-text, #334155);
    font-family: var(--web-menu-font-family, inherit);
    font-size: var(--web-menu-font-size, 15px);
    /* font-weight: 800; */
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.site-nav__link,
.site-nav__inner > a {
    position: relative;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
}

.site-nav__link::after,
.site-nav__inner > a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 7px;
    height: 2px;
    background: var(--web-link-text, #2563eb);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-nav__link i {
    font-size: 11px;
    transition: transform 0.22s ease;
}

.site-nav__item:hover > .site-nav__link i {
    transform: rotate(180deg);
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__inner > a:hover,
.site-nav__inner > a.is-active {
    color: var(--web-link-text, #1d4ed8);
    /* background: var(--web-link-background, #eff6ff); */
    transform: translateY(-1px);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after,
.site-nav__inner > a:hover::after,
.site-nav__inner > a.is-active::after {
    transform: scaleX(1);
}

/* ==============================
   DROPDOWN
================================= */
.site-nav__dropdown,
.site-nav__subdropdown {
    position: absolute;
    z-index: 70;
    min-width: 240px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}

.site-nav__dropdown {
    top: calc(100% + 10px);
    left: 0;
    transform: translateY(10px);
}

.site-nav__dropdown::before {
    content: "";
    position: absolute;
    left: 22px;
    top: -7px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid rgba(226, 232, 240, 0.95);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    transform: rotate(45deg);
}

.site-nav__subdropdown {
    top: -8px;
    left: calc(100% + 10px);
    transform: translateX(-6px);
}

.site-nav__item:hover > .site-nav__dropdown,
.site-nav__item:focus-within > .site-nav__dropdown,
.site-nav__child:hover > .site-nav__subdropdown,
.site-nav__child:focus-within > .site-nav__subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.site-nav__dropdown a,
.site-nav__subdropdown a {
    position: relative;
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    white-space: normal;
}

.site-nav__dropdown a::after,
.site-nav__subdropdown a::after {
    display: none;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a.is-active,
.site-nav__subdropdown a:hover,
.site-nav__subdropdown a.is-active {
    color: var(--web-link-text, #1d4ed8);
    background: var(--web-link-background, #eff6ff);
    box-shadow: inset 3px 0 0 var(--web-link-text, #2563eb);
}

/* ==============================
   MOBILE MENU BUTTON
================================= */
.site-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    cursor: pointer;
}

.site-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0f172a;
    border-radius: 99px;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-header,
.site-mobile-search-toggle {
    display: none;
}

/* Source: public/css/web/banner.css */
.home-hero {
    color: var(--web-banner-text, #ffffff);
    font-family: var(--web-banner-font-family, inherit);
    background: var(--web-banner-background, #0f172a);
}

.home-hero__inner {
    display: grid;
    align-items: center;
    min-height: 420px;
    padding: 72px 0;
}

.home-hero__eyebrow {
    margin: 0 0 10px;
    color: var(--web-link-background, #bfdbfe);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    font-size: var(--web-banner-font-size, 46px);
    line-height: 1.12;
}

.home-hero p {
    max-width: 650px;
    margin: 0;
    font-size: 18px;
}

.home-slideshow {
    position: relative;
    overflow: hidden;
    color: var(--web-banner-text, #ffffff);
    background: var(--web-banner-background, #0f172a);
}

.home-slideshow__track {
    position: relative;
    display: grid;
    min-height: 0;
}

.home-slideshow__item {
    position: relative;
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.home-slideshow__item.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-slideshow__media,
.home-slideshow__media picture,
.home-slideshow__media img {
    display: block;
    width: 100%;
}

.home-slideshow__media img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

/* .home-slideshow__item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.54),
        rgba(15, 23, 42, 0.16),
        rgba(15, 23, 42, 0.02)
    );
} */

.home-slideshow__caption {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.home-slideshow__caption > div {
    max-width: 720px;
}

.home-slideshow__caption h1 {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: var(--web-banner-font-family, inherit);
    font-size: var(--web-banner-font-size, 46px);
    line-height: 1.12;
}

.home-slideshow__caption p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.65;
}

.home-slideshow__dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transform: translateX(-50%);
}

.home-slideshow__dots button {
    position: relative;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    outline: none;
    transition:
        width 0.28s ease,
        height 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.home-slideshow__dots button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
}

.home-slideshow__dots button.is-active {
    width: 30px;
    height: 10px;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
    transform: scale(1);
}

.home-slideshow__dots button:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
    .home-slideshow__track,
    .home-slideshow__media img {
        min-height: 0;
    }

    .home-slideshow__caption {
        align-items: flex-end;
        padding-bottom: 56px;
    }

    .home-slideshow__caption h1 {
        font-size: var(--web-banner-mobile-font-size, 30px);
    }

    .home-slideshow__caption p {
        font-size: 15px;
    }
}
/* ==============================
   HOME SLIDESHOW ANIMATION UPGRADE
================================= */

/* Slide fade mÆ°á»£t hÆ¡n */
.home-slideshow__item {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(0);
    transition:
        opacity 0.85s ease,
        visibility 0.85s ease;
}

.home-slideshow__item.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hiệu ứng zoom nhẹ cho ảnh */
.home-slideshow__item .home-slideshow__media img {
    transform: scale(1.045);
    transition:
        transform 1.6s ease,
        filter 1.2s ease;
    will-change: transform;
}

.home-slideshow__item.is-active .home-slideshow__media img {
    transform: scale(1);
}

/* Caption hiện lên mềm hơn */
.home-slideshow__caption > div {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s ease 0.18s,
        transform 0.75s ease 0.18s;
}

.home-slideshow__item.is-active .home-slideshow__caption > div {
    opacity: 1;
    transform: translateY(0);
}

/* Dots nhấn đẹp hơn */
.home-slideshow__dots button {
    overflow: hidden;
}

.home-slideshow__dots button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: scale(0.4);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.home-slideshow__dots button:hover::after {
    opacity: 1;
    transform: scale(1);
}

.home-slideshow__dots button.is-active::after {
    opacity: 0;
}

/* Source: public/css/web/content.css */
.site-section {
    padding: 56px 0;
    font-family: var(--web-content-font-family, inherit);
    font-size: var(--web-content-font-size, 16px);
}

.site-section h2 {
    margin: 0 0 12px;
    color: var(--web-title-text, #0f172a);
    font-family: var(--web-title-font-family, inherit);
    font-size: var(--web-title-font-size, 30px);
}

.site-section h3,
.site-section h4,
.site-section h5,
.site-section h6 {
    color: var(--web-heading-text, #111827);
    font-family: var(--web-heading-font-family, inherit);
    font-size: var(--web-heading-font-size, inherit);
}

.home-section {
    padding: 64px 0;
    color: var(--web-body-text, #1f2937);
    background: var(--web-body-background, #ffffff);
}

.home-section:nth-of-type(even) {
    background: #f8fafc;
}

/* ==============================
   HOME SECTION TITLE - PREMIUM CENTER
================================= */
.home-section__head {
    position: relative;
    /* max-width: 980px; */
    margin: 0 auto 42px;
    text-align: center;
}

.home-section__head h2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    margin: 0;
    color: var(--web-title-text, #0f172a);
    font-family: var(--web-title-font-family, inherit);
    font-size: var(--web-title-font-size, 34px);
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.home-section__head h2::before,
.home-section__head h2::after {
    content: "";
    display: block;
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--web-link-text, #2563eb)
    );
    border-radius: 999px;
}

.home-section__head h2::after {
    background: linear-gradient(
        90deg,
        var(--web-link-text, #2563eb),
        transparent
    );
}

.home-section__head h2 a {
    color: inherit;
    text-decoration: none;
}

/* .home-section__head h2 a::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 18px;
    bottom: 8px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0),
        rgba(37, 99, 235, 0.48) 52%,
        rgba(15, 23, 42, 0)
    );
    border-radius: 999px;
    opacity: 0.78;
}

.home-section__head h2 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.54);
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.05);
} */

/* Mô tả dưới tiêu đề nếu có */
.home-section__head p {
    max-width: 720px;
    margin: 28px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.home-section__content {
    color: var(--web-body-text, #1f2937);
    font-family: var(--web-content-font-family, inherit);
    font-size: var(--web-content-font-size, 16px);
    line-height: 1.75;
}

.home-section__content > :first-child,
.home-introduction__content > :first-child {
    margin-top: 0;
}

.home-section__content > :last-child,
.home-introduction__content > :last-child {
    margin-bottom: 0;
}

/* ==============================
   HOME SECTION ACTIONS
================================= */
.home-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.home-section__actions a {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: linear-gradient(135deg, var(--web-link-text, #2563eb), #1e40af);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow:
        0 14px 28px rgba(37, 99, 235, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transform: translateY(0);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.home-section__actions a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.38) 48%,
        transparent 62%,
        transparent 100%
    );
    transform: translateX(-130%);
    transition: transform 0.65s ease;
}

.home-section__actions a::after {
    content: "➜";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition:
        width 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.home-section__actions a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    box-shadow:
        0 18px 38px rgba(37, 99, 235, 0.34),
        0 0 0 5px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transform: translateY(-3px);
}

.home-section__actions a:hover::before {
    transform: translateX(130%);
}

.home-section__actions a:hover::after {
    width: 16px;
    opacity: 1;
    transform: translateX(0);
}

.home-section__actions a:active {
    transform: translateY(-1px) scale(0.98);
}

@media (max-width: 640px) {
    .home-section {
        padding: 44px 0;
    }
}

/* Source: public/css/web/modules/home-section.css */
/* ==============================
   HOME MODULE SECTION GRID
================================= */
.home-section-placement {
    min-width: 0;
    overflow-x: hidden;
}
.home-section-placement.is-full-row > .home-section > .site-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(16px, 3vw, 54px);
}
.home-section-placement.is-top-fixed,
.home-section-placement.is-bottom-fixed {
    content-visibility: visible;
    contain-intrinsic-size: auto;
    position: fixed;
    z-index: 68;
    right: 0;
    left: 0;
    max-height: min(42vh, 440px);
    overflow-y: auto;
    overflow-x: hidden;
    border-color: #dbe4ed;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.18);
}
.home-section-placement.is-top-fixed {
    top: var(--home-fixed-top, 0);
    border-bottom: 1px solid #dbe4ed;
}
.home-section-placement.is-bottom-fixed {
    bottom: var(--home-fixed-bottom, 0);
    border-top: 1px solid #dbe4ed;
}
.home-section-placement.is-top-fixed > .home-section,
.home-section-placement.is-bottom-fixed > .home-section {
    padding-block: 16px;
}
.home-section-placement__close {
    position: sticky;
    z-index: 8;
    top: 8px;
    float: right;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin: 8px 10px -40px 0;
    padding: 0;
    border: 1px solid #d9e2ec;
    border-radius: 7px;
    color: #526b82;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
}
.home-section-placement__close:hover {
    color: #b42318;
    border-color: #fecaca;
    background: #fff1f0;
}

.winora-content-link {
    display: flex;
    gap: 16px;
    align-items: stretch;
    max-width: 760px;
    margin: 22px 0;
    overflow: hidden;
    border: 1px solid #dbe4ed;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}
.winora-content-link:hover {
    border-color: var(--web-main-color, #00853f);
    transform: translateY(-2px);
}
.winora-content-link > img {
    width: 170px;
    min-height: 128px;
    object-fit: cover;
}
.winora-content-link__body {
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 16px 18px 16px 0;
}
.winora-content-link__body small {
    color: var(--web-main-color, #00853f);
    font-weight: 700;
    text-transform: uppercase;
}
.winora-content-link__body strong {
    color: #172033;
    font-size: 18px;
}
.winora-content-link__body em {
    color: #64748b;
    font-style: normal;
    line-height: 1.55;
}
@media (max-width: 640px) {
    .winora-content-link {
        display: block;
    }
    .winora-content-link > img {
        width: 100%;
        height: 180px;
    }
    .winora-content-link__body {
        padding: 14px;
    }
}

.site-global-home-section {
    position: relative;
    background: #fff;
}

.site-global-home-section__close {
    display: none;
}

.site-global-home-section--bottom {
    margin-top: 0;
}

.site-global-home-section[hidden] {
    display: none;
}
.home-section-placement[hidden] {
    display: none !important;
}
@media (max-width: 767px) {
    .home-section-placement.is-top-fixed,
    .home-section-placement.is-bottom-fixed {
        max-height: 50vh;
    }
    .home-section-placement.is-top-fixed > .home-section,
    .home-section-placement.is-bottom-fixed > .home-section {
        padding-block: 12px;
    }
}
.home-section-placement--reveal {
    opacity: 0;
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.home-section-placement--reveal.is-visible {
    opacity: 1;
    transform: none;
}
.home-section-placement--fade-in {
    transform: none;
}
.home-section-placement--fade-up {
    transform: translate3d(0, 44px, 0);
}
.home-section-placement--fade-down {
    transform: translate3d(0, -44px, 0);
}
.home-section-placement--fade-left {
    transform: translate3d(40px, 0, 0);
}
.home-section-placement--fade-right {
    transform: translate3d(-40px, 0, 0);
}
.home-section-placement--zoom-in {
    transform: translate3d(0, 18px, 0) scale(0.96);
    transform-origin: center top;
}
.home-section-placement--zoom-out {
    transform: translate3d(0, 12px, 0) scale(1.04);
    transform-origin: center top;
}
.home-section-placement--blur-up {
    filter: blur(14px);
    transform: translate3d(0, 32px, 0);
}
.home-section-placement--rotate-in {
    transform: perspective(1000px) rotateX(8deg) translate3d(0, 28px, 0);
    transform-origin: center top;
}
.home-section-item-reveal {
    opacity: 0;
    transition:
        opacity
            var(--home-item-reveal-duration, var(--home-reveal-duration, 720ms))
            cubic-bezier(0.22, 1, 0.36, 1),
        transform
            var(--home-item-reveal-duration, var(--home-reveal-duration, 720ms))
            cubic-bezier(0.22, 1, 0.36, 1),
        filter
            var(--home-item-reveal-duration, var(--home-reveal-duration, 720ms))
            cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--home-item-delay, 0ms);
    will-change: opacity, transform, filter;
}
.home-section-item-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
}
.home-section-item-reveal--fade-in {
    transform: none;
}
.home-section-item-reveal--fade-up {
    transform: translate3d(0, 24px, 0);
}
.home-section-item-reveal--fade-down {
    transform: translate3d(0, -24px, 0);
}
.home-section-item-reveal--fade-left {
    transform: translate3d(24px, 0, 0);
}
.home-section-item-reveal--fade-right {
    transform: translate3d(-24px, 0, 0);
}
.home-section-item-reveal--zoom-in {
    transform: translate3d(0, 12px, 0) scale(0.96);
}
.home-section-item-reveal--zoom-out {
    transform: translate3d(0, 8px, 0) scale(1.04);
}
.home-section-item-reveal--blur-up {
    filter: blur(10px);
    transform: translate3d(0, 18px, 0);
}
.home-section-item-reveal--rotate-in {
    transform: perspective(900px) rotateX(10deg) translate3d(0, 14px, 0);
    transform-origin: center top;
}
@media (prefers-reduced-motion: reduce) {
    .home-section-placement--reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .home-section-placement--blur-up,
    .home-section-item-reveal--blur-up {
        filter: none;
    }
    .home-section-item-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
        transition-delay: 0ms;
    }
}
.home-section__items {
    display: grid;
    grid-template-columns: repeat(var(--home-desktop-cols, 4), minmax(0, 1fr));
    gap: 25px;
    margin-top: 28px;
}

@media (min-width: 1280px) {
    .home-section__items {
        grid-template-columns: repeat(
            var(--home-large-cols, 5),
            minmax(0, 1fr)
        );
    }
}

@media (max-width: 1024px) {
    .home-section__items {
        grid-template-columns: repeat(
            var(--home-tablet-cols, 3),
            minmax(0, 1fr)
        );
    }
}

@media (max-width: 767px) {
    .home-section__items {
        grid-template-columns: repeat(
            var(--home-mobile-cols, 2),
            minmax(0, 1fr)
        );
        gap: 16px;
    }
}

@media (max-width: 374px) {
    .home-section__items {
        grid-template-columns: repeat(var(--home-xs-cols, 1), minmax(0, 1fr));
    }
}

.home-section-card {
    overflow: hidden;
    border-radius: var(--web-border-radius, 8px);
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.home-section-card:hover {
    transform: translateY(-4px);
}

.home-section-carousel {
    position: relative;
    margin-top: 28px;
    padding: 0 0 30px;
}
.home-section-carousel.has-arrows {
    padding-right: 42px;
    padding-left: 42px;
}
.home-section-carousel .home-section__items {
    margin-top: 0;
}
.home-section__items.is-carousel {
    --visible-cols: var(--home-desktop-cols, 4);
    --carousel-gap: 10px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-template-rows: repeat(var(--home-carousel-rows, 1), max-content);
    grid-auto-columns: var(--carousel-item-width, 280px);
    gap: var(--carousel-gap);
    align-items: start;
    align-content: start;
    justify-content: start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.home-section__items.is-carousel::-webkit-scrollbar {
    display: none;
}
.home-section__items.is-carousel > * {
    min-width: 0;
    scroll-snap-align: start;
}
.home-section__items.is-carousel > .home-section-card,
.home-section__items.is-carousel > .home-article-card,
.home-section__items.is-carousel > .product-card {
    width: 100%;
    height: auto;
    align-self: start;
}
.home-section-carousel__arrow {
    position: absolute;
    z-index: 3;
    top: calc(50% - 30px);
    width: 34px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #d9e2ec;
    border-radius: 7px;
    color: #425b70;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.home-section-carousel__arrow:hover {
    color: #fff;
    border-color: var(--web-link-text, #2563eb);
    background: var(--web-link-text, #2563eb);
}
.home-section-carousel__arrow.is-prev {
    left: 0;
}
.home-section-carousel__arrow.is-next {
    right: 0;
}
.home-section-carousel__dots {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.home-section-carousel.has-arrows .home-section-carousel__dots {
    right: 42px;
    left: 42px;
}
.home-section-carousel__dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    background: #c4ced8;
    transition: 0.2s ease;
}
.home-section-carousel__dots button.is-active {
    width: 22px;
    background: var(--web-link-text, #2563eb);
}
@media (min-width: 1280px) {
    .home-section__items.is-carousel {
        --visible-cols: var(--home-large-cols, 5);
    }
}
@media (max-width: 1024px) {
    .home-section__items.is-carousel {
        --visible-cols: var(--home-tablet-cols, 3);
    }
}
@media (max-width: 767px) {
    .home-section-carousel {
        padding-inline: 0;
    }
    .home-section__items.is-carousel {
        --visible-cols: var(--home-mobile-cols, 2);
        --carousel-gap: 16px;
    }
    .home-section-carousel__arrow {
        top: auto;
        bottom: 0;
    }
    .home-section-carousel__dots {
        right: 45px;
        bottom: 17px;
        left: 45px;
    }
    .home-section-carousel.no-arrows .home-section-carousel__dots {
        right: 0;
        left: 0;
    }
}
@media (max-width: 374px) {
    .home-section__items.is-carousel {
        --visible-cols: var(--home-xs-cols, 1);
    }
}

.home-section-card__image {
    display: block;
    /* aspect-ratio: 4 / 3; */
    overflow: hidden;
    background: #e2e8f0;
}

.home-section-card__image img {
    display: block;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-section-card:hover .home-section-card__image img {
    transform: scale(1.04);
}

.home-section-card__body {
    padding: 16px;
}

.home-section-card__body h3 {
    margin: 0;
    color: var(--web-title-text, #0f172a);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
}

.home-section-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.home-section-card__body h3 a:hover {
    color: var(--web-link-text, #2563eb);
}

.home-section-card__body p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

/* News cards match the public article listing. */
.home-section-card--news {
    position: relative;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}
.home-section-card--news:hover {
    transform: none;
}
.home-section-card--news .home-section-card__image {
    aspect-ratio: 16 / 9;
}
.home-section-card--news .home-section-card__image img {
    height: 100%;
}
.home-section-card--news .home-section-card__body {
    padding: 18px 18px 0;
}
.home-section-card--news .home-section-card__body h3 {
    font-size: 22px;
    font-weight: 750;
    line-height: 1.4;
    text-align: center;
}
.home-section-card--news .home-section-card__body p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 26px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.85;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-section-card__date {
    position: absolute;
    z-index: 1;
    top: 39px;
    left: -10px;
    display: grid;
    width: 67px;
    min-height: 67px;
    place-content: center;
    border: 3px solid var(--web-link-text, #01711b);
    background: #fff;
    color: var(--web-link-text, #01711b);
    line-height: 1;
    text-align: center;
}
.home-section-card__date strong {
    font-size: 24px;
    font-weight: 800;
}
.home-section-card__date span {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 700;
}

.home-latest-showcase {
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 42px 0;
    background: #fff;
}
.home-section-placement--latest-showcase {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
    overflow-y: clip !important;
}
html:has(.home-section-placement--latest-showcase) {
    overflow-y: auto;
}
body:has(.home-section-placement--latest-showcase),
.site-shell:has(.home-section-placement--latest-showcase) {
    height: auto;
    max-height: none;
    overflow: visible;
}
.home-latest-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
}
.home-latest-showcase__panel h2 {
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
    color: var(--web-title-text, #0f172a);
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
}
.home-latest-showcase__intro {
    margin: 27px 0 16px;
    color: #334155;
    font-size: 14px;
}
.home-latest-projects,
.home-latest-news {
    display: grid;
    padding-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 16px;
}
.home-latest-projects__item,
.home-latest-news__item {
    position: relative;
    min-width: 0;
    text-align: center;
}

/* Keep the news panel on the home showcase visually aligned with article-list cards. */
.home-latest-news__item {
    overflow: hidden;
    text-align: left;
    border: 1px solid #d9dee5;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.home-latest-projects__item {
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}
.home-latest-projects__item img,
.home-latest-news__image {
    display: block;
    width: 100%;
    /* aspect-ratio: 16 / 9; */
    overflow: hidden;
    background: #e5e7eb;
}
.home-latest-news__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.home-latest-news__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: transparent;
    opacity: 0;
    transition: opacity .35s ease;
}
.home-latest-projects__item img,
.home-latest-news__image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}
.home-latest-news__image img {
    height: 100%;
    transition: transform .65s cubic-bezier(.2, .75, .25, 1), filter .4s ease;
}
.home-latest-projects__item strong {
    display: block;
    min-height: 81px;
    margin-top: 8px;
    /* font-size: 20px; */
    line-height: 1.35;
    margin-bottom: 20px;
}
.home-latest-news__item time {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    display: grid;
    width: 54px;
    min-height: 54px;
    place-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--web-main-color, var(--web-link-text, #01711b));
    color: #fff;
    line-height: 1;
    text-align: center;
    box-shadow: 0 7px 16px color-mix(in srgb, var(--web-main-color, #01711b), transparent 65%);
}
.home-latest-news__item time strong {
    font-size: 19px;
    font-weight: 800;
}
.home-latest-news__item time span {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
}
.home-latest-news__item h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 0;
    margin: 0;
    padding: 18px 18px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-latest-news__item h3 {
    font-family: var(--web-card-title-font-family) !important;
    font-size: var(--web-card-title-font-size) !important;
}
.home-latest-news__item h3 a {
    color: var(--web-heading-text, #111827);
    text-decoration: none;
}
.home-latest-news__item p {
    display: -webkit-box;
    overflow: hidden;
    margin: 12px 18px 20px;
    color: #526174;
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (hover: hover) and (pointer: fine) {
    .home-latest-news__item:hover {
        border-color: #c8d2df;
        box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
        transform: none;
    }
    .home-latest-news__item:hover .home-latest-news__image::after { opacity: 1; }
    .home-latest-news__item:hover .home-latest-news__image img { filter: saturate(1.07); transform: scale(1.08); }
    .home-latest-news__item:hover h3 a { color: var(--web-link-text, #2563eb); }
}
@media (max-width: 767px) {
    .home-latest-showcase__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 640px) {
    .home-section-card__body {
        padding: 14px;
    }
    .home-section-card--news .home-section-card__body {
        padding: 14px 8px 0;
    }
    .home-section-card--news .home-section-card__body h3 {
        font-size: 19px;
    }
    .home-section-card--news .home-section-card__body p {
        margin-top: 15px;
        font-size: 16px;
    }
    .home-section-card__date {
        top: 20px;
        left: -6px;
        width: 58px;
        min-height: 58px;
    }
    .home-section-card__date strong {
        font-size: 21px;
    }
    .home-section-card__date span {
        font-size: 14px;
    }
}

/* Source: public/css/web/modules/home-about.css */
.home-section--about .home-section__items {
    align-items: stretch;
}

.home-about-card {
    border-color: rgba(20, 120, 255, 0.18);
}

.home-about-card .home-section-card__body h3 {
    font-size: 18px;
}

.home-about-card .home-section-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-about-card .home-section-card__action {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: 16px;
    color: var(--web-link-text, #2563eb);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-about-card .home-section-card__action:hover {
    text-decoration: underline;
}

/* Source: public/css/web/modules/home-product.css */
/* ==============================
   HOME MODULE - PRODUCT
================================= */
.home-section--product {
    background: #f8fafc;
    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
}

.home-product__head {
    align-items: end;
}

.home-product__head h2 {
    position: relative;
    padding-bottom: 12px;
}

/* .home-product__head h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    border-radius: 2px;
    background: var(--web-link-text, #2563eb);
} */

.home-product__grid {
    align-items: stretch;
    gap: 18px;
}
.home-product__grid.is-carousel {
    --carousel-gap: 18px;
}
@media (max-width: 767px) {
    .home-product__grid.is-carousel {
        --carousel-gap: 16px;
    }
}

.home-product__grid .product-card {
    height: 100%;
    border-color: #e1e7ee;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.home-product__grid .product-card:hover {
    border-color: rgba(37, 99, 235, 0.38);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.home-product__grid .product-card__media {
    aspect-ratio: 1;
    background: #ffffff;
}

.home-product__grid .product-card__media img {
    object-fit: contain;
}

.home-product__grid .product-card__body {
    padding: 15px;
}

.home-product__grid .product-card__category {
    overflow: hidden;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 11px;
    letter-spacing: 0;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-product__grid .product-card h2 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-product__grid .product-card__footer {
    display: grid;
    gap: 13px;
    padding-top: 14px;
    border-top: 1px solid #edf1f5;
}

.home-product__grid .product-price {
    min-height: 42px;
    justify-content: center;
}

.home-product__grid .product-price strong {
    font-size: 16px;
    line-height: 1.5;
    color: #d70018;
    display: inline-block;
}

.home-product__grid .product-card__commands {
    width: 100%;
}

.home-product__grid .product-card__cart,
.home-product__grid .product-card__detail {
    flex: 1;
}

.home-product__grid .product-card__quick-actions {
    opacity: 0;
    transform: translateX(6px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.home-product__grid .product-card:hover .product-card__quick-actions,
.home-product__grid .product-card:focus-within .product-card__quick-actions {
    opacity: 1;
    transform: translateX(0);
}

@media (hover: none) {
    .home-product__grid .product-card__quick-actions {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    .home-product__grid {
        gap: 14px;
    }

    .home-product__grid .product-card__body {
        padding: 13px;
    }

    .home-product__grid .product-card__quick-actions {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 520px) {
    .home-product__grid .product-card__cart span,
    .home-product__grid .product-card__detail span {
        display: inline;
    }
}

/* Source: public/css/web/footer.css */
.site-footer {
    position: relative;
    color: var(--web-footer-text, #cbd5e1);
    font-family: var(--web-footer-font-family, inherit);
    font-size: var(--web-footer-font-size, 15px);
    background: var(--web-footer-background, #0f172a);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
    padding: 48px 0;
}

.site-footer__content {
    min-width: 0;
}

.site-footer__content > :first-child {
    margin-top: 0;
}

.site-footer__content > :last-child {
    margin-bottom: 0;
}

.site-footer-subscribe-section {
    padding: 0 0 24px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        color-mix(
                in srgb,
                var(--web-footer-background, #0f172a) 8%,
                transparent
            )
            100%
    );
}

.site-footer-subscribe {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 26px;
    align-items: center;
    padding: 26px 28px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 30px;
    color: #dbeafe;
    background:
        radial-gradient(
            circle at top left,
            rgba(96, 165, 250, 0.24),
            transparent 38%
        ),
        radial-gradient(
            circle at right center,
            rgba(14, 165, 233, 0.16),
            transparent 28%
        ),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.28);
    overflow: hidden;
}

.site-footer-subscribe::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.14);
    filter: blur(8px);
    pointer-events: none;
}

.site-footer-subscribe__content,
.site-footer-subscribe__form-wrap {
    position: relative;
    z-index: 1;
}

.site-footer-subscribe__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(191, 219, 254, 0.18);
    border-radius: 999px;
    color: #bfdbfe;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
}

.site-footer-subscribe h2 {
    margin: 12px 0 8px;
    color: #f8fafc;
    font-family: var(--web-h2-font-family, inherit);
    font-size: var(--web-h2-font-size, 32px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.site-footer-subscribe p {
    max-width: 560px;
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer-subscribe__form-wrap {
    display: grid;
    gap: 10px;
}

.site-footer-subscribe__alert {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
}

.site-footer-subscribe__alert--success {
    color: #d1fae5;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.site-footer-subscribe__alert--error {
    color: #fee2e2;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.24);
}

.site-footer-subscribe__form {
    display: grid;
    gap: 10px;
}

.site-footer-subscribe__field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer-subscribe__field-main {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
}

.site-footer-subscribe__icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #1d4ed8;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.site-footer-subscribe__field input {
    width: 100%;
    min-height: 50px;
    border: 0;
    color: #0f172a;
    font-size: 15px;
    background: transparent;
    outline: none;
}

.site-footer-subscribe__field input::placeholder {
    color: #64748b;
}

.site-footer-subscribe__honeypot {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.site-footer-subscribe .turnstile-box {
    margin: 0;
}

.site-footer-subscribe__field button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    color: #eff6ff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.site-footer-subscribe__field button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.3);
    filter: brightness(1.03);
}

.site-footer-subscribe__form button {
    font-family: inherit;
}

.site-footer-subscribe__form button:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.site-footer__content h1,
.site-footer__content h2,
.site-footer__content h3 {
    color: var(--web-footer-text, #ffffff);
}

.site-footer__content a {
    color: var(--web-link-text, #93c5fd);
}

.site-footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.site-footer-contact__item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 7px 12px 7px 7px;
    color: var(--web-footer-text, #cbd5e1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--web-border-radius, 8px);
    background: rgba(255, 255, 255, 0.06);
}

.site-footer-contact__item:hover {
    color: #ffffff;
    border-color: var(--footer-contact-color, #1478ff);
}

.site-footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: #ffffff;
    background: var(--footer-contact-color, #1478ff);
    border-radius: 999px;
    overflow: hidden;
}

.site-footer-contact__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer__bottom {
    padding: 16px 0;
    color: var(--web-design-by-text, #94a3b8);
    font-family: var(--web-design-by-font-family, inherit);
    font-size: var(--web-design-by-font-size, 14px);
    background: var(--web-design-by-background, transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Source: public/css/web/footer-actions.css */
.site-footer-actions {
    position: fixed;
    z-index: 85;
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #e5eaf0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 25px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(14px);
}
.site-footer-actions__inner {
    width: min(100%, var(--web-site-width, 1200px));
    min-height: 62px;
    display: flex;
    overflow-x: auto;
    margin: auto;
    scrollbar-width: none;
}
.site-footer-actions__inner::-webkit-scrollbar {
    display: none;
}
.site-footer-action {
    position: relative;
    min-width: 0;
    flex: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    padding: 7px 4px 6px;
    color: #64748b;
    text-align: center;
    text-decoration: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
}
.site-footer-action > span {
    position: relative;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--footer-action-color);
    font-size: 18px;
}
.site-footer-action > span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.site-footer-action small {
    width: 100%;
    overflow: hidden;
    color: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.site-footer-action b {
    position: absolute;
    top: -4px;
    right: -7px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 9px;
    color: #fff;
    font-size: 8px;
    line-height: 12px;
    background: #ef4444;
}
.site-footer-action:hover,
.site-footer-action.is-active {
    color: var(--footer-action-color);
    background: color-mix(in srgb, var(--footer-action-color) 7%, white);
}
.site-footer-actions--mobile {
    display: none;
}
.site-shell:has(.site-footer-actions--all) {
    padding-bottom: 62px;
}
@media (max-width: 767px) {
    .site-footer-actions--mobile {
        display: block;
    }
    .site-footer-action {
        min-width: 64px;
    }
    .site-shell:has(.site-footer-actions) {
        padding-bottom: calc(62px + env(safe-area-inset-bottom));
    }
    .back-to-top {
        bottom: 76px;
    }
}

@media (max-width: 991px) {
    .site-footer-subscribe {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .site-footer-subscribe h2 {
        font-size: var(--web-h2-mobile-font-size, 26px);
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer-subscribe {
        padding: 20px;
        border-radius: 22px;
    }

    .site-footer-subscribe__field {
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .site-footer-subscribe__field-main,
    .site-footer-subscribe__field button {
        min-height: 52px;
    }

    .site-footer-subscribe__field button {
        width: 100%;
    }
}

/* Source: public/css/web/contact-icons.css */
.site-contact-icons {
    position: fixed;
    bottom: 78px;
    z-index: 60;
    display: grid;
    gap: 10px;
}

.site-contact-icons--left {
    left: 18px;
}

.site-contact-icons--right {
    right: 18px;
}

/* Dedicated category source for the mobile navigation drawer. */
.site-nav__menu--mobile,
.site-nav__mobile-login {
    display: none !important;
}

@media (max-width: 767px) {
    .site-header .site-nav .site-nav__menu--desktop {
        display: none !important;
    }

    .site-header .site-nav .site-nav__menu--mobile {
        display: grid !important;
        width: 100% !important;
    }

    .site-nav__mobile-login {
        display: flex;
        width: fit-content;
        max-width: 100%;
        min-height: 48px;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
        padding: 0 14px;
        border: 1px solid rgba(37, 99, 235, 0.18);
        border-radius: 14px;
        background: #f4f8ff;
        color: #1d4ed8;
        font-size: var(--web-menu-mobile-font-size, 15px);
        font-weight: 800;
    }

    .site-nav__mobile-login i {
        display: grid;
        width: 28px;
        height: 28px;
        place-items: center;
        border-radius: 9px;
        background: #dbeafe;
    }
}

@media (min-width: 768px) {
    .site-contact-icons--mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-contact-icons--desktop {
        display: none;
    }
}

.site-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    background: var(--contact-icon-color, #1478ff);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

.site-contact-icon img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}
/* ==============================
   CONTACT FLOATING ICON EFFECT
================================= */
.site-contact-icon {
    position: relative;
    overflow: visible;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        filter 0.28s ease;
    animation: contactFloat 2.8s ease-in-out infinite;
}

/* Vòng tỏa bên ngoài */
.site-contact-icon::before,
.site-contact-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: var(--contact-icon-color, #1478ff);
    opacity: 0.28;
    z-index: -1;
    animation: contactRipple 2.2s ease-out infinite;
}

/* Vòng thứ 2 chạy lệch nhịp cho đẹp */
.site-contact-icon::after {
    inset: -12px;
    opacity: 0.16;
    animation-delay: 0.6s;
}

/* Hover ná»•i báº­t hÆ¡n */
.site-contact-icon:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.28),
        0 0 0 8px rgba(20, 120, 255, 0.12);
    filter: brightness(1.05);
}

/* Khi hover thì vòng tỏa mạnh hơn */
.site-contact-icon:hover::before,
.site-contact-icon:hover::after {
    opacity: 0.34;
}

/* Ảnh bên trong icon */
.site-contact-icon img {
    position: relative;
    z-index: 2;
    transition: transform 0.28s ease;
}

.site-contact-icon:hover img {
    transform: scale(1.04);
}

/* Hiệu ứng nổi nhẹ */
@keyframes contactFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Hiệu ứng tỏa vòng */
@keyframes contactRipple {
    0% {
        transform: scale(0.88);
        opacity: 0.32;
    }

    70% {
        transform: scale(1.38);
        opacity: 0;
    }

    100% {
        transform: scale(1.38);
        opacity: 0;
    }
}

/* Mobile nhỏ lại chút cho gọn */
@media (max-width: 767px) {
    .site-contact-icons {
        bottom: 64px;
        gap: 8px;
    }

    .site-contact-icons--left {
        left: 12px;
    }

    .site-contact-icons--right {
        right: 12px;
    }

    .site-contact-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Source: public/css/web/404.css */
.site-404 {
    position: relative;
    min-height: 600px;
    display: grid;
    align-items: center;
    padding: 88px 0;
    overflow: hidden;
    color: var(--web-body-text, #1f2937);
    background: var(--web-body-background, #ffffff);
}

/* Lớp sao nền - chiều sâu nhẹ, không cạnh tranh với radar */
.site-404__field {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-404__star {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: var(--web-link-text, #2563eb);
    opacity: 0;
    animation: site-404-twinkle 3.2s ease-in-out infinite;
    animation-delay: var(--d);
}

@keyframes site-404-twinkle {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

.site-404__inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

/* Radar - chi tiết đặc trưng: tín hiệu quét nhưng không bắt được trang */
.site-404__radar {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 28px;
    color: var(--web-link-text, #2563eb);
}

.site-404__radar svg {
    width: 100%;
    height: 100%;
}

.site-404__ring {
    fill: none;
    stroke: currentColor;
    stroke-opacity: 0.16;
    stroke-width: 1;
}

.site-404__cross {
    stroke: currentColor;
    stroke-opacity: 0.1;
    stroke-width: 1;
}

.site-404__sweep {
    transform-origin: 120px 120px;
    animation: site-404-sweep 4s linear infinite;
}

@keyframes site-404-sweep {
    to {
        transform: rotate(360deg);
    }
}

.site-404__blip {
    fill: currentColor;
    opacity: 0;
    animation: site-404-blip 4s ease-in-out infinite;
}

.site-404__blip--b {
    animation-delay: 1.4s;
}
.site-404__blip--c {
    animation-delay: 2.6s;
}

@keyframes site-404-blip {
    0%,
    92%,
    100% {
        opacity: 0;
    }
    96% {
        opacity: 0.8;
    }
}

.site-404__code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--web-title-font-family, inherit);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--web-title-text, #0f172a);
}

.site-404__eyebrow {
    margin: 0 0 10px;
    color: var(--web-link-text, #2563eb);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-404 h1 {
    margin: 0 0 12px;
    color: var(--web-title-text, #0f172a);
    font-family: var(--web-title-font-family, inherit);
    font-size: var(--web-title-font-size, 28px);
    line-height: 1.3;
}

.site-404__desc {
    margin: 0 auto 30px;
    max-width: 440px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.site-404 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    background: var(--web-link-text, #2563eb);
    border-radius: var(--web-border-radius, 8px);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}

.site-404 a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -10px var(--web-link-text, #2563eb);
    opacity: 0.92;
}

.site-404 a svg {
    transition: transform 0.18s ease;
}

.site-404 a:hover svg {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .site-404__sweep,
    .site-404__blip,
    .site-404__star {
        animation: none;
    }

    .site-404__sweep path {
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .site-404__radar {
        width: 170px;
        height: 170px;
    }

    .site-404__code {
        font-size: 32px;
    }

    .site-404 h1 {
        font-size: 22px;
    }
}

/* Source: public/css/web/back-to-top.css */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 44px;
    height: 44px;
    color: #ffffff;
    font-size: 18px;
    background: var(--web-link-text, #2563eb);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Source: public/css/web/responsive.css */
/* ==============================
   RESPONSIVE: TABLET
================================= */
@media (max-width: 1180px) {
    .site-header-action span {
        display: none;
    }

    .site-header-action {
        width: 44px;
        padding: 0;
    }
}

/* Mobile navigation drawer */
@media (max-width: 767px) {
    body.is-mobile-menu-open {
        overflow: hidden;
    }

    .site-header .site-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 103;
        display: flex;
        flex-direction: column;
        width: min(70vw, 420px);
        height: 100dvh;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        border: 0;
        background: #fff;
        box-shadow: 18px 0 45px rgba(15, 23, 42, 0.18);
        visibility: hidden;
        transform: translateX(-100%);
        transition:
            transform 0.28s ease,
            visibility 0.28s ease;
    }

    .site-header .site-nav.is-open,
    .site-header.is-menu-open .site-nav,
    .site-header:has(.site-menu-toggle[aria-expanded="true"]) .site-nav {
        display: flex;
        visibility: visible;
        animation: none;
        transform: translateX(0);
    }

    .site-nav__mobile-head {
        display: flex;
        min-height: 62px;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px 0 20px;
        border-bottom: 1px solid #e5eaf0;
        background: #fff;
    }

    .site-nav__mobile-head strong {
        color: #172033;
        font-size: 17px;
    }
    .site-nav__mobile-head button {
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        padding: 0;
        border: 1px solid #dce3eb;
        border-radius: 50%;
        background: #f8fafc;
        color: #475467;
        font-size: 16px;
        cursor: pointer;
    }

    .site-header .site-nav__inner {
        display: grid;
        flex: 1 1 auto;
        width: auto;
        height: calc(100dvh - 62px);
        min-height: 0;
        box-sizing: border-box;
        align-content: start;
        gap: 6px;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        padding: 12px 12px 28px;
    }

    .site-mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 102;
        display: block;
        padding: 0;
        border: 0;
        background: rgba(15, 23, 42, 0.48);
        opacity: 0;
        visibility: hidden;
        cursor: default;
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    body.is-mobile-menu-open .site-mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 420px) {
    .site-header .site-nav {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .site-header__inner {
        gap: 14px;
    }

    .site-header-banner-info {
        display: none;
    }

    .site-search {
        max-width: 360px;
        min-width: 220px;
    }

    .site-nav__inner {
        gap: 6px;
    }

    .site-nav__link,
    .site-nav__inner > a {
        padding: 0 12px;
        font-size: 14px;
    }
}

/* ==============================
   RESPONSIVE: MOBILE
================================= */
@media (max-width: 767px) {
    .site-header-banner-info {
        display: none !important;
    }

    .site-mobile-header-hidden {
        display: none !important;
    }

    /* Topbar */
    .site-topbar {
        font-size: var(--web-top-mobile-font-size, 13px);
    }

    .site-topbar__inner {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2px;
        padding: 8px 0;
        text-align: left;
        flex-wrap: wrap;
    }

    .site-topbar span + span {
        margin-left: 0;
    }

    /* Header mobile layout */
    .site-header__inner {
        min-height: 74px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Logo */
    .site-logo {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    /* .site-logo img {
        max-width: 82px;
        max-height: 44px;
    } */

    /* Search: hiện trên mobile */
    .site-search {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
        border-radius: 25px;
    }

    .site-search input {
        min-width: 0;
        min-height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .site-search input::placeholder {
        font-size: 13px;
    }

    .site-search button {
        min-width: 56px;
        min-height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }

    .site-search > i {
        margin-left: 12px;
        font-size: 13px;
    }

    /* Mobile menu button */
    .site-menu-toggle {
        grid-column: 3;
        grid-row: 1;
        display: inline-flex;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    /* Language xuống dòng dưới */
    .site-language {
        grid-column: 1 / 2;
        grid-row: 2;
        margin-left: 0;
        gap: 6px;
    }

    .site-language a,
    .site-language > a {
        min-width: 38px;
        height: 38px;
        font-size: 12px;
        border-radius: 12px;
    }

    .site-language > a img,
    .site-language img {
        width: 22px;
        /* height: 15px; */
    }

    .site-language__name {
        display: none;
    }

    .site-language__toggle {
        min-height: 38px;
        padding: 0 10px;
        border-radius: 12px;
    }

    .site-language__menu {
        right: auto;
        left: 0;
        min-width: 160px;
    }

    /* Header actions xuống dòng dưới */
    .site-header-actions {
        grid-column: 2 / 4;
        grid-row: 2;
        display: inline-flex;
        justify-content: flex-end;
        gap: 6px;
        min-width: 0;
    }

    .site-header-action {
        width: 38px;
        min-width: 38px;
        height: 38px;
        padding: 0;
        font-size: 14px;
        border-radius: 12px;
    }

    .site-header-action__text {
        display: none;
    }

    /* Nếu header có wrapper tools */
    /* Nếu có wrapper .site-header-tools thì cho con bên trong bám vào grid chính */
    .site-header-tools {
        display: contents;
    }

    /* Nút menu 3 gạch nằm hàng 1 bên phải */
    .site-menu-toggle {
        grid-column: 3;
        grid-row: 1;
        display: inline-flex;
        width: 42px;
        height: 42px;
        justify-self: end;
        flex-shrink: 0;
    }

    /* Ngôn ngữ đưa xuống hàng 2 */
    .site-language {
        grid-column: 1 / 2;
        grid-row: 2;
        margin-left: 0;
        gap: 6px;
    }

    /* Các icon còn lại đưa xuống hàng 2 */
    .site-header-actions {
        grid-column: 2 / 4;
        grid-row: 2;
        display: inline-flex;
        justify-content: flex-end;
        gap: 6px;
        min-width: 0;
    }

    /* Menu mobile */
    .site-nav {
        display: none;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
    }

    .site-nav.is-open,
    .site-header.is-menu-open .site-nav,
    .site-header:has(.site-menu-toggle[aria-expanded="true"]) .site-nav {
        display: flex;
        animation: siteMobileMenu 0.25s ease both;
    }

    @keyframes siteMobileMenu {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .site-header .site-nav__inner {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        height: calc(100dvh - 62px);
        padding: 12px 10px 24px;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        width: 100%;
    }

    .site-nav__brand,
    .site-nav__extras {
        display: none;
    }

    .site-nav__menu {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .site-nav__info {
        display: none;
    }

    .site-nav__item,
    .site-nav__child {
        width: 100%;
    }

    .site-nav a,
    .site-nav__link,
    .site-nav__inner > a,
    .site-nav__dropdown a,
    .site-nav__subdropdown a {
        width: 100%;
        min-height: 46px;
        justify-content: space-between;
        padding: 0 12px;
        font-size: var(--web-menu-mobile-font-size, 15px);
        background: #f8fafc;
        border: 1px solid #eef2f7;
        border-radius: 14px;
        white-space: normal;
    }

    .site-nav a::after,
    .site-nav__link::after,
    .site-nav__inner > a::after {
        display: none;
    }

    .site-nav a:hover,
    .site-nav a.is-active,
    .site-nav__link:hover,
    .site-nav__link.is-active,
    .site-nav__inner > a:hover,
    .site-nav__inner > a.is-active,
    .site-nav__dropdown a:hover,
    .site-nav__dropdown a.is-active,
    .site-nav__subdropdown a:hover,
    .site-nav__subdropdown a.is-active {
        color: var(--web-link-text, #1d4ed8);
        background: var(--web-link-background, #eff6ff);
        border-color: rgba(37, 99, 235, 0.25);
        box-shadow: none;
        transform: none;
    }

    /* Submenu mobile: mặc định ẩn */
    .site-nav__dropdown,
    .site-nav__subdropdown {
        display: none !important;
        position: static;
        min-width: 0;
        gap: 6px;
        margin-top: 6px;
        padding: 0 0 0 8px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-nav__dropdown::before {
        display: none;
    }

    .site-nav__subdropdown {
        padding-left: 8px;
    }

    .site-nav__link-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 6px;
    }

    .site-nav__submenu-toggle {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        color: inherit;
        cursor: pointer;
    }

    .site-nav__link-row > .site-nav__link i,
    .site-nav__link-row > a i {
        display: none;
    }

    .site-search-modal {
        padding: 86px 14px 14px;
    }

    .site-search-modal__dialog {
        width: min(100%, 560px);
        padding: 18px;
        border-radius: 22px;
    }

    .site-search-modal__focus {
        top: 76px;
        width: calc(100vw - 24px);
        height: 180px;
    }

    .site-search-modal__head h2 {
        font-size: 22px;
    }

    .site-nav__item.is-sub-open > .site-nav__dropdown,
    .site-nav__child.is-sub-open > .site-nav__subdropdown {
        display: grid !important;
        animation: siteMobileSubmenu 0.22s ease both;
    }

    .site-nav__dropdown a,
    .site-nav__subdropdown a {
        min-height: 42px;
        border-radius: 12px;
    }

    @keyframes siteMobileSubmenu {
        from {
            opacity: 0;
            transform: translateY(-4px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .site-nav__item.is-sub-open > .site-nav__link i,
    .site-nav__child.is-sub-open > a i,
    .site-nav__item.is-sub-open
        > .site-nav__link-row
        > .site-nav__submenu-toggle
        i,
    .site-nav__child.is-sub-open
        > .site-nav__link-row
        > .site-nav__submenu-toggle
        i {
        transform: rotate(180deg);
    }

    /* Hero */
    .home-hero__inner {
        min-height: 320px;
        padding: 48px 0;
    }

    .home-hero h1 {
        font-size: var(--web-banner-mobile-font-size, 32px);
    }

    /* Global mobile font */
    body {
        font-size: var(--web-body-mobile-font-size, 15px);
    }

    .site-section,
    .site-maintenance__message {
        font-size: var(--web-content-mobile-font-size, 15px);
    }

    .site-section h2,
    .site-maintenance h1 {
        font-size: var(--web-title-mobile-font-size, 26px);
    }

    .site-footer {
        font-size: var(--web-footer-mobile-font-size, 14px);
    }

    .site-footer__bottom {
        font-size: var(--web-design-by-mobile-font-size, 12px);
    }
}

/* ==============================
   RESPONSIVE: SMALL MOBILE
================================= */
@media (max-width: 420px) {
    .site-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
    }

    /* .site-logo img {
        max-width: 72px;
        max-height: 40px;
    } */

    .site-search input {
        min-height: 38px;
        padding: 0 10px;
        font-size: 12px;
    }

    .site-search button {
        min-width: 50px;
        min-height: 38px;
        padding: 0 8px;
        font-size: 12px;
    }

    .site-language a,
    .site-language > a {
        min-width: 36px;
        height: 36px;
    }

    .site-language > a img,
    .site-language img {
        width: 22px;
        /* height: 15px; */
    }

    .site-header-action {
        width: 36px;
        min-width: 36px;
        height: 36px;
    }

    .site-menu-toggle {
        width: 40px;
        height: 40px;
    }
}
/* Mobile: áº©n sá»‘ badge */
@media (max-width: 767px) {
    .site-header-action--cart {
        width: 40px;
        min-width: 40px;
        height: 40px;
        padding: 0;
    }

    .site-cart-badge {
        display: none !important;
    }
}

/* Tắt animation nếu trình duyệt/user chọn giảm chuyển động */
@media (prefers-reduced-motion: reduce) {
    .site-header-action--cart,
    .site-header-action--cart::before,
    .site-header-action--cart i,
    .site-cart-badge::after {
        animation: none;
        transition: none;
    }
}
@media (max-width: 767px) {
    .home-section {
        padding: 42px 0;
    }

    .home-section__head {
        display: grid;
        gap: 10px;
    }

    .home-introduction {
        grid-template-columns: 1fr;
    }
}
/* ==============================
   RESPONSIVE
================================= */
@media (max-width: 767px) {
    .home-section__head {
        margin-bottom: 32px;
    }

    .home-section__head h2 {
        gap: 12px;
        font-size: var(--web-title-mobile-font-size, 25px);
        letter-spacing: 0.025em;
    }

    .home-section__head h2::before,
    .home-section__head h2::after {
        max-width: 52px;
    }

    .home-section__head h2 a::before {
        right: 14px;
        left: 8px;
        bottom: 8px;
    }

    .home-section__head h2 a::after {
        width: 4px;
        height: 4px;
        right: 4px;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
    }

    .home-section__head p {
        margin-top: 24px;
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .home-section__actions {
        margin-top: 24px;
    }

    .home-section__actions a {
        min-height: 44px;
        padding: 0 20px;
        font-size: 13px;
    }
}

/* Keep drawer rules after legacy mobile menu declarations. */
@media (max-width: 767px) {
    .site-header .site-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 70vw;
        height: 100dvh;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        visibility: hidden;
        animation: none;
        transform: translateX(-100%);
    }

    .site-header .site-nav.is-open,
    .site-header.is-menu-open .site-nav,
    .site-header:has(.site-menu-toggle[aria-expanded="true"]) .site-nav {
        display: flex;
        visibility: visible;
        animation: none;
        transform: translateX(0);
    }
}
.site-chatbot {
    --chatbot-gap: 14px;
    position: fixed;
    right: 20px;
    bottom: 96px;
    z-index: 2147483000;
    display: grid;
    justify-items: end;
    gap: var(--chatbot-gap);
}

.site-chatbot .site-chatbot__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(4px);
}

.site-chatbot .site-chatbot__launcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%) !important;
}

.site-chatbot .site-chatbot__hint {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    max-width: 210px;
    padding: 0 14px;
    border-radius: 999px;
    color: #7c2d12;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: linear-gradient(135deg, #fff7d6 0%, #ffffff 100%);
    animation: site-chatbot-hint-float 1.8s ease-in-out infinite;
}

.site-chatbot .site-chatbot__hint::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -7px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    border-right: 1px solid rgba(251, 191, 36, 0.28);
    border-bottom: 1px solid rgba(251, 191, 36, 0.28);
    background: #fff8de;
}

.site-chatbot .site-chatbot__hint.is-hidden {
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
    animation: none;
}

.site-chatbot .site-chatbot__panel {
    position: relative;
    width: min(420px, calc(100vw - 24px)) !important;
    height: clamp(520px, 68vh, 680px) !important;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.22);
    background: #fff;
    display: grid !important;
    grid-template-rows: auto 1fr auto !important;
}

.site-chatbot .site-chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    color: #fff;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
}

.site-chatbot .site-chatbot__heading strong,
.site-chatbot .site-chatbot__heading small {
    display: block;
}

.site-chatbot .site-chatbot__heading small {
    margin-top: 4px;
    opacity: 0.82;
}

.site-chatbot .site-chatbot__tools {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-chatbot .site-chatbot__tools button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: inherit;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.14);
}

.site-chatbot .site-chatbot__messages {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 18px;
    overflow-y: auto;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
}

.site-chatbot .site-chatbot__message {
    max-width: min(90%, 100%);
    padding: 13px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.site-chatbot .site-chatbot__message--bot {
    justify-self: start;
    color: #172033;
    background: #fff;
    border: 1px solid #dbe3ec;
}

.site-chatbot .site-chatbot__message--user {
    justify-self: end;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.site-chatbot .site-chatbot__message--error {
    color: #991b1b;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.site-chatbot .site-chatbot__message-content > *:first-child {
    margin-top: 0;
}

.site-chatbot .site-chatbot__message-content > *:last-child {
    margin-bottom: 0;
}

.site-chatbot .site-chatbot__message-content p,
.site-chatbot .site-chatbot__message-content ul,
.site-chatbot .site-chatbot__message-content ol,
.site-chatbot .site-chatbot__message-content pre,
.site-chatbot .site-chatbot__message-content blockquote {
    margin: 0 0 10px;
}

.site-chatbot .site-chatbot__message-content ul,
.site-chatbot .site-chatbot__message-content ol {
    padding-left: 20px;
}

.site-chatbot .site-chatbot__message-content a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: none;
}

.site-chatbot .site-chatbot__message--user .site-chatbot__message-content a {
    color: #fff;
}

.site-chatbot .site-chatbot__link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    min-height: 38px;
    margin: 4px 6px 4px 0;
    padding: 0 14px;
    border-radius: 999px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff !important;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
}

.site-chatbot .site-chatbot__link-button::before {
    content: "\f35d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
}

.site-chatbot .site-chatbot__message-content pre {
    padding: 12px;
    overflow: auto;
    border-radius: 12px;
    color: #e2e8f0;
    background: #0f172a;
}

.site-chatbot .site-chatbot__message-content code {
    padding: 2px 6px;
    border-radius: 6px;
    font-family: Consolas, Monaco, monospace;
    background: rgba(148, 163, 184, 0.18);
}

.site-chatbot .site-chatbot__message-content pre code {
    padding: 0;
    background: transparent;
}

.site-chatbot .site-chatbot__typing {
    opacity: 0.7;
    font-style: italic;
}

.site-chatbot .site-chatbot__lead {
    display: grid;
    gap: 12px;
    width: min(100%, 320px);
    max-width: 100%;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #dbe3ec;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.site-chatbot .site-chatbot__lead strong,
.site-chatbot .site-chatbot__lead p {
    margin: 0;
}

.site-chatbot .site-chatbot__lead p {
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
}

.site-chatbot .site-chatbot__lead-form {
    display: grid;
    gap: 10px;
}

.site-chatbot .site-chatbot__lead-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-chatbot .site-chatbot__lead-row input {
    flex: 1 1 180px;
    min-width: 0;
    max-width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #dbe3ec;
    border-radius: 999px;
    outline: none;
    font: inherit;
    width: auto !important;
}

.site-chatbot .site-chatbot__lead-row input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.site-chatbot .site-chatbot__lead-row button,
.site-chatbot .site-chatbot__form button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    background: #0f172a !important;
    width: auto !important;
    max-width: 100% !important;
}

.site-chatbot .site-chatbot__lead-row button {
    margin-left: auto;
}

.site-chatbot .site-chatbot__lead-status {
    font-size: 13px;
    line-height: 1.6;
}

.site-chatbot .site-chatbot__lead-status.is-error {
    color: #b91c1c;
}

.site-chatbot .site-chatbot__lead-status.is-success {
    color: #166534;
}

.site-chatbot .site-chatbot__form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 18px 18px;
    border-top: 1px solid #e5eaf0;
    background: #fff;
}

.site-chatbot .site-chatbot__form textarea {
    flex: 1 1 250px;
    width: auto !important;
    min-width: 0;
    min-height: 46px;
    max-height: 120px;
    resize: none;
    padding: 12px 14px;
    border: 1px solid #dbe3ec;
    border-radius: 16px;
    outline: none;
    font: inherit;
    line-height: 1.5;
}

.site-chatbot .site-chatbot__form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.site-chatbot .site-chatbot__form button[disabled],
.site-chatbot .site-chatbot__lead-row button[disabled] {
    opacity: 0.65;
    cursor: wait;
}

.site-chatbot.site-chatbot--modal {
    inset: 0;
    right: auto;
    bottom: auto;
    justify-items: center;
    align-items: center;
}

.site-chatbot.site-chatbot--modal .site-chatbot__launcher {
    display: none;
}

.site-chatbot.site-chatbot--modal .site-chatbot__backdrop {
    display: block;
}

.site-chatbot.site-chatbot--modal .site-chatbot__panel {
    width: min(760px, calc(100vw - 32px));
    height: min(
        760px,
        calc(
            100dvh - 40px - env(safe-area-inset-top) -
                env(safe-area-inset-bottom)
        )
    );
    max-height: min(
        760px,
        calc(
            100dvh - 40px - env(safe-area-inset-top) -
                env(safe-area-inset-bottom)
        )
    );
}

.site-chatbot.site-chatbot--modal .site-chatbot__messages {
    min-height: 0;
}

@keyframes site-chatbot-hint-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 767px) {
    .site-chatbot {
        right: 12px;
        bottom: 84px;
        left: 12px;
        justify-items: stretch;
    }

    .site-chatbot .site-chatbot__launcher {
        justify-self: end;
        width: fit-content;
        max-width: none;
        justify-content: center;
    }

    .site-chatbot .site-chatbot__hint {
        margin-left: auto;
        max-width: 180px;
        font-size: 12px;
    }

    .site-chatbot .site-chatbot__panel {
        width: min(100%, 380px) !important;
        margin-left: auto;
        height: min(
            560px,
            calc(
                100dvh - 120px - env(safe-area-inset-top) -
                    env(safe-area-inset-bottom)
            )
        ) !important;
    }

    .site-chatbot .site-chatbot__form,
    .site-chatbot .site-chatbot__lead-row {
        align-items: flex-end;
    }

    .site-chatbot .site-chatbot__form button,
    .site-chatbot .site-chatbot__lead-row button {
        width: auto;
        max-width: 100%;
        margin-left: auto;
    }

    .site-chatbot.site-chatbot--modal .site-chatbot__panel {
        width: calc(100vw - 24px);
        height: calc(
            100dvh - 28px - env(safe-area-inset-top) -
                env(safe-area-inset-bottom)
        );
        max-height: calc(
            100dvh - 28px - env(safe-area-inset-top) -
                env(safe-area-inset-bottom)
        );
    }
}

/* Chatbot override fix */
.site-chatbot [hidden] {
    display: none !important;
}

.site-chatbot .site-chatbot__panel:not([hidden]) {
    display: grid !important;
    grid-template-rows: auto 1fr auto !important;
    width: min(400px, calc(100vw - 24px)) !important;
    height: clamp(500px, 66vh, 640px) !important;
}

.site-chatbot .site-chatbot__messages {
    align-content: start !important;
    grid-auto-rows: max-content !important;
    gap: 10px !important;
    padding: 14px 16px !important;
}

.site-chatbot .site-chatbot__message-content p,
.site-chatbot .site-chatbot__message-content ul,
.site-chatbot .site-chatbot__message-content ol,
.site-chatbot .site-chatbot__message-content pre,
.site-chatbot .site-chatbot__message-content blockquote {
    margin: 0 0 8px !important;
}

.site-chatbot .site-chatbot__lead-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.site-chatbot .site-chatbot__lead-row input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.site-chatbot .site-chatbot__lead-row button {
    white-space: nowrap !important;
}

.site-chatbot .site-chatbot__form {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 16px 16px !important;
}

.site-chatbot .site-chatbot__form textarea {
    width: auto !important;
    min-width: 0 !important;
}

.site-chatbot.site-chatbot--modal .site-chatbot__panel:not([hidden]) {
    position: fixed !important;
    top: max(18px, env(safe-area-inset-top)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(760px, calc(100vw - 32px)) !important;
    height: calc(
        100dvh - 36px - env(safe-area-inset-top) - env(safe-area-inset-bottom)
    ) !important;
    max-height: 760px !important;
}

@media (max-width: 767px) {
    .site-chatbot .site-chatbot__panel:not([hidden]) {
        width: min(100%, 380px) !important;
        margin-left: auto !important;
        height: min(
            540px,
            calc(
                100dvh - 118px - env(safe-area-inset-top) -
                    env(safe-area-inset-bottom)
            )
        ) !important;
    }

    .site-chatbot.site-chatbot--modal .site-chatbot__panel:not([hidden]) {
        top: max(12px, env(safe-area-inset-top)) !important;
        width: calc(100vw - 20px) !important;
        height: calc(
            100dvh - 24px - env(safe-area-inset-top) -
                env(safe-area-inset-bottom)
        ) !important;
        max-height: none !important;
    }
}

.introduction-detail__body,
.page-content__intro,
.service-detail__body,
.project-detail__body,
.real-estate-detail__body,
.rental-detail__body,
.article-detail__content {
    color: #425466;
    font-size: var(--web-content-font-size, 16px);
    line-height: 1.85;
}

.introduction-detail__body > :first-child,
.page-content__intro > :first-child,
.service-detail__body > :first-child,
.project-detail__body > :first-child,
.real-estate-detail__body > :first-child,
.rental-detail__body > :first-child,
.article-detail__content > :first-child {
    margin-top: 0;
}

.introduction-detail__body > :last-child,
.page-content__intro > :last-child,
.service-detail__body > :last-child,
.project-detail__body > :last-child,
.real-estate-detail__body > :last-child,
.rental-detail__body > :last-child,
.article-detail__content > :last-child {
    margin-bottom: 0;
}

.introduction-detail__body h2,
.introduction-detail__body h3,
.introduction-detail__body h4,
.introduction-detail__body h5,
.introduction-detail__body h6,
.page-content__intro h2,
.page-content__intro h3,
.page-content__intro h4,
.page-content__intro h5,
.page-content__intro h6,
.service-detail__body h2,
.service-detail__body h3,
.service-detail__body h4,
.service-detail__body h5,
.service-detail__body h6,
.project-detail__body h2,
.project-detail__body h3,
.project-detail__body h4,
.project-detail__body h5,
.project-detail__body h6,
.real-estate-detail__body h2,
.real-estate-detail__body h3,
.real-estate-detail__body h4,
.real-estate-detail__body h5,
.real-estate-detail__body h6,
.rental-detail__body h2,
.rental-detail__body h3,
.rental-detail__body h4,
.rental-detail__body h5,
.rental-detail__body h6,
.article-detail__content h2,
.article-detail__content h3,
.article-detail__content h4,
.article-detail__content h5,
.article-detail__content h6 {
    position: relative;
    margin: 1.7em 0 0.75em;
    color: #102433;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.introduction-detail__body h2,
.page-content__intro h2,
.service-detail__body h2,
.project-detail__body h2,
.real-estate-detail__body h2,
.rental-detail__body h2,
.article-detail__content h2 {
    /* padding-left: 18px; */
    font-family: var(--web-h2-font-family, inherit) !important;
    font-size: var(--web-h2-font-size, 28px) !important;
}

.introduction-detail__body h3,
.page-content__intro h3,
.service-detail__body h3,
.project-detail__body h3,
.real-estate-detail__body h3,
.rental-detail__body h3,
.article-detail__content h3 {
    /* padding-left: 18px; */
    font-family: var(--web-h3-font-family, inherit) !important;
    font-size: var(--web-h3-font-size, 24px) !important;
    color: #12344a;
}

.introduction-detail__body h4,
.page-content__intro h4,
.service-detail__body h4,
.project-detail__body h4,
.real-estate-detail__body h4,
.rental-detail__body h4,
.article-detail__content h4 {
    /* padding-left: 18px; */
    font-family: var(--web-h4-font-family, inherit) !important;
    font-size: var(--web-h4-font-size, 20px) !important;
    color: #1b4965;
}

.introduction-detail__body h5,
.page-content__intro h5,
.service-detail__body h5,
.project-detail__body h5,
.real-estate-detail__body h5,
.rental-detail__body h5,
.article-detail__content h5 {
    /* padding-left: 18px; */
    font-family: var(--web-h5-font-family, inherit) !important;
    font-size: var(--web-h5-font-size, 18px) !important;
    color: #0f5c7a;
}

.introduction-detail__body h6,
.page-content__intro h6,
.service-detail__body h6,
.project-detail__body h6,
.real-estate-detail__body h6,
.rental-detail__body h6,
.article-detail__content h6 {
    /* padding-left: 18px; */
    font-family: var(--web-h6-font-family, inherit) !important;
    font-size: var(--web-h6-font-size, 16px) !important;
    color: #1d4f6b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* .introduction-detail__body h2::before,
.introduction-detail__body h3::before,
.introduction-detail__body h4::before,
.introduction-detail__body h5::before,
.introduction-detail__body h6::before,
.page-content__intro h2::before,
.page-content__intro h3::before,
.page-content__intro h4::before,
.page-content__intro h5::before,
.page-content__intro h6::before,
.service-detail__body h2::before,
.service-detail__body h3::before,
.service-detail__body h4::before,
.service-detail__body h5::before,
.service-detail__body h6::before,
.project-detail__body h2::before,
.project-detail__body h3::before,
.project-detail__body h4::before,
.project-detail__body h5::before,
.project-detail__body h6::before,
.real-estate-detail__body h2::before,
.real-estate-detail__body h3::before,
.real-estate-detail__body h4::before,
.real-estate-detail__body h5::before,
.real-estate-detail__body h6::before,
.rental-detail__body h2::before,
.rental-detail__body h3::before,
.rental-detail__body h4::before,
.rental-detail__body h5::before,
.rental-detail__body h6::before,
.article-detail__content h2::before,
.article-detail__content h3::before,
.article-detail__content h4::before,
.article-detail__content h5::before,
.article-detail__content h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
    box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.08);
} */

.introduction-detail__body p,
.introduction-detail__body ul,
.introduction-detail__body ol,
.page-content__intro p,
.page-content__intro ul,
.page-content__intro ol,
.service-detail__body p,
.service-detail__body ul,
.service-detail__body ol,
.project-detail__body p,
.project-detail__body ul,
.project-detail__body ol,
.real-estate-detail__body p,
.real-estate-detail__body ul,
.real-estate-detail__body ol,
.rental-detail__body p,
.rental-detail__body ul,
.rental-detail__body ol,
.article-detail__content p,
.article-detail__content ul,
.article-detail__content ol {
    margin: 0 0 1.1em;
}

.introduction-detail__body ul,
.introduction-detail__body ol,
.page-content__intro ul,
.page-content__intro ol,
.service-detail__body ul,
.service-detail__body ol,
.project-detail__body ul,
.project-detail__body ol,
.real-estate-detail__body ul,
.real-estate-detail__body ol,
.rental-detail__body ul,
.rental-detail__body ol,
.article-detail__content ul,
.article-detail__content ol {
    padding-left: 1.3em;
}

.introduction-detail__body li + li,
.page-content__intro li + li,
.service-detail__body li + li,
.project-detail__body li + li,
.real-estate-detail__body li + li,
.rental-detail__body li + li,
.article-detail__content li + li {
    margin-top: 0.45em;
}

.introduction-detail__body a,
.page-content__intro a,
.service-detail__body a,
.project-detail__body a,
.real-estate-detail__body a,
.rental-detail__body a,
.article-detail__content a {
    color: var(--web-link-text, #0f62d6);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.introduction-detail__body a:hover,
.page-content__intro a:hover,
.service-detail__body a:hover,
.project-detail__body a:hover,
.real-estate-detail__body a:hover,
.rental-detail__body a:hover,
.article-detail__content a:hover {
    color: #0b78b5;
}

.introduction-detail__body blockquote,
.page-content__intro blockquote,
.service-detail__body blockquote,
.project-detail__body blockquote,
.real-estate-detail__body blockquote,
.rental-detail__body blockquote,
.article-detail__content blockquote {
    margin: 1.4em 0;
    padding: 18px 20px;
    border-left: 4px solid #38bdf8;
    border-radius: 0 18px 18px 0;
    color: #27485a;
    background: linear-gradient(180deg, #f8fdff 0%, #eef8fc 100%);
}

@media (max-width: 767px) {
    .introduction-detail__body h2,
    .page-content__intro h2,
    .service-detail__body h2,
    .project-detail__body h2,
    .real-estate-detail__body h2,
    .rental-detail__body h2,
    .article-detail__content h2 {
        padding-left: 16px;
    }

    .introduction-detail__body h3,
    .page-content__intro h3,
    .service-detail__body h3,
    .project-detail__body h3,
    .real-estate-detail__body h3,
    .rental-detail__body h3,
    .article-detail__content h3 {
        padding-left: 16px;
    }

    .introduction-detail__body h4,
    .page-content__intro h4,
    .service-detail__body h4,
    .project-detail__body h4,
    .real-estate-detail__body h4,
    .rental-detail__body h4,
    .article-detail__content h4 {
        padding-left: 16px;
    }

    .introduction-detail__body h5,
    .introduction-detail__body h6,
    .page-content__intro h5,
    .page-content__intro h6,
    .service-detail__body h5,
    .service-detail__body h6,
    .project-detail__body h5,
    .project-detail__body h6,
    .real-estate-detail__body h5,
    .real-estate-detail__body h6,
    .rental-detail__body h5,
    .rental-detail__body h6,
    .article-detail__content h5,
    .article-detail__content h6 {
        padding-left: 16px;
    }
}
.category-hero {
    padding: 0 0 28px;
}

.category-hero__card {
    margin-top: 20px;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    border-radius: 28px;
}

.category-hero__eyebrow {
    margin: 0 0 10px;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.category-hero__title {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.08;
}

.category-hero__description {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.category-hero__description > :first-child {
    margin-top: 0;
}

.category-hero__description > :last-child {
    margin-bottom: 0;
}

.category-hero__media {
    position: relative;
    align-self: stretch;
    min-height: 260px;
    background: linear-gradient(
        180deg,
        rgba(226, 232, 240, 0.5),
        rgba(226, 232, 240, 0.12)
    );
}

.category-hero__media::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 22px;
    pointer-events: none;
}

.category-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .winora-about-visual {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: clamp(280px, 38vw, 520px);
    aspect-ratio: 16 / 10;
    contain: layout paint;
}

.winora-about-visual img,
.winora-about-visual picture,
.winora-about-visual video,
.winora-about-visual iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.winora-about-visual > * {
    width: 100%;
    height: 100%;
}

.winora-about-visual img {
    height: 100%;
    object-fit: cover;
}

.winora-about-screen-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 44px;
    line-height: 1;
    white-space: nowrap;
} */

.home-section-placement.home-module--about {
    min-height: 320px;
}

/* Mobile header: menu left, brand centered, search right. */
@media (max-width: 767px) {
    /* A transformed sticky header becomes the containing block for the drawer. */
    .site-header.is-menu-open,
    .site-header:has(.site-nav.is-open) {
        transform: none !important;
    }

    body.is-mobile-menu-open .site-header {
        z-index: 2147483001;
    }

    /* Keep the opened navigation independent from the header's dimensions. */
    body.is-mobile-menu-open #siteMenu.site-nav {
        position: fixed !important;
        inset: 0 auto 0 0 !important;
        z-index: 2147483003 !important;
        display: flex !important;
        width: min(82vw, 420px) !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }

    body.is-mobile-menu-open .site-mobile-menu-overlay {
        z-index: 2147483002 !important;
    }

    .site-mobile-header {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        align-items: center;
        min-height: 104px;
        padding-top: 12px;
        padding-bottom: 12px;
        /* background: #ffffff; */
        /* box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08); */
    }

    .site-header__inner,
    .site-menu-only-bar {
        display: none !important;
    }

    .site-mobile-header__slot {
        display: flex;
        align-items: center;
        min-height: 48px;
    }

    .site-mobile-header__slot--start {
        justify-content: flex-start;
    }

    .site-mobile-header__slot--end {
        justify-content: flex-end;
    }

    .site-mobile-header__logo {
        grid-column: 2;
        justify-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        max-width: 100%;
    }

    .site-mobile-header__logo img {
        display: block;
        width: auto;
        max-width: min(100%, 260px);
        max-height: 62px;
        height: auto;
        object-fit: contain;
    }

    .site-menu-toggle.site-mobile-header__menu,
    .site-mobile-search-toggle {
        display: inline-flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: #111827;
    }

    .site-menu-toggle.site-mobile-header__menu {
        grid-column: auto;
        grid-row: auto;
        gap: 6px;
    }

    .site-menu-toggle.site-mobile-header__menu span {
        width: 30px;
        height: 3px;
        background: #111111;
        border-radius: 2px;
    }

    .site-menu-toggle.site-mobile-header__menu[aria-expanded="true"]
        span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .site-menu-toggle.site-mobile-header__menu[aria-expanded="true"]
        span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .site-mobile-search-toggle {
        font-size: 26px;
        cursor: pointer;
    }

    /* The drawer has one scroll area only; expanding a branch keeps its flow below the parent. */
    .site-header .site-nav {
        overflow: hidden;
    }

    .site-nav__mobile-head {
        position: relative;
        z-index: 2;
        flex: 0 0 62px;
    }

    .site-header .site-nav__inner {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex: 1 1 0;
        height: auto;
        min-height: 0;
        overflow-y: auto;
    }

    .site-header .site-nav .site-nav__brand {
        display: none !important;
    }

    .site-header .site-nav .site-nav__menu {
        width: 100%;
        flex: 0 0 auto;
    }

    .site-header .site-nav .site-nav__dropdown,
    .site-header .site-nav .site-nav__subdropdown {
        position: static;
        display: none !important;
    }

    .site-header .site-nav .site-nav__item.is-sub-open > .site-nav__dropdown,
    .site-header
        .site-nav
        .site-nav__child.is-sub-open
        > .site-nav__subdropdown,
    .site-header .site-nav .site-nav__item.is-sub-closing > .site-nav__dropdown,
    .site-header
        .site-nav
        .site-nav__child.is-sub-closing
        > .site-nav__subdropdown {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        gap: 6px;
        margin-top: 6px;
    }

    .site-header .site-nav .site-nav__item.is-sub-open > .site-nav__dropdown,
    .site-header
        .site-nav
        .site-nav__child.is-sub-open
        > .site-nav__subdropdown {
        animation: siteMobileSubmenuOpen 0.24s ease both;
    }

    .site-header .site-nav .site-nav__item.is-sub-closing > .site-nav__dropdown,
    .site-header
        .site-nav
        .site-nav__child.is-sub-closing
        > .site-nav__subdropdown {
        overflow: hidden;
        animation: siteMobileSubmenuClose 0.22s ease both;
    }

    @keyframes siteMobileSubmenuOpen {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes siteMobileSubmenuClose {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-6px);
        }
    }
}

/* Final mobile drawer override. This is intentionally kept after legacy menu rules. */
@media (max-width: 767px) {
    body.is-mobile-menu-open {
        overflow: hidden !important;
    }

    body.is-mobile-menu-open .site-header {
        z-index: 2147483001 !important;
        transform: none !important;
    }

    body.is-mobile-menu-open .site-header #siteMenu.site-nav,
    .site-header #siteMenu.site-nav.is-open,
    body > #siteMenu.site-nav.is-mobile-portal.is-open {
        position: fixed !important;
        top: 0 !important;
        right: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 2147483003 !important;
        display: flex !important;
        flex-direction: column !important;
        width: min(82vw, 420px) !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100svh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
        min-height: 100dvh !important;
        overflow: hidden !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    body.is-mobile-menu-open .site-header #siteMenu .site-nav__mobile-head,
    .site-header #siteMenu.site-nav.is-open .site-nav__mobile-head,
    body > #siteMenu.site-nav.is-mobile-portal.is-open .site-nav__mobile-head {
        display: flex !important;
        flex: 0 0 62px !important;
    }

    body.is-mobile-menu-open .site-header #siteMenu .site-nav__inner,
    .site-header #siteMenu.site-nav.is-open .site-nav__inner,
    body > #siteMenu.site-nav.is-mobile-portal.is-open .site-nav__inner {
        display: block !important;
        flex: 1 1 auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    body.is-mobile-menu-open .site-header #siteMenu .site-nav__menu,
    .site-header #siteMenu.site-nav.is-open .site-nav__menu,
    body > #siteMenu.site-nav.is-mobile-portal.is-open .site-nav__menu {
        display: grid !important;
        width: 100% !important;
    }

    body.is-mobile-menu-open .site-mobile-menu-overlay {
        z-index: 2147483002 !important;
    }

    body > .site-mobile-menu-overlay.is-mobile-portal {
        position: fixed !important;
        inset: 0 !important;
        z-index: 2147483002 !important;
    }
}

/* @media (max-width: 991px) {
    .category-hero__card {
        grid-template-columns: 1fr;
    }

    .category-hero__body {
        padding: 24px 24px 8px;
    }

    .category-hero__media {
        min-height: 220px;
    }
} */

/* Responsive grid emitted by the CKEditor Bootstrap-column helper. */
.groupboxgrid {
    margin: 24px 0;
}

.groupboxgrid > .row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.groupboxgrid > .row > [class*="col"] {
    box-sizing: border-box;
    flex: 1 0 0%;
    min-width: 0;
    max-width: 100%;
    padding: 10px;
}

@media (max-width: 767px) {
    .groupboxgrid > .row > .col-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .groupboxgrid > .row > .col-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .groupboxgrid > .row > .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .groupboxgrid > .row > .col-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .groupboxgrid > .row > .col-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .groupboxgrid > .row > .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .groupboxgrid > .row > .col-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .groupboxgrid > .row > .col-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .groupboxgrid > .row > .col-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .groupboxgrid > .row > .col-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .groupboxgrid > .row > .col-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .groupboxgrid > .row > .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .groupboxgrid > .row > .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .groupboxgrid > .row > .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .groupboxgrid > .row > .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .groupboxgrid > .row > .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .groupboxgrid > .row > .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .groupboxgrid > .row > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .groupboxgrid > .row > .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .groupboxgrid > .row > .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .groupboxgrid > .row > .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .groupboxgrid > .row > .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .groupboxgrid > .row > .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .groupboxgrid > .row > .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mobile drawer: render its independently configured category list only. */
@media (max-width: 767px) {
    body.is-mobile-menu-open .site-header #siteMenu .site-nav__menu--desktop,
    .site-header #siteMenu.site-nav.is-open .site-nav__menu--desktop,
    body
        > #siteMenu.site-nav.is-mobile-portal.is-open
        .site-nav__menu--desktop {
        display: none !important;
    }

    body.is-mobile-menu-open .site-header #siteMenu .site-nav__menu--mobile,
    .site-header #siteMenu.site-nav.is-open .site-nav__menu--mobile,
    body > #siteMenu.site-nav.is-mobile-portal.is-open .site-nav__menu--mobile {
        display: grid !important;
        width: 100% !important;
    }

    body.is-mobile-menu-open .site-header #siteMenu .site-nav__mobile-login,
    .site-header #siteMenu.site-nav.is-open .site-nav__mobile-login,
    body > #siteMenu.site-nav.is-mobile-portal.is-open .site-nav__mobile-login {
        display: flex !important;
        width: fit-content;
        max-width: 100%;
        min-height: 56px;
        align-items: center;
        gap: 12px;
        position: relative;
        overflow: hidden;
        margin-top: 18px;
        padding: 0 16px;
        border: 1px solid rgba(37, 99, 235, 0.22);
        border-radius: 16px;
        background: linear-gradient(
            135deg,
            #eff6ff 0%,
            #ffffff 52%,
            #e8f1ff 100%
        );
        box-shadow:
            0 10px 24px rgba(37, 99, 235, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        color: #1d4ed8;
        font-size: var(--web-menu-mobile-font-size, 15px);
        font-weight: 900;
        letter-spacing: 0.01em;
        transition:
            transform 0.22s ease,
            box-shadow 0.22s ease,
            border-color 0.22s ease,
            background 0.22s ease;
    }

    body.is-mobile-menu-open .site-header #siteMenu .site-nav__mobile-login i,
    .site-header #siteMenu.site-nav.is-open .site-nav__mobile-login i,
    body
        > #siteMenu.site-nav.is-mobile-portal.is-open
        .site-nav__mobile-login
        i {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        flex: 0 0 34px;
        position: relative;
        z-index: 1;
        border-radius: 11px;
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
        color: #fff;
        font-size: 14px;
    }

    .site-nav__mobile-login span {
        position: relative;
        z-index: 1;
    }

    .site-nav__mobile-login::after {
        content: "\f105";
        position: relative;
        z-index: 1;
        margin-left: auto;
        color: #60a5fa;
        font: var(--fa-font-solid);
        font-size: 14px;
        transition: transform 0.22s ease;
    }

    .site-nav__mobile-login:hover,
    .site-nav__mobile-login:focus-visible {
        border-color: rgba(37, 99, 235, 0.42);
        background: linear-gradient(135deg, #dbeafe, #ffffff 55%, #dbeafe);
        box-shadow:
            0 14px 28px rgba(37, 99, 235, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        color: #174db8;
        transform: translateY(-2px);
    }

    .site-nav__mobile-login:hover::after,
    .site-nav__mobile-login:focus-visible::after {
        transform: translateX(3px);
    }

    .site-nav__mobile-login:active {
        transform: translateY(0) scale(0.985);
    }
}

/* Logo displayed inside the mobile navigation drawer. */
.site-nav__mobile-logo {
    display: none;
}

@media (max-width: 767px) {
    .site-header .site-nav .site-nav__mobile-logo {
        display: flex;
        width: min(190px, 100%);
        min-height: 92px;
        align-items: center;
        justify-content: center;
        margin: 6px 0 8px;
        padding: 8px;
        border: 1px solid #e7edf4;
        border-radius: 14px;
        background: #f8fafc;
    }

    .site-header .site-nav .site-nav__mobile-logo img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 82px;
        height: auto;
        object-fit: contain;
    }
}

/* A drawer can be opened while the viewport is wider than the mobile CSS
 * breakpoint (for example on a scaled tablet). Never leak the desktop logo
 * into that drawer. */
body.is-mobile-menu-open .site-header .site-nav .site-nav__brand,
.site-header .site-nav.is-open .site-nav__brand,
body > #siteMenu.site-nav.is-mobile-portal .site-nav__brand {
    display: none !important;
}

body.is-mobile-menu-open .site-header .site-nav .site-nav__mobile-logo,
.site-header .site-nav.is-open .site-nav__mobile-logo,
body > #siteMenu.site-nav.is-mobile-portal .site-nav__mobile-logo {
    display: flex;
}
