/* ═══════════════════════════════════════════════════════════════
   Lutador Commerce UI — responsive e-commerce layout system
   ═══════════════════════════════════════════════════════════════ */

:root {
    --commerce-max: 1320px;
    --nav-height: 72px;
    --trust-strip-height: 36px;
    --mobile-tabs-height: 64px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --radius-commerce: 18px;
    --radius-commerce-lg: 24px;
    --shadow-card: 0 12px 40px rgba(77, 0, 0, .08);
    --shadow-card-hover: 0 20px 50px rgba(77, 0, 0, .14);
    --transition-ui: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ── App shell & safe areas ───────────────────────────────────── */
.commerce-app {
    padding-bottom: calc(var(--mobile-tabs-height) + var(--safe-bottom));
}

@media (min-width: 992px) {
    .commerce-app {
        padding-bottom: 0;
    }
}

.site-main {
    min-height: calc(100vh - var(--nav-height) - var(--trust-strip-height) - 120px);
}

.container {
    max-width: var(--commerce-max);
}

/* ── Header & navigation ──────────────────────────────────────── */
.site-chrome .site-header--premium {
    position: relative;
    top: auto;
}

.site-header:not(.site-header--premium) {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-top: env(safe-area-inset-top, 0);
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    min-height: var(--nav-height);
    width: 100%;
}

.site-nav__start {
    flex: 0 1 auto;
    min-width: 0;
}

.site-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.site-nav__center {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 520px;
    margin: 0 auto;
}

.site-nav__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

@media (min-width: 768px) {
    .site-nav__actions {
        gap: 0.5rem;
    }
}

@media (min-width: 992px) {
    .site-nav__inner {
        display: grid;
        grid-template-columns: minmax(140px, auto) minmax(200px, 1fr) auto;
        align-items: center;
    }

    .site-nav__start {
        grid-column: 1;
    }

    .site-nav__center {
        grid-column: 2;
        margin: 0;
        width: 100%;
    }

    .site-nav__actions {
        grid-column: 3;
    }
}

.site-nav__brand .brand-text,
.site-header:not(.site-header--premium) .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.site-nav__brand .brand-text__name,
.site-header:not(.site-header--premium) .brand-text__name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav__brand .brand-text__tag,
.site-header:not(.site-header--premium) .brand-text__tag {
    font-size: clamp(0.5rem, 1.8vw, 0.65rem);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(212, 175, 55, .85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-search {
    position: relative;
    flex: 1;
    max-width: 420px;
    margin: 0 auto;
}

.site-search__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    z-index: 2;
    pointer-events: none;
}

.site-search__input {
    padding-left: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, .35);
    background: rgba(255, 255, 255, .95);
    min-height: 42px;
}

.site-search__btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    border-radius: 999px;
    padding-inline: 1rem;
    font-size: .82rem;
}

.btn-nav-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, .35);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background var(--transition-ui), transform var(--transition-ui);
}

.btn-nav-icon:hover {
    background: rgba(212, 175, 55, .2);
    color: var(--gold);
    transform: translateY(-1px);
}

.nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: .65rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--maroon-dark);
}

.site-nav__toggler {
    border-color: rgba(212, 175, 55, .4);
}

.glass-nav.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.site-nav__links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.1rem;
}

.site-nav__link span {
    white-space: nowrap;
}

.site-nav__toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-trust-strip__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.brand-trust-strip__scroll::-webkit-scrollbar {
    display: none;
}

.brand-trust-strip__grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-width: min-content;
    padding: 0.5rem 0;
    font-size: 0.78rem;
    text-align: center;
}

.brand-trust-strip__grid > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.25rem 1rem;
    white-space: nowrap;
    flex: 0 0 auto;
}

.brand-trust-strip__grid > span:not(:last-child) {
    border-right: 1px solid rgba(45, 14, 14, 0.12);
}

@media (min-width: 576px) {
    .brand-trust-strip__grid {
        width: 100%;
        justify-content: space-around;
    }

    .brand-trust-strip__grid > span {
        flex: 1 1 0;
    }
}

/* ── Offcanvas & mobile menu ──────────────────────────────────── */
.site-offcanvas {
    border-radius: 0 0 var(--radius-commerce-lg) var(--radius-commerce-lg);
    max-height: 85vh;
}

.site-offcanvas--menu {
    border-radius: var(--radius-commerce-lg) 0 0 var(--radius-commerce-lg);
    width: min(320px, 88vw);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.mobile-menu-nav__link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    transition: background var(--transition-ui);
}

.mobile-menu-nav__link:hover {
    background: var(--soft-gold);
    color: var(--maroon);
}

.mobile-menu-nav__link--accent {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: #fff;
}

.mobile-menu-nav__link--muted {
    color: var(--muted);
    font-weight: 500;
}

.mobile-menu-nav__link--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.mobile-menu-nav__link--whatsapp i {
    color: #fff;
    font-size: 1.2rem;
}

.mobile-menu-nav__link--whatsapp:hover {
    background: #128c7e;
    color: #fff;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
}

