@import '_content/BM.Components/BM.Components.r8dt4iyo2c.bundle.scp.css';

/* _content/Backstage/Components/Layout/AIChatSidebar.razor.rz.scp.css */
/* AIChatSidebar — isolated component styles
   Width/transition is driven by the outer wrapper so the main-content
   layout reflows without CLS.  All colours use MudBlazor CSS variables
   so they automatically adapt to dark mode. */

.ai-chat-sidebar-wrapper[b-xqo8l26q0g] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 100vw;
    z-index: 1200;          /* above MudAppBar (1100) but below MudDialog (9999) */
    display: flex;
    flex-direction: column;
    background: var(--mud-palette-surface);
    border-left: 1px solid var(--mud-palette-divider);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
    transform: translateX(0);
    transition: transform 200ms ease, width 200ms ease;
    overflow: hidden;
}

.ai-chat-sidebar-wrapper.closed[b-xqo8l26q0g] {
    transform: translateX(100%);
    pointer-events: none;
}

/* ── Header ─────────────────────────────────────────────────────────── */

.ai-chat-header[b-xqo8l26q0g] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 16px;
    min-height: 48px;
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    flex-shrink: 0;
}

.ai-chat-header-title[b-xqo8l26q0g] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.ai-chat-header-actions[b-xqo8l26q0g] {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Message list ───────────────────────────────────────────────────── */

.ai-chat-body[b-xqo8l26q0g] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 12px 12px 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scroll-behavior: smooth;
}

.ai-chat-empty[b-xqo8l26q0g] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 16px;
    color: var(--mud-palette-text-secondary);
}

/* Message bubbles */
.ai-message-row[b-xqo8l26q0g] {
    display: flex;
}

.ai-message-row.user[b-xqo8l26q0g] {
    justify-content: flex-end;
}

.ai-message-row.assistant[b-xqo8l26q0g] {
    justify-content: flex-start;
}

.ai-bubble[b-xqo8l26q0g] {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.5;
    word-break: break-word;
}

.ai-bubble.user[b-xqo8l26q0g] {
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    border-bottom-right-radius: 4px;
}

.ai-bubble.assistant[b-xqo8l26q0g] {
    background: var(--mud-palette-background-gray);
    color: var(--mud-palette-text-primary);
    border-bottom-left-radius: 4px;
}

/* ── Footer input area ──────────────────────────────────────────────── */

.ai-chat-footer[b-xqo8l26q0g] {
    flex-shrink: 0;
    padding: 8px 12px;
    border-top: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-surface);
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.ai-chat-footer .ai-input-field[b-xqo8l26q0g] {
    flex: 1 1 auto;
}
/* _content/Backstage/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-woyf6k1jqm] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-woyf6k1jqm] {
    flex: 1;
}

.sidebar[b-woyf6k1jqm] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
    background-image: linear-gradient(180deg, #C24C4D 0%, #A62323 70%, #7A1D28 100%);
}

.top-row[b-woyf6k1jqm] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-woyf6k1jqm]  a, .top-row[b-woyf6k1jqm]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-woyf6k1jqm]  a:hover, .top-row[b-woyf6k1jqm]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-woyf6k1jqm]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-woyf6k1jqm] {
        justify-content: space-between;
    }

    .top-row[b-woyf6k1jqm]  a, .top-row[b-woyf6k1jqm]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-woyf6k1jqm] {
        flex-direction: row;
    }

    .sidebar[b-woyf6k1jqm] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-woyf6k1jqm] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-woyf6k1jqm]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-woyf6k1jqm], article[b-woyf6k1jqm] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-woyf6k1jqm] {
    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-woyf6k1jqm] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Backstage/Components/Layout/NavPinnedSection.razor.rz.scp.css */
/* ── Pinned pages section ──────────────────────────────────────────────── */

.pins-list[b-3zttdxlhre] {
    display: flex;
    flex-direction: column;
    padding: 2px 0;
}

.pin-row[b-3zttdxlhre] {
    display: flex;
    align-items: center;
    cursor: default;
    border-radius: 4px;
    margin: 1px 8px;
    transition: background 0.15s;
    min-height: 32px;
}

.pin-row:hover[b-3zttdxlhre] {
    background: var(--mud-palette-action-default-hover);
}

.pin-row--dragging[b-3zttdxlhre] {
    opacity: 0.5;
    background: var(--mud-palette-primary-lighten);
}

.pin-drag-handle[b-3zttdxlhre] {
    cursor: grab;
    color: var(--mud-palette-action-disabled);
    flex-shrink: 0;
    margin-left: 4px;
    font-size: 1rem !important;
}

