.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 220;
    background: #ffffff;
}

.header-sticky-wrap {
    position: relative;
    z-index: 1;
}

.header-topbar {
    position: relative;
    z-index: 230;
    background: var(--primary);
}

.header-topbar-inner {
    min-height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 1.65rem;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

.header-topbar-item img {
    display: block;
}

.header-topbar-item span {
    display: block;
    line-height: 1.2;
}

.header-topbar-directions-link {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.header-topbar-directions-link:hover,
.header-topbar-directions-link:focus-visible {
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 0.45rem;
    color: var(--black);
}

.mobile-menu-toggle img {
    display: block;
}

.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 500;
}

.mobile-drawer-backdrop[hidden] {
    display: none;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    z-index: 510;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    overflow: hidden;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer-header {
    position: sticky;
    top: 0;
    height: 3.25rem;
    background: #ffffff;
    border-bottom: 1px solid #eceff1;
    z-index: 1;
}

.mobile-drawer-back {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0.35rem 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
}

.mobile-drawer-back-icon {
    display: block;
    width: 26px;
    height: 26px;
}

.mobile-drawer-close {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3.2rem;
    height: 3.2rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-close img {
    display: block;
    width: 26px;
    height: 26px;
}

.inquiry-cart-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 3.35rem;
    height: 3.35rem;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 560;
    box-shadow: 0 8px 20px rgba(17, 24, 33, 0.2);
}

.inquiry-cart-fab img {
    display: block;
    width: 26px;
    height: 26px;
}

.inquiry-cart-fab-count {
    position: absolute;
    top: -0.32rem;
    right: -0.2rem;
    min-width: 1.34rem;
    height: 1.34rem;
    border-radius: 999px;
    padding: 0 0.3rem;
    background: #111821;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.34rem;
    text-align: center;
    border: 0;
}

.inquiry-cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 570;
}

.inquiry-cart-backdrop[hidden] {
    display: none;
}

.inquiry-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 390px);
    background: #ffffff;
    z-index: 580;
    transform: translateX(100%);
    transition: transform 0.22s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.inquiry-cart-drawer.is-open {
    transform: translateX(0);
}

.inquiry-cart-drawer-header {
    min-height: 3.25rem;
    border-bottom: 1px solid #eceff1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
}

.inquiry-cart-drawer-header h2 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--black);
}