/* ── Mobile bottom tab bar ─────────────────────────────────────── */
.mobile-tab-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    min-height: var(--mobile-tabs-height);
    padding-bottom: var(--safe-bottom);
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid rgba(128, 0, 0, .12);
    box-shadow: 0 -8px 32px rgba(45, 0, 0, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mobile-tab-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: .4rem .25rem;
    font-size: .62rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--muted);
    position: relative;
    transition: color var(--transition-ui);
}

.mobile-tab-bar__item i {
    font-size: 1.2rem;
}

.mobile-tab-bar__item.is-active {
    color: var(--maroon);
}

.mobile-tab-bar__item.is-active i {
    color: var(--gold);
}

.mobile-tab-bar__item--whatsapp {
    color: #128c7e;
    font-weight: 700;
}

.mobile-tab-bar__item--whatsapp i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.mobile-tab-bar__item--btn {
    border: none;
    background: transparent;
    font: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.mobile-tab-bar__item--btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.mobile-tab-bar__badge {
    position: absolute;
    top: 6px;
    right: calc(50% - 22px);
    min-width: 16px;
    height: 16px;
    font-size: .58rem;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    border-radius: 999px;
    background: var(--maroon);
    color: #fff;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer .footer-heading {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-lead {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    max-width: 28rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: .9rem;
    display: block;
    padding: .25rem 0;
    transition: color var(--transition-ui);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: var(--gold);
    text-decoration: none;
    transition: background var(--transition-ui), transform var(--transition-ui);
}

.footer-social__link:hover {
    background: rgba(212, 175, 55, .25);
    transform: translateY(-2px);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
}

/* ── Shop page layout ─────────────────────────────────────────── */
.shop-page {
    padding-bottom: 2rem;
}

.shop-hero-banner {
    background: linear-gradient(135deg, rgba(128, 0, 0, .06), rgba(212, 175, 55, .12));
    border-bottom: 1px solid rgba(128, 0, 0, .08);
    padding: 1.5rem 0 1.75rem;
    margin-bottom: 1.5rem;
}

.shop-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--maroon);
    margin: 0;
}

.shop-page__lead {
    color: var(--muted);
    font-size: .95rem;
}

.shop-results-pill {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: var(--surface-elevated);
    border: 1px solid rgba(128, 0, 0, .12);
    font-size: .88rem;
    box-shadow: var(--shadow-card);
}

.shop-layout {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .shop-layout {
        grid-template-columns: 260px 1fr;
        align-items: start;
    }

    .shop-sidebar {
        position: sticky;
        top: calc(var(--nav-height) + var(--trust-strip-height) + 1rem);
    }
}

.shop-filters-card {
    padding: 1.25rem !important;
}

.shop-filters-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    background: var(--surface-elevated);
    border: 1px solid rgba(128, 0, 0, .1);
    border-radius: var(--radius-commerce);
    box-shadow: var(--shadow-card);
}

.sticky-shop-toolbar {
    position: sticky;
    top: calc(var(--nav-height) + var(--trust-strip-height));
    z-index: 20;
}

.shop-toolbar__sort {
    flex: 1;
    min-width: 140px;
    max-width: 220px;
    margin-left: auto;
}

.shop-category-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    margin-bottom: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.shop-category-chips::-webkit-scrollbar {
    display: none;
}

.shop-chip {
    flex-shrink: 0;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(128, 0, 0, .15);
    transition: all var(--transition-ui);
}

.shop-chip:hover,
.shop-chip.is-active {
    background: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
}