.pin-drag-handle:active[b-3zttdxlhre] {
    cursor: grabbing;
}

.pin-navlink[b-3zttdxlhre] {
    min-width: 0;
    padding: 4px 4px 4px 2px !important;
    min-height: 32px !important;
    font-size: 0.813rem !important;
}

.pin-star-btn[b-3zttdxlhre] {
    flex-shrink: 0;
    margin-right: 2px;
    opacity: 0;
    transition: opacity 0.15s;
}

.pin-row:hover .pin-star-btn[b-3zttdxlhre] {
    opacity: 1;
}

.shell-nav-text[b-3zttdxlhre] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
/* _content/Backstage/Components/Layout/NewShell.razor.rz.scp.css */
/* ── App bar ─────────────────────────────────────────────────────────────── */

.shell-appbar-btn[b-08be0hjh5r] {
    text-transform: none;
    font-weight: 500;
    font-size: 0.8125rem;
    opacity: 0.92;
    letter-spacing: 0;
    padding: 0 8px !important;
}

.shell-appbar-btn:hover[b-08be0hjh5r] {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12) !important;
}

/* ── Drawer ──────────────────────────────────────────────────────────────── */

.shell-drawer[b-08be0hjh5r] {
    display: flex;
    flex-direction: column;
}

/* ── Pinned / Recents / Saved Views sections ─────────────────────────────── */

.shell-drawer-section[b-08be0hjh5r] {
    flex-shrink: 0;
}

.shell-drawer-section-header[b-08be0hjh5r] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--mud-palette-text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.15s ease;
}

.shell-drawer-section-header:hover[b-08be0hjh5r] {
    background-color: var(--mud-palette-action-default-hover);
}

.shell-drawer-section-label[b-08be0hjh5r] {
    flex: 1;
    text-align: left;
}

.shell-drawer-subsection .mud-nav-link[b-08be0hjh5r] {
    padding: 4px 12px 4px 32px !important;
    font-size: 0.813rem !important;
    min-height: 32px !important;
}

.shell-nav-text[b-08be0hjh5r] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

/* ── Main content ────────────────────────────────────────────────────────── */

.mud-main-content[b-08be0hjh5r] {
    min-height: 100vh;
    background-color: var(--mud-palette-background);
}

.mud-container[b-08be0hjh5r] {
    padding-bottom: 24px;
}

/* ── Blazor error UI ─────────────────────────────────────────────────────── */

#blazor-error-ui[b-08be0hjh5r] {
    background: #FEF3C7;
    border-top: 3px solid #D97706;
    bottom: 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
    display: none;
    left: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-family: 'Open Sans', sans-serif;
}

#blazor-error-ui .dismiss[b-08be0hjh5r] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 1.25rem;
    color: #92400E;
}
/* _content/Backstage/Components/Pages/HomeDashboard/HomeDashboard.razor.rz.scp.css */
/* ── Portlet grid ─────────────────────────────────────────────────────── */
.bm-portlet-grid[b-e3hrivcebt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    min-height: 120px;
}

/* ── Portlet card wrapper ────────────────────────────────────────────── */
.bm-portlet-card[b-e3hrivcebt] {
    position: relative;
    border-radius: 8px;
    transition: opacity 0.15s ease, box-shadow 0.15s ease;
}

