/* OMECA modern storefront
   Loaded after legacy layout styles so responsive behavior is deterministic. */

:root {
    --storefront-ink: #3f3026;
    --storefront-muted: #806f61;
    --storefront-gold: #d99a2b;
    --storefront-gold-dark: #ad7417;
    --storefront-cream: #fffaf0;
    --storefront-beige: #f4eadb;
    --storefront-beige-light: #faf4ea;
    --storefront-sand: #eee1d0;
    --storefront-melon: #e99a7a;
    --storefront-melon-light: #f2b096;
    --storefront-melon-dark: #cc7658;
    --storefront-line: rgba(74, 55, 40, .12);
    --storefront-shadow: 0 18px 50px rgba(74, 55, 40, .09);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--storefront-ink);
    background: var(--storefront-beige);
    padding-bottom: 92px !important;
    transition: background-color .35s ease, color .25s ease;
}

.site-announcement {
    min-height: 34px;
    display: flex;
    align-items: center;
    color: #fffdf9;
    background: linear-gradient(90deg, var(--storefront-melon-dark), var(--storefront-melon-light), var(--storefront-melon-dark));
    box-shadow: inset 0 -1px 0 rgba(92, 52, 37, .12);
    font-size: .77rem;
    letter-spacing: .025em;
}

.site-announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 6vw, 5rem);
}

.site-announcement i {
    margin-right: .4rem;
    color: #fff5eb;
}

.site-header.navbar {
    position: relative;
    z-index: 1025;
    min-height: 118px;
    padding: 8px 0 !important;
    border: 0;
    border-bottom: 1px solid var(--storefront-line);
    background: rgba(250, 244, 234, .96) !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px);
}

.site-header .container {
    max-width: 1440px;
}

.site-header .navbar-logo {
    height: 140px !important;
    max-height: none !important;
    filter: drop-shadow(0 7px 10px rgba(91, 59, 39, .18));
    transform: scale(1.12);
    transition: transform .25s ease, filter .25s ease;
}

.site-header .navbar-brand:hover .navbar-logo {
    filter: drop-shadow(0 9px 14px rgba(91, 59, 39, .24));
    transform: scale(1.17);
}

.site-header .nav-link {
    position: relative;
    color: var(--storefront-ink) !important;
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-header .navbar-nav:not(.flex-row) .nav-link::after {
    position: absolute;
    right: .75rem;
    bottom: .25rem;
    left: .75rem;
    height: 1px;
    content: "";
    background: var(--storefront-gold);
    transform: scaleX(0);
    transition: transform .22s ease;
}

.site-header .navbar-nav:not(.flex-row) .nav-link:hover::after {
    transform: scaleX(1);
}

.site-header .search-form {
    width: min(240px, 18vw);
    height: 42px;
    border: 1px solid var(--storefront-line);
    border-radius: 999px;
    background: rgba(250, 244, 234, .92);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.site-header .search-input {
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    background: transparent;
    font-size: .86rem;
}

.site-header .search-input:focus {
    outline: 0;
    box-shadow: none;
}

.site-header .search-btn {
    width: 42px;
    border: 0;
    color: var(--storefront-ink);
    background: transparent;
}

.site-header .btn-primary {
    border-color: var(--storefront-ink) !important;
    border-radius: 999px;
    color: #fff !important;
    background: var(--storefront-ink) !important;
}

/* Mobile collapse must never participate in the desktop flex layout. */
.site-header #mobileNavCollapse {
    display: none !important;
}

.category-navigation {
    position: relative;
    z-index: 1020;
    border-bottom: 1px solid var(--storefront-line);
    background: #fff;
}

.category-navigation .container {
    display: flex;
    max-width: 1440px;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 2.5vw, 2.8rem);
    min-height: 46px;
}

.category-navigation a {
    position: relative;
    padding: 14px 0 12px;
    color: var(--storefront-ink);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none;
    white-space: nowrap;
}

.category-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--storefront-gold);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.category-navigation a:hover::after {
    transform: scaleX(1);
}

main {
    min-height: 55vh;
    background: linear-gradient(180deg, var(--storefront-beige-light) 0%, var(--storefront-beige) 100%);
}

.storefront-hero {
    width: auto !important;
    max-width: 1480px;
    margin: 18px auto 0;
    padding: 0 20px;
    background: transparent !important;
}