/* ── Product grid ─────────────────────────────────────────────── */
.shop-product-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 576px) {
    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.shop-product-grid[data-view="compact"] {
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .shop-product-grid[data-view="compact"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.shop-product-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .shop-product-grid--related {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ── Shop product card ────────────────────────────────────────── */
.product-card--shop {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card--shop .product-card__body {
    padding: 1rem 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__title {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 .35rem;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: auto;
    padding-top: .75rem;
}

.product-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-card__pricing .price {
    font-size: 1rem;
}

.product-card__quick-view {
    position: absolute;
    inset: auto 0 0 0;
    padding: .65rem;
    background: linear-gradient(transparent, rgba(45, 0, 0, .75));
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-ui), transform var(--transition-ui);
}

.product-card--shop .product-card__media:hover .product-card__quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-card--shop .product-image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.shop-empty {
    text-align: center;
    padding: 3rem 1.5rem;
}

.shop-empty__icon {
    font-size: 2.5rem;
    color: var(--maroon);
    opacity: .35;
    display: block;
    margin-bottom: 1rem;
}

/* ── Cart page ────────────────────────────────────────────────── */
.commerce-page__title,
.product-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--maroon);
}

.commerce-page__lead {
    color: var(--muted);
    font-size: .92rem;
}

.cart-panel {
    padding: 0 !important;
    overflow: hidden;
}

.cart-line {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: .75rem 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(128, 0, 0, .08);
    align-items: center;
}

.cart-line:last-child {
    border-bottom: none;
}

.cart-line__thumb {
    grid-row: 1 / 3;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--soft-gold);
}

.cart-line__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-line__body {
    grid-column: 2;
    min-width: 0;
}

.cart-line__qty {
    grid-column: 2;
    max-width: 100px;
}

.cart-line__total {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
    white-space: nowrap;
}

.cart-line__remove {
    grid-column: 3;
    grid-row: 2;
    text-align: right;
}

@media (min-width: 768px) {
    .cart-line {
        grid-template-columns: 88px 1fr 100px 90px 44px;
        grid-template-rows: 1fr;
    }

    .cart-line__body { grid-column: 2; grid-row: 1; }
    .cart-line__qty { grid-column: 3; grid-row: 1; }
    .cart-line__total { grid-column: 4; grid-row: 1; align-self: center; }
    .cart-line__remove { grid-column: 5; grid-row: 1; align-self: center; }
}

.order-summary-card {
    padding: 1.35rem !important;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    font-size: .92rem;
}

.order-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 1rem;
    margin-top: .5rem;
    border-top: 2px solid rgba(128, 0, 0, .12);
    font-weight: 700;
}

/* ── Product detail ───────────────────────────────────────────── */
.product-page__title {
    margin-bottom: .75rem;
}

.product-info-panel {
    padding-top: .5rem;
}

.product-gallery-card {
    position: sticky;
    top: calc(var(--nav-height) + var(--trust-strip-height) + 1rem);
}

@media (max-width: 991px) {
    .product-gallery-card {
        position: static;
    }
}

.shop-breadcrumb .breadcrumb-item a {
    text-decoration: none;
}

/* ── Hero responsive refinements ──────────────────────────────── */
@media (max-width: 767px) {
    .hero--premium {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-display,
    .page-home .display-3 {
        font-size: clamp(1.65rem, 7vw, 2.1rem) !important;
        line-height: 1.15;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 220px !important;
        margin-top: .5rem;
    }

    .section-head .btn {
        width: 100%;
    }

    .featured-showcase .col-lg-5,
    .featured-showcase .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ── Touch targets & forms ────────────────────────────────────── */
@media (max-width: 991px) {
    .btn,
    .shop-chip,
    .mobile-tab-bar__item {
        min-height: 44px;
    }

    .toast-container {
        top: auto !important;
        bottom: calc(var(--mobile-tabs-height) + var(--safe-bottom) + 1rem) !important;
        left: 1rem !important;
        right: 1rem !important;
    }

    .back-to-top {
        bottom: calc(var(--mobile-tabs-height) + var(--safe-bottom) + 1rem) !important;
    }
}

.commerce-alert {
    border-radius: var(--radius-commerce);
}

/* Search suggest in commerce context */
.search-suggest-dropdown {
    border-radius: var(--radius-commerce);
    background: #fff;
    border: 1px solid rgba(128, 0, 0, .12);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.search-suggest-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .85rem;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid rgba(128, 0, 0, .06);
}

.search-suggest-item:hover {
    background: var(--soft-gold);
}

/* ── Header responsive refinements ───────────────────────────── */
.announce-bar__text {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 2rem;
    font-size: clamp(0.72rem, 2.8vw, 0.8rem);
    line-height: 1.35;
}

.announce-bar__text--short {
    display: none;
}

.announce-bar__icon {
    flex-shrink: 0;
    color: var(--gold);
}

@media (max-width: 575px) {
    .announce-bar__inner {
        justify-content: flex-start;
        text-align: left;
        padding-inline: 0.25rem;
    }

    .announce-bar__text--full {
        display: none;
    }

    .announce-bar__text--short {
        display: inline;
    }
}

@media (max-width: 991px) {
    :root {
        --nav-height: 64px;
        --trust-strip-height: 40px;
    }

    .site-header:not(.site-header--premium) .glass-nav {
        min-height: var(--nav-height);
    }

    .site-header:not(.site-header--premium) .brand-logo {
        width: 40px !important;
        height: 40px !important;
    }

    .site-nav__brand .brand-text {
        max-width: min(42vw, 9.5rem);
    }

    .btn-nav-icon {
        width: 44px;
        height: 44px;
    }

    .nav-cart-badge--mobile:empty,
    .nav-cart-badge:empty {
        display: none;
    }
}

@media (max-width: 380px) {
    .site-nav__brand .brand-text__tag {
        display: none;
    }

    .site-nav__actions {
        gap: 0.2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site-nav__link {
        padding: 0.45rem 0.55rem;
        font-size: 0.82rem;
    }

    .site-nav__link--register {
        padding: 0.5rem 0.85rem;
    }

    .site-search__input {
        font-size: 0.85rem;
        min-height: 42px;
    }
}

@media (min-width: 992px) {
    .site-nav__link i {
        display: none;
    }
}

body.offcanvas-open {
    overflow: hidden;
}

.site-offcanvas--search {
    max-height: min(50vh, 320px);
}

.site-offcanvas--menu .offcanvas-header {
    padding: 1rem 1.15rem;
}

.site-offcanvas--menu .mobile-menu-nav__link {
    min-height: 48px;
}

.search-suggest-item img {
    border-radius: 8px;
    object-fit: cover;
}