.inquiry-cart-drawer-close {
    width: 2.55rem;
    height: 2.55rem;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.inquiry-cart-drawer-close img {
    display: block;
    width: 22px;
    height: 22px;
}

.inquiry-cart-drawer-body {
    overflow-y: auto;
    padding: 0.78rem;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}

.inquiry-cart-drawer-empty {
    margin: 0;
    font-size: 0.95rem;
    color: #5f6770;
}

.inquiry-cart-drawer-list {
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}

.inquiry-cart-drawer-item {
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 0.62rem;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 0.62rem;
    align-items: center;
}

.inquiry-cart-drawer-item-media {
    width: 64px;
    height: 64px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.inquiry-cart-drawer-item-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.inquiry-cart-drawer-item-title {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111821;
}

.inquiry-cart-drawer-item-link {
    display: inline-flex;
    margin-top: 0.32rem;
    font-size: 0.84rem;
    color: #5f6770;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.inquiry-cart-drawer-item-remove {
    border: 1px solid #e8edf2;
    border-radius: 8px;
    background: #ffffff;
    min-height: 2rem;
    padding: 0 0.68rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2a2f35;
    cursor: pointer;
}

.inquiry-cart-drawer-footer {
    border-top: 1px solid #eceff1;
    padding: 0.7rem 0.78rem 0.9rem;
}

.inquiry-cart-drawer-reserve.home-hero-cta {
    width: 100%;
    margin-top: 0;
}

.mobile-drawer-body {
    height: calc(100% - 3.25rem);
    overflow-y: auto;
    padding: 0.95rem 0.75rem 1.25rem;
}

.mobile-drawer-view[hidden] {
    display: none;
}

.mobile-drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-drawer-menu-item {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 0.95rem 0;
    color: var(--black);
    cursor: pointer;
    display: block;
}

.mobile-drawer-menu-item+.mobile-drawer-menu-item {
    border-top: 0;
}

.mobile-drawer-section-title {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.mobile-categories-empty {
    margin: 0;
    padding: 0.2rem 0;
    font-size: 0.92rem;
    color: #6c7278;
}

.mobile-cat-level {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-cat-item+.mobile-cat-item {
    border-top: 0;
}

.mobile-cat-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.82rem 0;
    flex: 1 1 auto;
    min-width: 0;
}

.mobile-cat-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.mobile-cat-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.mobile-cat-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.mobile-cat-count {
    font-size: 0.72rem;
    font-weight: 400;
    color: #6c7278;
}

.mobile-cat-arrow {
    display: block;
    width: 18px;
    height: 18px;
    color: var(--black);
}

.mobile-cat-expand {
    flex: 0 0 auto;
    width: 2.35rem;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.mobile-cat-expand:hover,
.mobile-cat-expand:focus-visible {
    background: #f8f9fa;
}

body.mobile-drawer-open {
    overflow: hidden;
}

.header-topbar-right {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.header-topbar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
}

.header-topbar-right a img {
    width: 22px;
    height: 22px;
}

.header-main,
.header-submenu {
    background: #ffffff;
}

.header-main-inner {
    min-height: 0;
    display: flex;
    align-items: center;
    gap: 50px;
    padding-top: 6px;
    padding-bottom: 6px;
    transition: padding 0.22s ease, gap 0.22s ease;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-mobile-phone {
    display: none;
}

.header-logo img {
    width: auto;
    max-width: clamp(188px, 15.2vw, 252px);
    height: calc(clamp(3.35rem, 4.2vw, 4.95rem) + 10px);
    max-height: none;
    transition: height 0.28s ease, max-width 0.28s ease;
}

@media (min-width: 1024px) {
    .site-header.is-scrolled .header-main-inner {
        gap: 1.2rem;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .site-header.is-scrolled .header-logo img {
        height: calc(2.65rem + 10px);
        width: auto;
        max-height: none;
    }
}

.header-search {
    flex: 1;
    position: relative;
    min-width: 0;
}

.header-search-field {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.header-search input {
    flex: 1;
    min-width: 0;
    height: 2.5rem;
    border: 1px solid #e3e6e8;
    border-right: 0;
    border-radius: 0;
    padding: 0 0.95rem;
    font-size: 0.95rem;
    color: var(--black);
    background: #ffffff;
    transition: border-color 0.2s ease;
    transform: none;
}

.header-search input:hover,
.header-search input:focus,
.header-search input:focus-visible {
    border-color: var(--primary);
    outline: none;
    box-shadow: none;
    transform: none;
}

.header-search input::placeholder {
    color: #7e8388;
}

.header-search button {
    width: 3.1rem;
    height: 2.5rem;
    border: 0;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: filter 0.2s ease;
}

.header-search button:hover,
.header-search button:focus-visible {
    filter: brightness(1.06);
    outline: none;
    box-shadow: none;
}

.header-search-submit img {
    width: 14px;
    height: 14px;
    transition: opacity 0.2s ease;
}

.header-search.is-loading .header-search-submit img {
    opacity: 0;
}

.header-search-submit::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-search.is-loading .header-search-submit::after {
    opacity: 1;
    transform: scale(1);
    animation: header-search-spin 0.7s linear infinite;
}

@keyframes header-search-spin {
    to {
        transform: rotate(360deg);
    }
}

.header-submenu {
    position: relative;
    border-top: 1px solid #eceff1;
    border-bottom: 1px solid #eceff1;
}

.header-submenu-inner {
    min-height: 0;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    padding-top: 6px;
    padding-bottom: 6px;
}

.header-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e8ea;
    border-top: 0;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    z-index: 240;
    width: 100%;
    min-height: 100px;
    max-height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.header-search-results[hidden] {
    display: none;
}

.header-search-scroll {
    flex: 1 1 auto;
    min-height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

.header-search-list {
    display: flex;
    flex-direction: column;
}

.header-search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.62rem 0.75rem;
}

.header-search-item-main {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.header-search-item+.header-search-item {
    border-top: 1px solid #f1f3f5;
}

.header-search-item:hover {
    background: #f9fafb;
}

.header-search-item-thumb {
    width: 42px;
    height: 42px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eceff1;
}

.header-search-item-thumb-empty {
    background: #f2f4f6;
}

.header-search-item-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.header-search-item-text strong {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--black);
}

.header-search-item-id {
    font-size: 0.78rem;
    color: #687078;
}

.header-search-item-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #232a31;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-search-pricing {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.header-search-price-old {
    font-size: 0.72rem;
    color: #727b84;
    text-decoration: line-through;
}

.header-search-price-new {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

.header-search-price-meta {
    font-size: 0.62rem;
    color: #7a828a;
}

.header-search-empty {
    padding: 0.75rem;
    font-size: 0.86rem;
    color: #6f7680;
}

.header-search-all-results {
    border-top: 0;
    padding: 0.55rem 0.75rem;
    background: #fff;
}

.header-search-all-results a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
}

.header-search-promos {
    border-top: 1px solid #edf0f2;
    padding: 0.55rem;
    background: #fff;
}

.header-search-promos-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #5f6670;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.header-search-promos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.1rem;
}

.header-search-promo-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.5rem;
    background: #fafbfc;
    border: 1px solid #eceff1;
    min-width: 210px;
    max-width: 250px;
    flex: 0 0 auto;
}

.header-search-promo-card:hover {
    background: #f3f6f8;
}

.header-search-promo-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--black);
}

.header-search-promo-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    flex: 1;
}

.header-search-cta-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    color: var(--black);
}