.storefront-hero .carousel {
    overflow: hidden;
    border-radius: 24px;
    background: var(--storefront-sand);
    box-shadow: var(--storefront-shadow);
}

.storefront-hero .carousel-item {
    background: var(--storefront-sand);
}

.storefront-hero .fullwidth-slide-img {
    width: 100% !important;
    height: clamp(390px, 39vw, 590px) !important;
    max-height: none !important;
    display: block;
    object-fit: cover !important;
    object-position: center;
    filter: none !important;
}

.storefront-hero .fullwidth-slide-placeholder {
    height: clamp(390px, 39vw, 590px) !important;
}

.storefront-hero .fullwidth-slide-caption {
    right: auto !important;
    bottom: 42px !important;
    left: 42px;
    max-width: min(520px, 70%);
    padding: 14px 22px !important;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px !important;
    color: #fff;
    background: rgba(54, 39, 29, .68) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .13);
    backdrop-filter: blur(12px);
    font-size: clamp(.92rem, 1.4vw, 1.12rem) !important;
}

.storefront-hero .carousel-control-prev,
.storefront-hero .carousel-control-next {
    top: 50%;
    width: 44px;
    height: 44px;
    margin: 0 18px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: var(--storefront-ink);
    background: rgba(255, 255, 255, .86);
    opacity: .92;
    transform: translateY(-50%);
}

.storefront-hero .carousel-indicators {
    gap: 6px;
    margin-bottom: 18px;
}

.storefront-hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
}

.category-section,
.products-section {
    padding: clamp(3.25rem, 6vw, 6rem) 0 !important;
}

.category-section {
    background: linear-gradient(180deg, var(--storefront-beige-light) 0%, var(--storefront-beige) 100%);
}

