/* /Components/Cart/MiniCartPanel.razor.rz.scp.css */
.mini-cart-backdrop[b-k9n71s85p8] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mini-cart-backdrop.open[b-k9n71s85p8] {
    opacity: 1;
    pointer-events: auto;
}

.mini-cart-panel[b-k9n71s85p8] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 22rem;
    max-width: 90vw;
    background: white;
    z-index: 1050;
    box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.mini-cart-panel.open[b-k9n71s85p8] {
    transform: translateX(0);
}

.mini-cart-header[b-k9n71s85p8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mini-cart-body[b-k9n71s85p8] {
    padding: 1rem;
    overflow-y: auto;
    flex-grow: 1;
}

.mini-cart-item[b-k9n71s85p8] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.mini-cart-item img[b-k9n71s85p8] {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 0.25rem;
}

.mini-cart-item-details[b-k9n71s85p8] {
    flex-grow: 1;
}

.mini-cart-total[b-k9n71s85p8] {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin: 1rem 0;
}
/* /Components/Cart/Toast.razor.rz.scp.css */
.toast-notification[b-9cagvl30mo] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1060;
    background: #212529;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
    animation: toast-in-b-9cagvl30mo 0.2s ease-out;
}

@keyframes toast-in-b-9cagvl30mo {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Home/HomeSlider.razor.rz.scp.css */
/* Fallback banner shown when no slide is active. Moved here from Home.razor.css because
   this component now owns the markup - scoped CSS doesn't cross component boundaries. */
.hero[b-2x2rwsu6bq] {
    background: linear-gradient(120deg, var(--brand-black) 0%, var(--brand-black-hover) 100%);
    border-radius: 0.5rem;
    padding: 3.5rem 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-copy[b-2x2rwsu6bq] {
    max-width: 34rem;
}

.hero .btn-primary[b-2x2rwsu6bq] {
    border-width: 1px;
    border-style: solid;
    border-color: var(--brand-on-primary);
}

.hero-eyebrow[b-2x2rwsu6bq] {
    display: inline-block;
    color: var(--brand-star);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.hero h1[b-2x2rwsu6bq] {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero p[b-2x2rwsu6bq] {
    color: #cfd7e0;
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
    .hero[b-2x2rwsu6bq] {
        padding: 2.25rem 1.5rem;
    }

    .hero h1[b-2x2rwsu6bq] {
        font-size: 1.7rem;
    }
}

.hero-slider[b-2x2rwsu6bq],
.hero-slider-skeleton[b-2x2rwsu6bq] {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 2;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.hero-slider-skeleton[b-2x2rwsu6bq] {
    background: linear-gradient(120deg, var(--brand-black) 0%, var(--brand-black-hover) 100%);
}

.hero-slider-track[b-2x2rwsu6bq] {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero-slide[b-2x2rwsu6bq] {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.slide-layout[b-2x2rwsu6bq] {
    display: grid;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

.slide-single[b-2x2rwsu6bq] {
    grid-template-columns: 1fr;
}

.slide-two[b-2x2rwsu6bq] {
    grid-template-columns: 1fr 1fr;
}

.slide-one-two[b-2x2rwsu6bq] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.slide-one-two .slide-cell.primary[b-2x2rwsu6bq] {
    grid-row: 1 / span 2;
}

.slide-one-four[b-2x2rwsu6bq] {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.slide-one-four .slide-cell.primary[b-2x2rwsu6bq] {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
}

.slide-cell[b-2x2rwsu6bq] {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.06);
}

.slide-cell img[b-2x2rwsu6bq] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

a.slide-cell:hover img[b-2x2rwsu6bq] {
    transform: scale(1.03);
}

.hero-slider-nav[b-2x2rwsu6bq] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-slider-nav:hover[b-2x2rwsu6bq] {
    background: rgba(0, 0, 0, 0.7);
}

.hero-slider-nav.prev[b-2x2rwsu6bq] {
    left: 0.6rem;
}

.hero-slider-nav.next[b-2x2rwsu6bq] {
    right: 0.6rem;
}

.hero-slider-dots[b-2x2rwsu6bq] {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.hero-slider-dots button[b-2x2rwsu6bq] {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.hero-slider-dots button.active[b-2x2rwsu6bq] {
    background: #fff;
    width: 1.4rem;
    border-radius: 0.25rem;
}

@media (max-width: 640px) {
    .hero-slider[b-2x2rwsu6bq],
    .hero-slider-skeleton[b-2x2rwsu6bq] {
        aspect-ratio: 3 / 2;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-td088j1i6t] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content[b-td088j1i6t] {
    flex: 1;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
}

#blazor-error-ui[b-td088j1i6t] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-td088j1i6t] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-h8jxqrp9io],
.components-reconnect-repeated-attempt-visible[b-h8jxqrp9io],
.components-reconnect-failed-visible[b-h8jxqrp9io],
.components-pause-visible[b-h8jxqrp9io],
.components-resume-failed-visible[b-h8jxqrp9io],
.components-rejoining-animation[b-h8jxqrp9io] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-retrying[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-failed[b-h8jxqrp9io],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-h8jxqrp9io] {
    display: block;
}


#components-reconnect-modal[b-h8jxqrp9io] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-h8jxqrp9io 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-h8jxqrp9io 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-h8jxqrp9io 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-h8jxqrp9io]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-h8jxqrp9io 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-h8jxqrp9io {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-h8jxqrp9io {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-h8jxqrp9io {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-h8jxqrp9io] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-h8jxqrp9io] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-h8jxqrp9io] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-h8jxqrp9io] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-h8jxqrp9io] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-h8jxqrp9io] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-h8jxqrp9io] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-h8jxqrp9io 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-h8jxqrp9io] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-h8jxqrp9io {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/SiteFooter.razor.rz.scp.css */
.site-footer[b-6j0gxz7ckd] {
    margin-top: 3rem;
    background: var(--brand-black);
    color: #cfd7e0;
}

.footer-row[b-6j0gxz7ckd] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main .footer-row[b-6j0gxz7ckd] {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.footer-col[b-6j0gxz7ckd] {
    min-width: 10rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand[b-6j0gxz7ckd] {
    min-width: 14rem;
    flex: 1 1 14rem;
}

.footer-logo[b-6j0gxz7ckd] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo em[b-6j0gxz7ckd] {
    /* --brand-star rather than --brand-gold: this sits on the always-dark footer
       background, and star stays a consistent warm accent across every theme (unlike
       gold/primary, which can itself turn dark - see Black & White). */
    color: var(--brand-star);
    font-style: normal;
}

.footer-brand p[b-6j0gxz7ckd] {
    color: #9aa5b1;
    margin: 0.25rem 0 0;
}

.footer-currency[b-6j0gxz7ckd] {
    font-size: 0.8rem;
    color: #7d8794;
}

.footer-col h6[b-6j0gxz7ckd] {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-col[b-6j0gxz7ckd]  a,
.footer-col a[b-6j0gxz7ckd] {
    color: #cfd7e0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-col[b-6j0gxz7ckd]  a:hover,
.footer-col a:hover[b-6j0gxz7ckd] {
    text-decoration: underline;
    color: #fff;
}

.footer-bottom[b-6j0gxz7ckd] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #8b96a3;
}

.footer-bottom .footer-row[b-6j0gxz7ckd] {
    padding: 1rem 1.5rem;
}
/* /Components/Layout/SiteHeader.razor.rz.scp.css */
.site-header[b-ggzeecgjv4] {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header-row[b-ggzeecgjv4] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Utility bar */
.utility-bar[b-ggzeecgjv4] {
    background: var(--brand-black);
    color: #cfd7e0;
    font-size: 0.8rem;
}

.utility-bar .header-row[b-ggzeecgjv4] {
    height: 2.25rem;
    justify-content: space-between;
    gap: 1rem;
}

.utility-links[b-ggzeecgjv4] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.utility-links[b-ggzeecgjv4]  a,
.utility-link-btn[b-ggzeecgjv4] {
    color: #cfd7e0;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8rem;
}

.utility-links[b-ggzeecgjv4]  a:hover,
.utility-link-btn:hover[b-ggzeecgjv4] {
    color: #fff;
    text-decoration: underline;
}

/* Main header */
.main-header[b-ggzeecgjv4] {
    background: #fff;
    border-bottom: 1px solid var(--brand-card-border);
}

.main-header .header-row[b-ggzeecgjv4] {
    height: 4.5rem;
    flex-wrap: wrap;
}

.brand[b-ggzeecgjv4] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-black);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.brand svg[b-ggzeecgjv4] {
    width: 1.9rem;
    height: 1.9rem;
    color: var(--brand-gold);
}

.brand-logo-image[b-ggzeecgjv4] {
    /* max-height/max-width come from the inline style (LogoSizePresets, driven by the
       admin's Logo size setting) - object-fit here is the fallback if that's ever absent. */
    object-fit: contain;
}

.brand em[b-ggzeecgjv4] {
    color: var(--brand-gold);
    font-style: normal;
}

.search-form[b-ggzeecgjv4] {
    flex: 1 1 24rem;
    min-width: 12rem;
    display: flex;
    height: 2.75rem;
    border-radius: 0.25rem;
    overflow: hidden;
    border: 2px solid var(--brand-gold);
}

.search-category[b-ggzeecgjv4] {
    border: none;
    background: #f0f2f2;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    max-width: 9rem;
    border-right: 1px solid var(--brand-card-border);
}

.search-input[b-ggzeecgjv4] {
    flex: 1;
    border: none;
    padding: 0 0.75rem;
    min-width: 0;
    font-size: 0.95rem;
}

.search-input:focus[b-ggzeecgjv4], .search-category:focus[b-ggzeecgjv4] {
    outline: none;
}

.search-submit[b-ggzeecgjv4] {
    border: none;
    background: var(--brand-gold);
    color: var(--brand-on-primary);
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-submit:hover[b-ggzeecgjv4] {
    background: var(--brand-gold-hover);
}

.search-submit svg[b-ggzeecgjv4] {
    width: 1.25rem;
    height: 1.25rem;
}

.header-actions[b-ggzeecgjv4] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.header-action-link[b-ggzeecgjv4] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-black);
    text-decoration: none;
    white-space: nowrap;
}

.header-action-link svg[b-ggzeecgjv4] {
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.header-action-link span[b-ggzeecgjv4] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.header-action-link small[b-ggzeecgjv4] {
    font-size: 0.72rem;
    color: #565959;
}

.header-action-link strong[b-ggzeecgjv4] {
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-icon-wrap[b-ggzeecgjv4] {
    position: relative;
}

.cart-badge[b-ggzeecgjv4] {
    position: absolute;
    top: -0.5rem;
    right: -0.6rem;
    background: var(--brand-badge);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
}

/* Category bar */
.category-bar[b-ggzeecgjv4] {
    background: var(--brand-gold);
}

.category-bar .header-row[b-ggzeecgjv4] {
    height: 2.75rem;
    gap: 0;
}

.mega-menu-wrap[b-ggzeecgjv4] {
    position: relative;
    height: 100%;
}

.mega-menu-toggle[b-ggzeecgjv4] {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-black);
    color: #fff;
    border: none;
    padding: 0 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1.5rem;
}

.mega-menu-toggle:hover[b-ggzeecgjv4] {
    background: var(--brand-black-hover);
}

.mega-menu-toggle svg[b-ggzeecgjv4] {
    width: 1.1rem;
    height: 1.1rem;
}

.mega-menu-backdrop[b-ggzeecgjv4] {
    position: fixed;
    inset: 0;
    z-index: 1029;
}

.mega-menu-panel[b-ggzeecgjv4] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1031;
    background: #fff;
    color: var(--brand-black);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
    border-radius: 0 0 0.25rem 0.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem;
    min-width: 20rem;
    max-width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
}

.mega-menu-column[b-ggzeecgjv4] {
    min-width: 10rem;
}

.mega-menu-heading[b-ggzeecgjv4] {
    display: block;
    font-weight: 700;
    color: var(--brand-black);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.mega-menu-heading:hover[b-ggzeecgjv4] {
    color: var(--brand-gold-hover);
}

.mega-menu-column ul[b-ggzeecgjv4] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column li[b-ggzeecgjv4] {
    margin-bottom: 0.35rem;
}

.mega-menu-column ul a[b-ggzeecgjv4] {
    color: #444;
    text-decoration: none;
    font-size: 0.88rem;
}

.mega-menu-column ul a:hover[b-ggzeecgjv4] {
    color: var(--brand-black);
    text-decoration: underline;
}

.category-links[b-ggzeecgjv4] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}

.category-links[b-ggzeecgjv4]  a {
    color: var(--brand-on-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}

.category-links[b-ggzeecgjv4]  a:hover,
.category-links[b-ggzeecgjv4]  a.active {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .header-row[b-ggzeecgjv4] {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .main-header .header-row[b-ggzeecgjv4] {
        height: auto;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .search-form[b-ggzeecgjv4] {
        order: 3;
        flex-basis: 100%;
        height: 2.5rem;
    }

    .header-action-link span[b-ggzeecgjv4] {
        display: none;
    }

    .utility-text[b-ggzeecgjv4] {
        font-size: 0.72rem;
    }

    .mega-menu-toggle span[b-ggzeecgjv4] {
        display: none;
    }

    .mega-menu-toggle[b-ggzeecgjv4] {
        margin-right: 0.75rem;
        padding: 0 0.65rem;
    }
}
/* /Components/Layout/WhatsAppFloat.razor.rz.scp.css */
.whatsapp-float[b-ersz5i6g54] {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;

    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;

    padding: 0.6rem 0.5rem;
    border-radius: 0.6rem 0 0 0.6rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: background 0.15s ease, padding-right 0.15s ease;
}

.whatsapp-float:hover[b-ersz5i6g54] {
    background: #1da851;
    padding-right: 0.8rem;
    color: #fff;
}

.whatsapp-float svg[b-ersz5i6g54] {
    width: 1.6rem;
    height: 1.6rem;
}

@media (max-width: 600px) {
    .whatsapp-float[b-ersz5i6g54] {
        font-size: 0;
        gap: 0;
        padding: 0.7rem;
        border-radius: 50%;
        right: 0.6rem;
    }

    .whatsapp-float svg[b-ersz5i6g54] {
        width: 1.5rem;
        height: 1.5rem;
    }
}
/* /Components/Pages/Brands/Index.razor.rz.scp.css */
.brands-intro[b-qdeo4vapgo] {
    color: #6b6b6b;
    margin-bottom: 1.75rem;
}

.brand-tiles[b-qdeo4vapgo] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.brand-tile[b-qdeo4vapgo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 7.5rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.brand-tile:hover[b-qdeo4vapgo] {
    border-color: var(--brand-gold);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.brand-tile img[b-qdeo4vapgo] {
    max-width: 100%;
    max-height: 3.25rem;
    object-fit: contain;
}

.brand-tile__name[b-qdeo4vapgo] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-black);
    text-align: center;
}

@media (max-width: 991.98px) {
    .brand-tiles[b-qdeo4vapgo] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767.98px) {
    .brand-tiles[b-qdeo4vapgo] {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 479.98px) {
    .brand-tiles[b-qdeo4vapgo] {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-tile[b-qdeo4vapgo] {
        min-height: 6rem;
        padding: 0.9rem;
    }
}
/* /Components/Pages/Brands/ModelListing.razor.rz.scp.css */
.filter-toggle[b-ztawqxz5ng] {
    display: none;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.4rem;
    background: #fff;
    font-weight: 600;
}

.shop[b-ztawqxz5ng] {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.shop-filters[b-ztawqxz5ng] {
    position: sticky;
    top: 1rem;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    padding: 0.9rem 1rem;
}

.category-pills[b-ztawqxz5ng] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-pill[b-ztawqxz5ng] {
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 999px;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-black);
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.category-pill:hover[b-ztawqxz5ng] {
    border-color: var(--brand-gold);
}

.category-pill.active[b-ztawqxz5ng] {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #fff;
}

.shop-toolbar[b-ztawqxz5ng] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--brand-card-border);
}

.result-count[b-ztawqxz5ng] {
    font-size: 0.9rem;
    color: #555;
}

.sort[b-ztawqxz5ng] {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sort select[b-ztawqxz5ng] {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.3rem;
}

.no-results[b-ztawqxz5ng] {
    padding: 2rem 0;
}

.model-tiles[b-ztawqxz5ng] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.model-tile[b-ztawqxz5ng] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.model-tile:hover[b-ztawqxz5ng] {
    border-color: var(--brand-gold);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.model-tile-image[b-ztawqxz5ng] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5rem;
    margin-bottom: 0.75rem;
}

.model-tile-image img[b-ztawqxz5ng] {
    max-width: 100%;
    max-height: 5rem;
    object-fit: contain;
}

.model-tile-category[b-ztawqxz5ng] {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-gold);
    text-align: center;
}

.model-tile-brand[b-ztawqxz5ng] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #777;
    text-align: center;
}

.model-tile-name[b-ztawqxz5ng] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-black);
    text-align: center;
}

@media (max-width: 820px) {
    .filter-toggle[b-ztawqxz5ng] {
        display: block;
    }

    .shop[b-ztawqxz5ng] {
        grid-template-columns: 1fr;
    }

    .shop-filters[b-ztawqxz5ng] {
        display: none;
        position: static;
    }

    .shop.filters-open .shop-filters[b-ztawqxz5ng] {
        display: block;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .model-tiles[b-ztawqxz5ng] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}
/* /Components/Pages/Brands/ModelProducts.razor.rz.scp.css */
.filter-toggle[b-3zwq6i441q] {
    display: none;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.4rem;
    background: #fff;
    font-weight: 600;
}

.shop[b-3zwq6i441q] {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.shop-filters[b-3zwq6i441q] {
    position: sticky;
    top: 1rem;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    padding: 0.9rem 1rem;
}

.product-grid[b-3zwq6i441q] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1.25rem;
}

.no-results[b-3zwq6i441q] {
    padding: 2rem 0;
}

@media (max-width: 820px) {
    .filter-toggle[b-3zwq6i441q] {
        display: block;
    }

    .shop[b-3zwq6i441q] {
        grid-template-columns: 1fr;
    }

    .shop-filters[b-3zwq6i441q] {
        display: none;
        position: static;
    }

    .shop.filters-open .shop-filters[b-3zwq6i441q] {
        display: block;
        margin-bottom: 1.25rem;
    }
}
/* /Components/Pages/Checkout/Index.razor.rz.scp.css */
/* Shipping method / payment / billing-address choices, styled as selectable bordered
   cards (matching the reference checkout design) instead of plain radio rows. */
.selectable-card[b-ce45brkh9x] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.selectable-card:hover[b-ce45brkh9x] {
    border-color: var(--brand-gold);
}

.selectable-card.selected[b-ce45brkh9x] {
    border-color: var(--brand-gold);
    border-width: 2px;
    background: rgba(248, 181, 0, 0.06);
    padding: calc(0.75rem - 1px) calc(1rem - 1px);
}

.selectable-card input[type="radio"][b-ce45brkh9x] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.selectable-card-body[b-ce45brkh9x] {
    flex: 1;
    min-width: 0;
}
/* /Components/Pages/Cms/CmsPageView.razor.rz.scp.css */
.cms-page[b-jpuwtq4h5q] {
    max-width: 48rem;
    line-height: 1.65;
    color: #2d3748;
}

.cms-page[b-jpuwtq4h5q]  h2 {
    font-size: 1.35rem;
    margin: 1.75rem 0 0.5rem;
}

.cms-page[b-jpuwtq4h5q]  h3 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
}

.cms-page[b-jpuwtq4h5q]  p {
    margin: 0 0 1rem;
}

.cms-page[b-jpuwtq4h5q]  ul,
.cms-page[b-jpuwtq4h5q]  ol {
    margin: 0 0 1rem 1.25rem;
}

.cms-page[b-jpuwtq4h5q]  li {
    margin: 0.25rem 0;
}

.cms-page[b-jpuwtq4h5q]  a {
    color: var(--brand-black);
    text-decoration: underline;
}

.cms-page[b-jpuwtq4h5q]  table {
    border-collapse: collapse;
    margin: 0 0 1rem;
}

.cms-page[b-jpuwtq4h5q]  td,
.cms-page[b-jpuwtq4h5q]  th {
    border: 1px solid #e2e8f0;
    padding: 0.4rem 0.6rem;
}

.cms-page[b-jpuwtq4h5q]  img {
    max-width: 100%;
    height: auto;
}
/* /Components/Pages/Contact/Index.razor.rz.scp.css */
.contact-intro[b-x6u7rds9jb] {
    max-width: 44rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.contact-grid[b-x6u7rds9jb] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.contact-panels[b-x6u7rds9jb] {
    flex: 1 1 20rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card[b-x6u7rds9jb] {
    border: 1px solid #e2e8f0;
    border-radius: 0.6rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
}

.contact-card h2[b-x6u7rds9jb] {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
}

.contact-card h3[b-x6u7rds9jb] {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #718096;
    margin: 1rem 0 0.35rem;
}

.contact-card h3:first-of-type[b-x6u7rds9jb] {
    margin-top: 0;
}

.contact-list[b-x6u7rds9jb] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li[b-x6u7rds9jb] {
    padding: 0.15rem 0;
}

.contact-list a[b-x6u7rds9jb] {
    color: var(--brand-black);
    font-weight: 600;
    text-decoration: none;
}

.contact-list a:hover[b-x6u7rds9jb] {
    text-decoration: underline;
}

.contact-label[b-x6u7rds9jb] {
    color: #718096;
    font-weight: 400;
}

.contact-address div[b-x6u7rds9jb],
.contact-hours div[b-x6u7rds9jb] {
    line-height: 1.5;
}

.contact-whatsapp-buttons[b-x6u7rds9jb] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.whatsapp-button[b-x6u7rds9jb] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
}

.whatsapp-button:hover[b-x6u7rds9jb] {
    background: #1da851;
}

.whatsapp-button svg[b-x6u7rds9jb] {
    width: 1.15rem;
    height: 1.15rem;
}

.contact-social[b-x6u7rds9jb] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-social a[b-x6u7rds9jb] {
    color: var(--brand-black);
    font-weight: 600;
    text-decoration: none;
}

.contact-social a:hover[b-x6u7rds9jb] {
    text-decoration: underline;
}

.contact-map[b-x6u7rds9jb] {
    flex: 1 1 22rem;
    min-height: 20rem;
}

.contact-map iframe[b-x6u7rds9jb] {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    border-radius: 0.6rem;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* The home banner / slider and its fallback hero now live in HomeSlider.razor
   (Components/Home/), styled in HomeSlider.razor.css. */

.trust-strip[b-4hfv5mi58q] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 2.5rem;
}

.trust-item[b-4hfv5mi58q] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item svg[b-4hfv5mi58q] {
    width: 2rem;
    height: 2rem;
    color: var(--brand-gold-hover);
    flex-shrink: 0;
}

.trust-item strong[b-4hfv5mi58q] {
    display: block;
    font-size: 0.9rem;
    color: var(--brand-black);
}

.trust-item span[b-4hfv5mi58q] {
    font-size: 0.78rem;
    color: #6b6b6b;
}

.home-section[b-4hfv5mi58q] {
    margin-bottom: 2.75rem;
}

.home-section-title[b-4hfv5mi58q] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--brand-card-border);
    padding-bottom: 0.5rem;
}

/* Centered title with a horizontal rule on each side (Shop by Brand). */
.home-section-title--centered[b-4hfv5mi58q] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1.75rem;
}

.home-section-title__rule[b-4hfv5mi58q] {
    flex: 1 1 auto;
    border-top: 1px solid var(--brand-card-border);
}

.brand-tiles[b-4hfv5mi58q] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.brand-tile[b-4hfv5mi58q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 7.5rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.brand-tile:hover[b-4hfv5mi58q] {
    border-color: var(--brand-gold);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.brand-tile img[b-4hfv5mi58q] {
    max-width: 100%;
    max-height: 3.25rem;
    object-fit: contain;
}

.brand-tile__name[b-4hfv5mi58q] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-black);
    text-align: center;
}

.home-section-more[b-4hfv5mi58q] {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.home-section-more a[b-4hfv5mi58q] {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--brand-black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-section-more a:hover[b-4hfv5mi58q] {
    color: var(--brand-gold-hover);
}

.product-grid[b-4hfv5mi58q] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .brand-tiles[b-4hfv5mi58q] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767.98px) {
    .trust-strip[b-4hfv5mi58q] {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-tiles[b-4hfv5mi58q] {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .home-section-title--centered[b-4hfv5mi58q] {
        gap: 0.75rem;
    }
}

@media (max-width: 479.98px) {
    .trust-strip[b-4hfv5mi58q] {
        grid-template-columns: 1fr;
    }

    .brand-tiles[b-4hfv5mi58q] {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-tile[b-4hfv5mi58q] {
        min-height: 6rem;
        padding: 0.9rem;
    }
}
/* /Components/Pages/Products/Detail.razor.rz.scp.css */
.product-breadcrumb[b-6o3iekid6c] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-breadcrumb a[b-6o3iekid6c] {
    color: inherit;
    text-decoration: none;
}

.product-breadcrumb a:hover[b-6o3iekid6c] {
    text-decoration: underline;
}

.product-breadcrumb span[b-6o3iekid6c] {
    opacity: 0.5;
}
/* /Components/Pages/Products/ImageGallery.razor.rz.scp.css */
.gallery-main[b-4ixda5iawg] {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    background: var(--bs-secondary-bg, #f1f1f1);
    aspect-ratio: 1 / 1;
}

.gallery-main-image[b-4ixda5iawg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.15s ease-out;
    cursor: zoom-in;
}

.gallery-main-image.zoomed[b-4ixda5iawg] {
    transform: scale(2);
}

.gallery-placeholder[b-4ixda5iawg] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.gallery-thumbnails[b-4ixda5iawg] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
}

.gallery-thumbnail[b-4ixda5iawg] {
    flex: 0 0 auto;
    width: 4rem;
    height: 4rem;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    background: none;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumbnail img[b-4ixda5iawg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail.active[b-4ixda5iawg] {
    border-color: var(--brand-gold);
}
/* /Components/Pages/Products/Index.razor.rz.scp.css */
.filter-toggle[b-9okjct2lx5] {
    display: none;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.4rem;
    background: #fff;
    font-weight: 600;
}

.shop[b-9okjct2lx5] {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.shop-filters[b-9okjct2lx5] {
    position: sticky;
    top: 1rem;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem 1rem;
}

.facet[b-9okjct2lx5] {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--brand-card-border);
}

.facet:last-child[b-9okjct2lx5] {
    border-bottom: none;
}

.facet h3[b-9okjct2lx5] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-black);
    margin: 0 0 0.5rem;
}

.facet-head[b-9okjct2lx5] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.facet-row[b-9okjct2lx5] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem 0;
    font-size: 0.88rem;
    cursor: pointer;
}

.facet-row input[b-9okjct2lx5] {
    flex-shrink: 0;
}

.facet-row > span:nth-child(2)[b-9okjct2lx5] {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.facet-row.active > span:nth-child(2)[b-9okjct2lx5],
.facet-row.active .stars[b-9okjct2lx5] {
    font-weight: 700;
}

.facet-count[b-9okjct2lx5] {
    color: #888;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.stars[b-9okjct2lx5] {
    flex: 1 1 auto;
    letter-spacing: 1px;
    color: #ccc;
}

.stars .on[b-9okjct2lx5] {
    color: var(--brand-star);
}

.link-btn[b-9okjct2lx5] {
    border: none;
    background: none;
    padding: 0.2rem 0;
    color: var(--brand-gold-hover);
    font-size: 0.82rem;
    cursor: pointer;
}

.link-btn:hover[b-9okjct2lx5] {
    text-decoration: underline;
}

.price-custom[b-9okjct2lx5] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.price-custom input[b-9okjct2lx5] {
    width: 100%;
    min-width: 0;
    padding: 0.3rem 0.4rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.3rem;
    font-size: 0.85rem;
}

.chips[b-9okjct2lx5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.chip[b-9okjct2lx5] {
    border: 1px solid var(--brand-card-border);
    background: #f3f4f6;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.78rem;
    cursor: pointer;
}

.chip:hover[b-9okjct2lx5] {
    background: #e5e7eb;
}

.shop-toolbar[b-9okjct2lx5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--brand-card-border);
}

.result-count[b-9okjct2lx5] {
    font-size: 0.9rem;
    color: #555;
}

.sort[b-9okjct2lx5] {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sort select[b-9okjct2lx5] {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.3rem;
}

.no-results[b-9okjct2lx5] {
    padding: 2rem 0;
}

.product-grid[b-9okjct2lx5] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1.25rem;
}

@media (max-width: 820px) {
    .filter-toggle[b-9okjct2lx5] {
        display: block;
    }

    .shop[b-9okjct2lx5] {
        grid-template-columns: 1fr;
    }

    .shop-filters[b-9okjct2lx5] {
        display: none;
        position: static;
    }

    .shop.filters-open .shop-filters[b-9okjct2lx5] {
        display: block;
        margin-bottom: 1.25rem;
    }
}
/* /Components/Pages/Products/ProductInfoTabs.razor.rz.scp.css */
.tab-headers[b-hx0sjwfzit] {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.tab-header[b-hx0sjwfzit] {
    padding: 0.6rem 1rem;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: #666;
}

.tab-header.active[b-hx0sjwfzit] {
    color: var(--brand-black);
    border-bottom-color: var(--brand-gold);
}
/* /Components/Pages/Products/RelatedProducts.razor.rz.scp.css */
.carousel-wrap[b-fvtcpqq9h5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-track[b-fvtcpqq9h5] {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
}

.carousel-card[b-fvtcpqq9h5] {
    flex: 0 0 auto;
    width: 10rem;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    overflow: hidden;
}

.carousel-card img[b-fvtcpqq9h5] {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    display: block;
}

.carousel-card-body[b-fvtcpqq9h5] {
    padding: 0.5rem;
}

.carousel-card-name[b-fvtcpqq9h5] {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-price[b-fvtcpqq9h5] {
    font-weight: 600;
}

.carousel-nav[b-fvtcpqq9h5] {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}
/* /Components/Pages/Products/ReviewList.razor.rz.scp.css */
.rating-summary[b-tlvq2r2fy9] {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.rating-summary-score[b-tlvq2r2fy9] {
    text-align: center;
    flex: 0 0 auto;
}

.stars[b-tlvq2r2fy9] {
    color: #f5a623;
    letter-spacing: 0.1rem;
}

.rating-bars[b-tlvq2r2fy9] {
    flex-grow: 1;
    max-width: 20rem;
}

.rating-bar-row[b-tlvq2r2fy9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.rating-bar-track[b-tlvq2r2fy9] {
    flex-grow: 1;
    height: 0.5rem;
    background: #eee;
    border-radius: 0.25rem;
    overflow: hidden;
}

.rating-bar-fill[b-tlvq2r2fy9] {
    height: 100%;
    background: #f5a623;
}

.review-item[b-tlvq2r2fy9] {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.star-picker[b-tlvq2r2fy9] {
    font-size: 1.5rem;
    line-height: 1;
}

.star-picker-btn[b-tlvq2r2fy9] {
    background: none;
    border: none;
    padding: 0 0.1rem;
    cursor: pointer;
    color: #f5a623;
}
/* /Components/Pages/Products/VariantSelector.razor.rz.scp.css */
.variant-price[b-82r91nxqf4] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.variant-attribute-label[b-82r91nxqf4] {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.variant-swatches[b-82r91nxqf4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-swatch[b-82r91nxqf4] {
    padding: 0.4rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.variant-swatch:hover:not(.selected)[b-82r91nxqf4] {
    border-color: var(--brand-gold);
}

.variant-swatch.selected[b-82r91nxqf4] {
    border-color: var(--brand-gold);
    background: var(--brand-gold);
    color: var(--brand-on-primary);
}

.qty-stepper[b-82r91nxqf4] {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    overflow: hidden;
}

.qty-stepper button[b-82r91nxqf4] {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: #f8f9fa;
    font-size: 1.1rem;
    cursor: pointer;
}

.qty-stepper input[b-82r91nxqf4] {
    width: 3rem;
    height: 2.25rem;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    text-align: center;
    -moz-appearance: textfield;
}

.sticky-add-to-cart[b-82r91nxqf4] {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    box-shadow: 0 -0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.sticky-price[b-82r91nxqf4] {
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sticky-add-to-cart.visible[b-82r91nxqf4] {
        display: flex;
    }
}
/* /Components/Shared/BrandModelSidebar.razor.rz.scp.css */
.brand-tree-title[b-34mmhluswb] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-black);
    margin: 0 0 0.5rem;
}

.brand-tree[b-34mmhluswb] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brand-tree-item[b-34mmhluswb] {
    border-bottom: 1px solid var(--brand-card-border);
}

.brand-tree-item:last-child[b-34mmhluswb] {
    border-bottom: none;
}

.brand-tree-row[b-34mmhluswb] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.brand-tree-toggle[b-34mmhluswb] {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    color: #888;
}

.chevron[b-34mmhluswb] {
    display: inline-block;
    transition: transform 0.15s ease;
}

.chevron.open[b-34mmhluswb] {
    transform: rotate(90deg);
}

.brand-tree-row a[b-34mmhluswb] {
    flex: 1 1 auto;
    display: block;
    padding: 0.5rem 0.1rem;
    font-size: 0.9rem;
    color: var(--brand-black);
    text-decoration: none;
}

.brand-tree-row a:hover[b-34mmhluswb] {
    color: var(--brand-gold-hover);
}

.brand-tree-row a.active[b-34mmhluswb] {
    font-weight: 700;
    color: var(--brand-gold-hover);
}

.brand-tree-cat[b-34mmhluswb] {
    padding-left: 1.75rem;
}

.brand-tree-cat a[b-34mmhluswb] {
    display: block;
    padding: 0.4rem 0.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-black);
    text-decoration: none;
}

.brand-tree-cat a:hover[b-34mmhluswb] {
    color: var(--brand-gold-hover);
}

.brand-tree-cat a.active[b-34mmhluswb] {
    color: var(--brand-gold-hover);
}

.brand-tree-models[b-34mmhluswb] {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0 0 0 1.75rem;
}

.brand-tree-models--nested[b-34mmhluswb] {
    padding-left: 2.75rem;
}

.brand-tree-models a[b-34mmhluswb] {
    display: block;
    padding: 0.35rem 0.1rem;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
}

.brand-tree-models a:hover[b-34mmhluswb] {
    color: var(--brand-gold-hover);
}

.brand-tree-models a.active[b-34mmhluswb] {
    font-weight: 700;
    color: var(--brand-gold-hover);
}

.brand-tree-empty[b-34mmhluswb] {
    margin: 0 0 0.5rem 1.75rem;
    font-size: 0.8rem;
    color: #888;
}
/* /Components/Shared/Breadcrumbs.razor.rz.scp.css */
.breadcrumbs ol[b-vjp7ro0epb] {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    font-size: 0.875rem;
    color: #6c757d;
}

.breadcrumbs li[b-vjp7ro0epb] {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:first-child)[b-vjp7ro0epb]::before {
    content: "\203A";
    margin: 0 0.5rem;
}

.breadcrumbs a[b-vjp7ro0epb] {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs a:hover[b-vjp7ro0epb] {
    text-decoration: underline;
}

.breadcrumbs span[aria-current="page"][b-vjp7ro0epb] {
    color: inherit;
}
/* /Components/Shared/ProductCard.razor.rz.scp.css */
.product-card[b-pkr98d1yoy] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--brand-card-border);
    border-radius: 0.375rem;
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover[b-pkr98d1yoy] {
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.product-card-link[b-pkr98d1yoy] {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.product-card-image[b-pkr98d1yoy] {
    aspect-ratio: 1 / 1;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image img[b-pkr98d1yoy] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-image-placeholder[b-pkr98d1yoy] {
    width: 60%;
    height: 60%;
    background: repeating-linear-gradient(45deg, #eee, #eee 10px, #f5f5f5 10px, #f5f5f5 20px);
    border-radius: 0.25rem;
}

.product-card-body[b-pkr98d1yoy] {
    padding: 0.85rem 1rem 0.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.product-card-category[b-pkr98d1yoy] {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #7a7a7a;
}

.product-card-name[b-pkr98d1yoy] {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.product-card-brand[b-pkr98d1yoy] {
    font-size: 0.78rem;
    color: #565959;
}

.product-card-rating[b-pkr98d1yoy] {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-top: 0.1rem;
}

.product-card-rating svg[b-pkr98d1yoy] {
    width: 0.9rem;
    height: 0.9rem;
}

.product-card-rating .star-filled[b-pkr98d1yoy] {
    color: var(--brand-star);
}

.product-card-rating .star-empty[b-pkr98d1yoy] {
    color: #d9d9d9;
}

.product-card-rating span[b-pkr98d1yoy] {
    font-size: 0.78rem;
    color: #565959;
    margin-left: 0.25rem;
}

.product-card-price[b-pkr98d1yoy] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-black);
    margin: 0.35rem 0 0.85rem;
}

.product-card-actions[b-pkr98d1yoy] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 1rem 1rem;
}

.product-card-icon-btn[b-pkr98d1yoy] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    color: var(--brand-on-primary);
    background: var(--brand-gold);
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card-icon-btn svg[b-pkr98d1yoy] {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 0.15s ease;
}

.product-card-icon-btn:hover:not(:disabled)[b-pkr98d1yoy] {
    transform: translateY(-0.15rem) scale(1.1);
    box-shadow: 0 0.35rem 0.6rem rgba(0, 0, 0, 0.2);
}

.product-card-icon-btn:hover:not(:disabled) svg[b-pkr98d1yoy] {
    transform: scale(1.1);
}

.product-card-icon-btn:active:not(:disabled)[b-pkr98d1yoy] {
    transform: translateY(0) scale(0.95);
}

.product-card-icon-btn:hover:not(:disabled):not(.product-card-icon-btn-outline)[b-pkr98d1yoy] {
    background: var(--brand-gold-hover);
}

.product-card-icon-btn:disabled[b-pkr98d1yoy] {
    opacity: 0.4;
    cursor: not-allowed;
}

.product-card-icon-btn-outline[b-pkr98d1yoy] {
    color: var(--brand-black);
    background: #fff;
    border: 1px solid var(--brand-card-border);
}

.product-card-icon-btn-outline:hover[b-pkr98d1yoy] {
    background: var(--brand-canvas);
    border-color: var(--brand-gold);
}