.header-search input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background-image: var(--header-search-close-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    cursor: pointer;
    opacity: 0.9;
}

.categories-dropdown {
    position: relative;
    flex-shrink: 0;
}

.categories-toggle {
    height: 3rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.categories-toggle-icon {
    display: block;
    width: 16px;
    height: 16px;
}

.categories-toggle-icon-right {
    margin-left: 0.1rem;
}

.categories-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 290px;
    max-width: 340px;
    background: #ffffff;
    border: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 240;
    max-height: min(72vh, calc(100dvh - 120px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.categories-dropdown.is-open .categories-panel {
    display: block;
}

.categories-empty {
    margin: 0;
    padding: 0.9rem;
    font-size: 0.9rem;
    color: #6c7278;
}

.categories-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 210;
}

.categories-backdrop[hidden] {
    display: none;
}

.categories-level {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-item {
    position: relative;
}

.categories-row {
    display: flex;
    align-items: stretch;
}

.categories-level-root>.categories-item+.categories-item {
    border-top: 0;
}

.categories-level-root {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.categories-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.72rem 0.9rem;
    flex: 1 1 auto;
    min-width: 0;
}

.categories-expand {
    flex: 0 0 auto;
    width: 2.35rem;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.categories-expand:hover,
.categories-expand:focus-visible {
    background: #f8f9fa;
}

.categories-panel .cat-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.categories-row:hover .categories-link,
.categories-row:focus-within .categories-link,
.categories-row:hover .categories-expand,
.categories-row:focus-within .categories-expand {
    background: var(--primary);
}

.categories-row:hover .cat-name,
.categories-row:focus-within .cat-name,
.categories-row:hover .cat-count,
.categories-row:focus-within .cat-count {
    color: var(--black);
}

.categories-level-children-wrap {
    position: static;
    margin: 0;
    padding: 0 0 0 0.65rem;
    display: none;
}

.categories-item.is-open>.categories-level-children-wrap {
    display: block;
}

.categories-level-children-wrap>.categories-level-children {
    position: static;
    border: 0;
    box-shadow: none;
    min-width: 0;
    max-width: none;
    display: block;
}

.categories-item.is-open>.categories-row .cat-arrow {
    transform: rotate(90deg);
}

.categories-panel .cat-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

.categories-panel .cat-count {
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 400;
    color: #6c7278;
}

.categories-panel .cat-arrow {
    display: block;
    align-self: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--black);
}

.submenu-links {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.submenu-links a {
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.submenu-links a:hover,
.submenu-links a:focus-visible {
    color: #2d3946;
    opacity: 0.88;
}

.submenu-phone {
    margin-left: auto;
    margin-inline-start: auto;
    margin-right: 0;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--black);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.submenu-phone:hover,
.submenu-phone:focus-visible {
    color: #2d3946;
    opacity: 0.88;
}

.submenu-phone img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(88%) saturate(1081%) hue-rotate(342deg) brightness(102%) contrast(96%);
}

@media (max-width: 1279px) {
    .header-main-inner {
        gap: 1.8rem;
    }
}

@media (max-width: 1023px) {
    .header-topbar-inner {
        min-height: auto;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "addr addr"
            "hours social";
        column-gap: 0.9rem;
        row-gap: 0.35rem;
        align-items: center;
    }

    .header-topbar-right {
        grid-area: social;
        justify-self: end;
    }

    .header-topbar-left {
        display: contents;
    }

    .header-topbar-address {
        grid-area: addr;
    }

    .header-topbar-hours {
        grid-area: hours;
    }

    .header-main-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .header-logo {
        justify-content: center;
    }

    .header-submenu-inner {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem 1rem;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .submenu-links {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
    }
}

@media (max-width: 1067px) {
    .header-submenu-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "cats . phone"
            "links links links";
        align-items: center;
        gap: 0.75rem 1rem;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .submenu-phone {
        grid-area: phone;
        margin-left: auto !important;
        margin-inline-start: auto !important;
        margin-right: 0 !important;
        font-size: clamp(0.82rem, 1.15vw, 0.97rem);
        gap: 0.35rem;
    }

    .categories-dropdown {
        grid-area: cats;
    }

    .submenu-links {
        grid-area: links;
        width: 100%;
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

@media (max-width: 1005px) {
    .header-main-inner {
        display: grid;
        grid-template-columns: 1fr auto auto;
        grid-template-areas:
            "logo phone menu"
            "search search search";
        column-gap: 0.75rem;
        row-gap: 0.55rem;
        align-items: center;
    }

    .header-logo {
        grid-area: logo;
        justify-content: flex-start;
    }

    .header-mobile-phone {
        grid-area: phone;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--black);
        white-space: nowrap;
        justify-self: end;
        line-height: 1;
    }

    .header-mobile-phone img {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
        filter: brightness(0) saturate(100%) invert(65%) sepia(88%) saturate(1081%) hue-rotate(342deg) brightness(102%) contrast(96%);
    }

    .mobile-menu-toggle {
        display: inline-flex;
        grid-area: menu;
        width: 3.2rem;
        height: 3.2rem;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle img {
        width: 26px;
        height: 26px;
    }

    .header-search {
        grid-area: search;
    }

    .header-submenu {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-header .site-shell {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .header-mobile-phone {
        font-size: 0.82rem;
        gap: 0.22rem;
    }

    .header-mobile-phone img {
        width: 14px;
        height: 14px;
    }

    .header-topbar-item {
        font-size: 0.76rem;
    }

    .header-topbar-inner {
        align-items: center;
    }

    .header-topbar-address,
    .header-topbar-hours {
        align-items: center;
    }

    .header-main-inner {
        display: grid;
        grid-template-columns: 1fr auto auto;
        grid-template-areas:
            "logo phone menu"
            "search search search";
        column-gap: 0.75rem;
        row-gap: 0.55rem;
        align-items: center;
    }

    .header-logo {
        grid-area: logo;
        justify-content: flex-start;
    }

    .header-mobile-phone {
        grid-area: phone;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--black);
        white-space: nowrap;
        justify-self: end;
        line-height: 1;
    }

    .header-mobile-phone img {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
        filter: brightness(0) saturate(100%) invert(65%) sepia(88%) saturate(1081%) hue-rotate(342deg) brightness(102%) contrast(96%);
    }

    .mobile-menu-toggle {
        display: inline-flex;
        grid-area: menu;
        width: 3.2rem;
        height: 3.2rem;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle img {
        width: 26px;
        height: 26px;
    }

    .header-search {
        grid-area: search;
    }

    .header-submenu {
        display: none;
    }

    .header-search input,
    .header-search button {
        height: 2.3rem;
    }

    .submenu-phone {
        font-size: 0.86rem;
    }

    .categories-panel {
        min-width: 255px;
    }

    .inquiry-cart-fab {
        right: 0.8rem;
        bottom: 0.8rem;
        width: 3.1rem;
        height: 3.1rem;
    }

    .inquiry-cart-drawer {
        width: 100%;
    }
}

@media (max-width: 338px) {
    .header-mobile-phone {
        display: none;
    }
}