.products-section {
    background: linear-gradient(180deg, var(--storefront-beige) 0%, #f8efe4 14%, #f2e5d5 100%) !important;
}

.storefront-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-eyebrow {
    display: block;
    margin-bottom: .35rem;
    color: var(--storefront-gold-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.storefront-section-heading .section-title {
    margin: 0;
    color: var(--storefront-ink);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -.035em;
    text-align: left;
}

.storefront-section-heading .section-title::after {
    display: none;
}

.section-link {
    padding-bottom: .2rem;
    border-bottom: 1px solid var(--storefront-ink);
    color: var(--storefront-ink);
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.section-link:hover {
    color: var(--storefront-gold-dark);
    border-color: var(--storefront-gold-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-grid-item {
    min-width: 0;
}

.category-grid .category-card {
    height: 100%;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.category-grid .category-card::before {
    display: none !important;
}

.category-grid .category-image-wrapper {
    height: auto !important;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px !important;
    background: var(--storefront-sand);
}

.category-grid .category-image {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    object-fit: cover !important;
    mix-blend-mode: normal !important;
    transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.category-grid .category-card:hover .category-image {
    transform: scale(1.035) !important;
}

.category-grid .category-overlay {
    background: linear-gradient(to top, rgba(49, 35, 26, .14), transparent 45%) !important;
}

.category-grid .category-content {
    padding: 16px 2px 0 !important;
}

.category-grid .category-content h3 {
    margin: 0 0 5px;
    color: var(--storefront-ink);
    font-size: 1.06rem;
    font-weight: 700;
}

.category-grid .category-content p {
    min-height: 2.8em;
    margin: 0 0 11px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--storefront-muted);
    font-size: .8rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-grid .product-count {
    padding: 0;
    color: var(--storefront-gold-dark);
    background: transparent;
    font-size: .75rem;
    font-weight: 700;
}

.storefront-product-grid,
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 20px;
}

.storefront-product-item,
.product-list-item {
    min-width: 0;
}

.storefront-product-grid .product-card,
.product-grid .product-card,
.product-list-grid .product-card {
    height: 100%;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.storefront-product-grid .product-card:hover,
.product-grid .product-card:hover,
.product-list-grid .product-card:hover {
    box-shadow: none;
    transform: none;
}

.storefront-product-grid .product-image,
.product-grid .product-image,
.product-list-grid .product-image {
    height: auto;
    padding-bottom: 0 !important;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 16px;
    background: #f0e9df;
}

.storefront-product-grid .product-image img,
.product-grid .product-image img,
.product-list-grid .product-image img {
    object-fit: cover;
    mix-blend-mode: normal;
    transition: opacity .3s ease, transform .5s cubic-bezier(.2, .7, .2, 1);
}

.storefront-product-grid .product-card:hover .product-image img,
.product-grid .product-card:hover .product-image img,
.product-list-grid .product-card:hover .product-image img {
    transform: scale(1.025);
}

.storefront-product-grid .product-info,
.product-grid .product-info,
.product-list-grid .product-info {
    padding: 14px 2px 0;
}

.storefront-product-grid .category-name,
.product-grid .category-name,
.product-list-grid .category-name {
    color: var(--storefront-muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.storefront-product-grid .product-info h4,
.product-grid .product-info h4,
.product-list-grid .product-info h4 {
    margin: 5px 0 10px;
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.35;
}

.storefront-product-grid .product-info h4 a,
.product-grid .product-info h4 a,
.product-list-grid .product-info h4 a {
    color: var(--storefront-ink);
}

.storefront-product-grid .price,
.product-grid .price,
.product-list-grid .price {
    color: var(--storefront-ink);
    font-size: 1rem;
    font-weight: 800;
}

.storefront-product-grid .featured-badge,
.product-grid .featured-badge,
.product-list-grid .featured-badge {
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 4px;
    color: var(--storefront-ink);
    background: rgba(255, 250, 240, .9);
    font-size: .65rem;
    letter-spacing: .04em;
    backdrop-filter: blur(8px);
}

.storefront-product-grid .add-to-cart-quick,
.product-grid .add-to-cart-quick,
.product-list-grid .add-to-cart-quick {
    width: 38px;
    height: 38px;
    border: 1px solid var(--storefront-line);
    border-radius: 50%;
    color: var(--storefront-ink);
    background: #fff;
}

.storefront-product-grid .add-to-cart-quick:hover,
.product-grid .add-to-cart-quick:hover,
.product-list-grid .add-to-cart-quick:hover {
    color: #fff;
    border-color: var(--storefront-ink);
    background: var(--storefront-ink);
}

.storefront-features {
    background: linear-gradient(180deg, #f2e5d5 0%, var(--storefront-beige-light) 100%);
}

.storefront-feature-strip {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--storefront-line);
    border-radius: 18px;
    background: rgba(255, 250, 242, .82);
    box-shadow: 0 14px 38px rgba(96, 65, 43, .06);
    backdrop-filter: blur(10px);
}

.storefront-feature-strip > div {
    margin: 0 !important;
    padding: 0;
}

.storefront-feature-strip .feature-card {
    min-height: 158px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--storefront-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.storefront-feature-strip > div:last-child .feature-card {
    border-right: 0;
}

.storefront-feature-strip .feature-card:hover {
    box-shadow: none;
    transform: none;
}

.storefront-feature-strip .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.storefront-feature-strip h5 {
    margin-bottom: 4px;
    color: var(--storefront-ink);
    font-size: .92rem;
}

.storefront-feature-strip p {
    font-size: .76rem;
}

.footer {
    position: relative;
    margin-top: 0;
    padding: 68px 0 24px;
    overflow: hidden;
    color: #fffaf5;
    background: linear-gradient(145deg, var(--storefront-melon-dark) 0%, var(--storefront-melon) 48%, var(--storefront-melon-light) 100%) !important;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -14px 44px rgba(131, 75, 53, .10);
}

.footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, .45);
}

.footer h5,
.footer p,
.footer li,
.footer .text-muted,
.footer a.text-muted {
    color: rgba(255, 250, 245, .88) !important;
}

.footer h5 {
    color: #fff !important;
}

.footer a {
    color: rgba(255, 250, 245, .88) !important;
    transition: color .22s ease, transform .22s ease;
}

.footer a:hover {
    color: #fff !important;
}

.footer .social-links a {
    color: var(--storefront-melon-dark) !important;
    background: rgba(255, 255, 255, .9) !important;
}

.footer .social-links a:hover {
    color: #fff !important;
    background: var(--storefront-ink) !important;
    transform: translateY(-2px);
}

.footer-logo {
    padding: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .88);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, .24) !important;
}

/* Smart shopping dock: desktop floating bar, mobile edge-to-edge navigation. */
.bottom-navbar {
    right: auto !important;
    bottom: 18px !important;
    left: 50% !important;
    width: min(520px, calc(100% - 32px));
    height: 64px !important;
    display: flex !important;
    padding: 6px 12px !important;
    border: 1px solid rgba(74, 55, 40, .13) !important;
    border-radius: 20px;
    background: rgba(250, 244, 234, .96) !important;
    box-shadow: 0 14px 42px rgba(74, 55, 40, .18) !important;
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.bottom-navbar.bottom-navbar-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 30px)) !important;
}

.bottom-navbar .bottom-nav-item {
    min-width: 0;
    padding: 6px 18px;
    color: var(--storefront-muted) !important;
}

.bottom-navbar .bottom-nav-item.active,
.bottom-navbar .bottom-nav-item:hover {
    color: var(--storefront-gold-dark) !important;
}

.bottom-navbar .bottom-nav-item::before {
    background: rgba(217, 154, 43, .12) !important;
}

.bottom-navbar-spacer {
    display: block !important;
    height: 0 !important;
}

.bottom-search-bar {
    right: auto !important;
    bottom: 92px !important;
    left: 50% !important;
    width: min(520px, calc(100% - 32px));
    border: 1px solid var(--storefront-line);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(74, 55, 40, .14);
    transform: translateX(-50%);
}

.bottom-search-bar.active {
    display: block !important;
}

.whatsapp-float {
    right: 22px !important;
    bottom: 24px !important;
}

/* Product listing/detail pages inherit the same visual language. */
.products-header,
.page-header {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    background: var(--storefront-cream) !important;
}

.filter-section,
.product-detail-card,
.cart-summary {
    border: 1px solid var(--storefront-line);
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.product-list-page {
    max-width: 1400px;
}

.product-list-heading {
    align-items: end;
    padding: 18px 0 12px;
}

.product-list-heading h1 {
    color: var(--storefront-ink);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -.035em;
}

.product-list-page > .breadcrumb {
    font-size: .8rem;
}

.product-list-page .search-form {
    height: 46px;
    display: flex;
    overflow: hidden;
    border: 1px solid var(--storefront-line);
    border-radius: 999px;
    background: #fff;
}

.product-list-page .search-input {
    padding: 0 1rem;
    border: 0;
    background: transparent;
}

.product-list-page .search-input:focus {
    outline: 0;
    box-shadow: none;
}

.product-list-page .search-btn {
    width: 46px;
    border: 0;
    color: var(--storefront-ink);
    background: transparent;
}

.category-filter {
    display: flex;
    gap: 8px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.category-filter .btn {
    flex: 0 0 auto;
    padding: 8px 14px;
    border-color: var(--storefront-line);
    border-radius: 999px;
    color: var(--storefront-ink);
    background: #fff;
}

.category-filter .btn-primary,
.category-filter .btn:hover {
    color: #fff;
    border-color: var(--storefront-ink);
    background: var(--storefront-ink);
}

@media (max-width: 1199.98px) {
    .site-header .search-form {
        width: 190px;
    }

    .category-grid,
    .storefront-product-grid {
        gap: 22px 16px;
    }
}

@media (max-width: 991.98px) {
    .site-header.navbar {
        min-height: 94px;
    }

    .site-header .navbar-logo {
        height: 108px !important;
        max-height: none !important;
    }

    .site-header #mobileNavCollapse {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--storefront-beige-light);
        border-bottom: 1px solid var(--storefront-line);
        box-shadow: 0 18px 35px rgba(74, 55, 40, .12);
    }

    .site-header #mobileNavCollapse.show {
        display: block !important;
    }

    .site-header .navbar-collapse .navbar-nav {
        border: 0 !important;
        box-shadow: none !important;
    }

    .storefront-hero {
        margin-top: 12px;
        padding: 0 12px;
    }

    .storefront-hero .carousel {
        border-radius: 18px;
    }

    .storefront-hero .fullwidth-slide-img,
    .storefront-hero .fullwidth-slide-placeholder {
        height: clamp(330px, 58vw, 500px) !important;
    }

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

    .storefront-product-grid,
    .product-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .storefront-feature-strip .feature-card {
        border-bottom: 1px solid var(--storefront-line);
    }

    .storefront-feature-strip > div:nth-child(2n) .feature-card {
        border-right: 0;
    }

    .storefront-feature-strip > div:nth-last-child(-n+2) .feature-card {
        border-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 78px !important;
    }

    .site-announcement {
        min-height: 30px;
        font-size: .7rem;
    }

    .site-header.navbar {
        min-height: 88px;
        padding: 4px 0 !important;
    }

    .site-header .navbar-logo {
        height: 100px !important;
        max-height: none !important;
    }

    .storefront-hero {
        margin-top: 0;
        padding: 0;
    }

    .storefront-hero .carousel {
        border-radius: 0;
        box-shadow: none;
    }

    .storefront-hero .fullwidth-slide-img {
        height: auto !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .storefront-hero .fullwidth-slide-placeholder {
        height: min(72vw, 330px) !important;
    }

    .storefront-hero .fullwidth-slide-caption {
        right: 18px !important;
        bottom: 28px !important;
        left: 18px;
        max-width: none;
        padding: 11px 16px !important;
        text-align: center;
    }

    .storefront-hero .carousel-control-prev,
    .storefront-hero .carousel-control-next {
        width: 36px;
        height: 36px;
        margin: 0 10px;
    }

    .category-section,
    .products-section {
        padding: 3.4rem 0 !important;
    }

    .storefront-section-heading {
        align-items: center;
        margin-bottom: 1.35rem;
    }

    .storefront-section-heading .section-title {
        font-size: 1.55rem;
    }

    .section-eyebrow {
        font-size: .64rem;
    }

    .section-link {
        font-size: .74rem;
    }

    .category-grid {
        grid-auto-columns: 72%;
        grid-template-columns: none;
        grid-auto-flow: column;
        gap: 14px;
        margin-right: calc(var(--bs-gutter-x) * -.5);
        padding-right: calc(var(--bs-gutter-x) * .5);
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-grid-item {
        scroll-snap-align: start;
    }

    .category-grid .category-content p {
        min-height: 0;
    }

    .storefront-product-grid,
    .product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 10px;
    }

    .storefront-product-grid .product-info,
    .product-grid .product-info,
    .product-list-grid .product-info {
        padding-top: 10px;
    }

    .storefront-product-grid .product-info h4,
    .product-grid .product-info h4,
    .product-list-grid .product-info h4 {
        min-height: 2.7em;
        margin-bottom: 7px;
        font-size: .79rem;
    }

    .storefront-product-grid .price,
    .product-grid .price,
    .product-list-grid .price {
        font-size: .88rem;
    }

    .storefront-product-grid .add-to-cart-quick,
    .product-grid .add-to-cart-quick,
    .product-list-grid .add-to-cart-quick {
        width: 34px;
        height: 34px;
    }

    .storefront-feature-strip {
        border-radius: 14px;
    }

    .storefront-feature-strip .feature-card {
        min-height: 142px;
        padding: 18px 8px !important;
    }

    .bottom-navbar {
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100%;
        height: 66px !important;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid var(--storefront-line) !important;
        border-right: 0 !important;
        border-bottom: 0 !important;
        border-left: 0 !important;
        border-radius: 0;
        background: rgba(250, 244, 234, .96) !important;
        box-shadow: 0 -8px 24px rgba(74, 55, 40, .08) !important;
        backdrop-filter: blur(14px);
        transform: none;
    }

    .bottom-navbar.bottom-navbar-hidden {
        transform: translateY(calc(100% + 12px)) !important;
    }

    .bottom-navbar-spacer {
        display: block !important;
        height: 0 !important;
    }

    .bottom-search-bar.active {
        display: block !important;
    }

    .bottom-search-bar {
        right: 10px !important;
        bottom: 76px !important;
        left: 10px !important;
        width: auto;
        transform: none;
    }

    .bottom-nav-item {
        color: var(--storefront-muted) !important;
    }

    .bottom-nav-item.active,
    .bottom-nav-item:hover {
        color: var(--storefront-gold-dark) !important;
    }

    .bottom-nav-item::before {
        background: rgba(217, 154, 43, .12) !important;
    }

    .whatsapp-float {
        right: 15px !important;
        bottom: 82px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .footer {
        padding-top: 50px;
        border-radius: 22px 22px 0 0;
    }

}

@media (max-width: 420px) {
    .storefront-section-heading {
        gap: .75rem;
    }

    .storefront-section-heading .section-title {
        font-size: 1.35rem;
    }

    .category-grid {
        grid-auto-columns: 79%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