.bm-portlet-paper[b-e3hrivcebt] {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* ── Edit / drag state ───────────────────────────────────────────────── */
.bm-portlet-draggable[b-e3hrivcebt] {
    cursor: grab;
}

.bm-portlet-draggable:active[b-e3hrivcebt] {
    cursor: grabbing;
    opacity: 0.7;
}

.bm-portlet-drop-target[b-e3hrivcebt] {
    box-shadow: 0 0 0 3px var(--mud-palette-primary);
    border-radius: 8px;
}

/* ── Drag handle ─────────────────────────────────────────────────────── */
.bm-portlet-handle[b-e3hrivcebt] {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 10;
    cursor: grab;
    background: rgba(255,255,255,0.85);
    border-radius: 4px;
    padding: 2px 4px;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.bm-portlet-handle:active[b-e3hrivcebt] {
    cursor: grabbing;
}

/* ── Responsive: single column on xs ────────────────────────────────── */
@media (max-width: 600px) {
    .bm-portlet-grid[b-e3hrivcebt] {
        grid-template-columns: 1fr;
    }
}
/* _content/Backstage/Components/Pages/Storefront/StorefrontHomepage.razor.rz.scp.css */
/* ============================================================
   Brook Mays www26 Storefront Homepage
   Brand palette: Hollyberry (#6B1E30), Montserrat font
   Issue #17182
   ============================================================ */

/* ---- Loading state ---- */
.bm-homepage-loading[b-p5kbutcvb1] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* ---- Page body wrapper ---- */
.bm-homepage-body[b-p5kbutcvb1] {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

/* ---- Shared section header ---- */
.bm-section-header[b-p5kbutcvb1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bm-section-title[b-p5kbutcvb1] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -.01em;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.bm-hero-section[b-p5kbutcvb1] {
    width: 100%;
    overflow: hidden;
}

.bm-hero-slider[b-p5kbutcvb1] {
    position: relative;
    width: 100%;
}

.bm-hero-slide[b-p5kbutcvb1] {
    position: relative;
    width: 100%;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.bm-hero-overlay[b-p5kbutcvb1] {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bm-hero-content[b-p5kbutcvb1] {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 3rem 4rem;
    color: #fff;
}

.bm-hero-headline[b-p5kbutcvb1] {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.bm-hero-subheadline[b-p5kbutcvb1] {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 2rem;
    opacity: .92;
    line-height: 1.5;
}

.bm-hero-ctas[b-p5kbutcvb1] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bm-hero-cta-primary[b-p5kbutcvb1] {
    background-color: #6B1E30 !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.bm-hero-cta-secondary[b-p5kbutcvb1] {
    border-color: #fff !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
}

/* ---- Dots ---- */
.bm-hero-dots[b-p5kbutcvb1] {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .5rem;
}

.bm-hero-dot[b-p5kbutcvb1] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}

.bm-hero-dot--active[b-p5kbutcvb1] {
    background: #fff;
}

/* ---- Arrows ---- */
.bm-hero-arrow[b-p5kbutcvb1] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,.35);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.bm-hero-arrow:hover[b-p5kbutcvb1] {
    background: rgba(107,30,48,.8);
}

.bm-hero-arrow--prev[b-p5kbutcvb1] { left: 1rem; }
.bm-hero-arrow--next[b-p5kbutcvb1] { right: 1rem; }

.bm-hero-placeholder[b-p5kbutcvb1] {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.bm-category-section[b-p5kbutcvb1] {
    margin: 2.5rem 0;
}

.bm-category-tiles[b-p5kbutcvb1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 960px) {
    .bm-category-tiles[b-p5kbutcvb1] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .bm-category-tiles[b-p5kbutcvb1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bm-category-tile[b-p5kbutcvb1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.bm-category-tile:hover[b-p5kbutcvb1] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.bm-category-tile__img-wrap[b-p5kbutcvb1] {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.bm-category-tile__img[b-p5kbutcvb1] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.bm-category-tile:hover .bm-category-tile__img[b-p5kbutcvb1] {
    transform: scale(1.05);
}

.bm-category-tile__overlay[b-p5kbutcvb1] {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(107,30,48,.55) 0%, transparent 60%);
}

.bm-category-tile__label[b-p5kbutcvb1] {
    position: absolute;
    bottom: .75rem;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ============================================================
   PRODUCT CAROUSEL
   ============================================================ */
.bm-carousel-section[b-p5kbutcvb1] {
    margin: 2.5rem 0;
}

.bm-carousel__header[b-p5kbutcvb1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bm-carousel__view-all[b-p5kbutcvb1] {
    font-family: 'Montserrat', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    color: #6B1E30;
    display: flex;
    align-items: center;
    gap: .25rem;
    text-decoration: none;
}

.bm-carousel__view-all:hover[b-p5kbutcvb1] {
    text-decoration: underline;
}

.bm-carousel__track[b-p5kbutcvb1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 960px) {
    .bm-carousel__track[b-p5kbutcvb1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bm-carousel__track[b-p5kbutcvb1] {
        grid-template-columns: 1fr;
    }
}

/* ---- Product card ---- */
.bm-product-card[b-p5kbutcvb1] {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.bm-product-card:hover[b-p5kbutcvb1] {
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

.bm-product-card__link[b-p5kbutcvb1] {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bm-product-card__badges[b-p5kbutcvb1] {
    position: absolute;
    top: .5rem;
    left: .5rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    z-index: 1;
}

.bm-badge[b-p5kbutcvb1] {
    font-size: .7rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: .2rem .5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.bm-badge--sale[b-p5kbutcvb1]      { background: #6B1E30; color: #fff; }
.bm-badge--new[b-p5kbutcvb1]       { background: #1976d2; color: #fff; }
.bm-badge--bestseller[b-p5kbutcvb1]{ background: #f57c00; color: #fff; }

.bm-product-card__img-wrap[b-p5kbutcvb1] {
    position: relative;
    padding-top: 100%;
    background: #f9f9f9;
}

.bm-product-card__img[b-p5kbutcvb1] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .75rem;
}

.bm-product-card__info[b-p5kbutcvb1] {
    padding: .75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.bm-product-card__brand[b-p5kbutcvb1] {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    color: #6B1E30;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
}

.bm-product-card__name[b-p5kbutcvb1] {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bm-product-card__rating[b-p5kbutcvb1] {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.bm-product-card__review-count[b-p5kbutcvb1] {
    font-size: .75rem;
    color: #757575;
}

.bm-product-card__price[b-p5kbutcvb1] {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-top: .25rem;
}

.bm-price[b-p5kbutcvb1] {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.bm-price--sale[b-p5kbutcvb1] { color: #6B1E30; }

.bm-price--was[b-p5kbutcvb1] {
    font-size: .85rem;
    font-weight: 400;
    color: #9e9e9e;
    text-decoration: line-through;
}

.bm-product-card__actions[b-p5kbutcvb1] {
    padding: .5rem .75rem .75rem;
}

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.bm-promo-section[b-p5kbutcvb1],
.bm-strip-section[b-p5kbutcvb1] {
    margin: 2.5rem 0;
}

/* Dual half-width layout */
.bm-promo-block--dual[b-p5kbutcvb1] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .bm-promo-block--dual[b-p5kbutcvb1] {
        grid-template-columns: 1fr;
    }
}

.bm-promo-block--strip[b-p5kbutcvb1],
.bm-promo-block--single[b-p5kbutcvb1] {
    display: block;
}

/* Strip banner */
.bm-promo-strip[b-p5kbutcvb1] {
    background-color: #6B1E30;
    color: #fff;
    padding: .875rem 2rem;
    border-radius: 6px;
}

.bm-promo-strip__content[b-p5kbutcvb1] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bm-promo-strip__headline[b-p5kbutcvb1] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.bm-promo-strip__subtext[b-p5kbutcvb1] {
    font-size: .9rem;
    opacity: .9;
}

.bm-promo-strip__cta[b-p5kbutcvb1] {
    border-color: rgba(255,255,255,.6) !important;
    color: #fff !important;
}

/* Card banners */
.bm-promo-card[b-p5kbutcvb1] {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
}

.bm-promo-card__img[b-p5kbutcvb1] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bm-promo-card__color-bg[b-p5kbutcvb1] {
    position: absolute;
    inset: 0;
}

.bm-promo-card__content[b-p5kbutcvb1] {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, transparent 100%);
    width: 100%;
    color: #fff;
}

.bm-promo-card__headline[b-p5kbutcvb1] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: .5rem;
}

.bm-promo-card__subtext[b-p5kbutcvb1] {
    color: rgba(255,255,255,.9) !important;
    margin-bottom: 1rem;
}

/* ============================================================
   RESPONSIVE — mobile hero
   ============================================================ */
@media (max-width: 640px) {
    .bm-hero-slide[b-p5kbutcvb1] {
        min-height: 320px;
    }

    .bm-hero-content[b-p5kbutcvb1] {
        padding: 1.5rem;
    }
}
/* _content/Backstage/Components/Pages/Warehouse/WmsStationLayout.razor.rz.scp.css */
/* WMS-0.4: WmsStationLayout scoped styles
   Designed for warehouse floor tablets (10") and office desktops.
   Dark mode is applied via the .wms-dark class on the root MudLayout. */

/* ── Root layout ──────────────────────────────────────────────────────────── */

.wms-station-layout[b-y1w79shkk1] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Main content area ────────────────────────────────────────────────────── */

.wms-main-content[b-y1w79shkk1] {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth momentum scroll on tablets */
}

/* ── Footer / status bar ──────────────────────────────────────────────────── */

.wms-footer[b-y1w79shkk1] {
    position: sticky;
    bottom: 0;
    z-index: 100;
    height: 36px;
    min-height: 36px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background-color: var(--mud-palette-appbar-background);
    color: var(--mud-palette-appbar-text);
}

.wms-footer-barcode[b-y1w79shkk1] {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    letter-spacing: 0.03em;
    opacity: 0.9;
}

.wms-footer-time[b-y1w79shkk1] {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* ── Dark mode overrides (warehouse floor — reduced glare) ────────────────── */

.wms-dark .wms-footer[b-y1w79shkk1] {
    background-color: #1a1a1a;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.wms-dark .mud-nav-link[b-y1w79shkk1] {
    color: rgba(255, 255, 255, 0.87);
}

.wms-dark .mud-nav-link:hover[b-y1w79shkk1],
.wms-dark .mud-nav-link.active[b-y1w79shkk1] {
    background-color: rgba(255, 255, 255, 0.08);
}

/* ── Light mode (warehouse office) ────────────────────────────────────────── */

.wms-light .wms-footer[b-y1w79shkk1] {
    background-color: #263238;
    color: #eceff1;
}

/* ── Tablet / small-screen optimisations (10" = ~1024px wide landscape) ───── */

@media (max-width: 1024px) {
    /* Enlarge touch targets for gloved warehouse hands */
    .wms-station-layout .mud-nav-link[b-y1w79shkk1] {
        min-height: 48px;
        font-size: 1rem;
        padding: 10px 16px;
    }

    .wms-station-layout .mud-icon-button[b-y1w79shkk1] {
        padding: 10px;
    }

    /* Collapse drawer by default on tablet so more content is visible */
    .wms-footer[b-y1w79shkk1] {
        height: 40px;
        min-height: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    /* Phone fallback — hide the last-barcode text, keep essentials */
    .wms-footer-barcode[b-y1w79shkk1] {
        display: none;
    }
}

/* ── Scan-ready pulse animation ───────────────────────────────────────────── */

@keyframes wms-scan-pulse-b-y1w79shkk1 {
    0%   { opacity: 1; }
    50%  { opacity: 0.55; }
    100% { opacity: 1; }
}

.wms-station-layout .mud-chip[data-scan-ready="true"][b-y1w79shkk1] {
    animation: wms-scan-pulse-b-y1w79shkk1 2s ease-in-out infinite;
}
/* _content/Backstage/Components/Shared/ShortcutHelpOverlay.razor.rz.scp.css */
/* ── Backdrop ─────────────────────────────────────────────────────────── */

.shortcut-overlay-backdrop[b-5v51mr35sc] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1300; /* above MudDrawer (1200), below MudDialog (1400) */
    cursor: pointer;
}

/* ── Panel ────────────────────────────────────────────────────────────── */

.shortcut-overlay-panel[b-5v51mr35sc] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1301;
    background: var(--mud-palette-surface);
    border-radius: 12px;
    box-shadow: var(--mud-elevation-8);
    width: min(540px, 92vw);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: shortcut-overlay-in-b-5v51mr35sc 120ms ease-out;
}

@keyframes shortcut-overlay-in-b-5v51mr35sc {
    from { opacity: 0; transform: translate(-50%, -48%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* ── Header ──────────────────────────────────────────────────────────── */

.shortcut-overlay-header[b-5v51mr35sc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--mud-palette-divider);
    flex-shrink: 0;
}

/* ── Body ────────────────────────────────────────────────────────────── */

.shortcut-overlay-body[b-5v51mr35sc] {
    overflow-y: auto;
    padding: 16px 20px;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

@media (max-width: 480px) {
    .shortcut-overlay-body[b-5v51mr35sc] {
        grid-template-columns: 1fr;
    }
}

.shortcut-group[b-5v51mr35sc] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shortcut-group-label[b-5v51mr35sc] {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.shortcut-row[b-5v51mr35sc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.shortcut-desc[b-5v51mr35sc] {
    font-size: 0.85rem;
    color: var(--mud-palette-text-primary);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Footer ──────────────────────────────────────────────────────────── */

.shortcut-overlay-footer[b-5v51mr35sc] {
    padding: 10px 20px 14px;
    border-top: 1px solid var(--mud-palette-divider);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

/* ── ShortcutBadge (<kbd>) ───────────────────────────────────────────── */

[b-5v51mr35sc] .shortcut-badge,
.shortcut-badge[b-5v51mr35sc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 5px;
    min-width: 22px;
    height: 22px;
    font-size: 0.7rem;
    font-family: var(--mud-typography-body2-family, monospace);
    font-weight: 600;
    background: var(--mud-palette-background-grey);
    border: 1px solid var(--mud-palette-divider);
    border-bottom-width: 2px;
    border-radius: 4px;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
    line-height: 1;
    margin: 0 1px;
    vertical-align: middle;
}
/* _content/Backstage/Components/Shared/UserMenu.razor.rz.scp.css */
.user-menu-header[b-p24nn66whs] {
    min-width: 250px;
}

.user-menu-shell-row[b-p24nn66whs] {
    min-width: 200px;
}
