/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-shell[b-kp9ljr8hjq] {
    display: flex;
    align-items: flex-start;
    min-height: calc(100vh - 72px);
}

.admin-sidebar[b-kp9ljr8hjq] {
    width: 240px;
    flex-shrink: 0;
    background: var(--color-brand-dark);
    border: 2px solid var(--color-gold-dark);
    border-radius: 12px;
    padding: 1.5rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: calc(100vh - 72px);
    box-shadow: var(--shadow-soft);
}

.admin-sidebar-title[b-kp9ljr8hjq] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gold-light);
    margin: 0;
}

.admin-sidebar-greeting[b-kp9ljr8hjq] {
    margin: -1rem 0 0;
    font-size: 1.05rem;
    color: var(--color-gold-light);
    opacity: 0.85;
}

.admin-nav[b-kp9ljr8hjq] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    /* БЪГ, поправен: предният опит слагаше клас "admin-nav-item"
       директно на <NavLink> и разчиташе, че Blazor CSS isolation ще пренесе
       CSS scope-а на AdminLayout върху <a>-то, което NavLink рендира отвътре
       (документирано поведение "родителски scope върху root елемента на
       дъщерен компонент") — на практика НЕ проработи (линковете излизаха
       бледи/неоформени, само span-овете "История/Анализ",
       написани directно в тоя файл, вземаха стила). Фиксът е ::deep
       комбинатора — официалният начин scoped CSS на РОДИТЕЛЯ да достигне
       елементи, рендирани от ДЕТЕ компонент (тук NavLink), без да зависи от
       автоматичното пренасяне на scope-а. */
    .admin-nav-disabled[b-kp9ljr8hjq],
    .admin-nav[b-kp9ljr8hjq]  a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.65rem 0.9rem;
        border-radius: 6px;
        font-weight: 600;
        font-size: 1.15rem;
        text-decoration: none;
        color: var(--color-gold-light);
    }

    .admin-nav[b-kp9ljr8hjq]  a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .admin-nav[b-kp9ljr8hjq]  a.active {
        font-weight: 700;
        background: rgba(255, 255, 255, 0.06);
        border-left: 3px solid var(--color-gold-light);
        padding-left: calc(0.9rem - 3px);
    }

.admin-nav-disabled[b-kp9ljr8hjq] {
    opacity: 0.55;
}

.admin-nav-two-line[b-kp9ljr8hjq] {
    line-height: 1.2;
    text-align: left;
}

    .admin-nav-disabled em[b-kp9ljr8hjq] {
        font-style: normal;
        font-size: 0.75rem;
        background: #e6dcc4;
        color: var(--color-text);
        border-radius: 999px;
        padding: 0.1rem 0.5rem;
        align-self: center;
        opacity: 1;
    }

.admin-sidebar-back[b-kp9ljr8hjq] {
    margin-top: auto;
    text-decoration: none;
    color: var(--color-gold-light);
    font-size: 1rem;
    border-top: 1px solid var(--color-gold-dark);
    padding-top: 1rem;
}

.admin-content[b-kp9ljr8hjq] {
    flex: 1;
    padding: 2rem;
    min-width: 0;
}

/* мобилна лента с хамбургер бутон: скрита по подразбиране
   (широк екран), показва се само под 860px — същия breakpoint като
   NavBar.razor.css, за консистентност навсякъде в сайта. */
.admin-mobile-topbar[b-kp9ljr8hjq] {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    background: var(--color-brand-dark);
    border: 2px solid var(--color-gold-dark);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.admin-hamburger[b-kp9ljr8hjq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-gold-light);
    cursor: pointer;
    flex-shrink: 0;
}

    .admin-hamburger:hover[b-kp9ljr8hjq] {
        background: rgba(255, 255, 255, 0.08);
    }

.admin-mobile-topbar-title[b-kp9ljr8hjq] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold-light);
}

.admin-sidebar-backdrop[b-kp9ljr8hjq] {
    display: none;
}

@media (max-width: 860px) {
    .admin-shell[b-kp9ljr8hjq] {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .admin-mobile-topbar[b-kp9ljr8hjq] {
        display: flex;
    }

    /* Сайдбарът става off-canvas чекмедже, плъзгащо се отляво, вместо
       постоянно заемащо място в реда — на телефон/таблет 240px странична
       колона до съдържанието просто не се събира. */
    .admin-sidebar[b-kp9ljr8hjq] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(280px, 82vw);
        min-height: 100vh;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.2s ease;
        z-index: 30;
        overflow-y: auto;
    }

        .admin-sidebar.admin-sidebar-open[b-kp9ljr8hjq] {
            transform: translateX(0);
            box-shadow: var(--shadow-soft);
        }

    .admin-sidebar-backdrop[b-kp9ljr8hjq] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 25;
    }

    .admin-content[b-kp9ljr8hjq] {
        padding: 1rem;
    }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-36r7uadg9r] {
    margin-top: 2rem;
    background: var(--color-brand-dark);
    color: var(--color-gold-light);
    font-family: var(--font-sans);
}

.footer-columns[b-36r7uadg9r] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
}

.footer-col[b-36r7uadg9r] {
    flex: 1 1 180px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-heading[b-36r7uadg9r] {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: #fff;
}

.footer-about[b-36r7uadg9r] {
    margin: 0;
    opacity: 0.85;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-line[b-36r7uadg9r] {
    margin: 0;
    opacity: 0.85;
    font-size: 0.88rem;
}

.footer-hours[b-36r7uadg9r] {
    opacity: 0.85;
    font-size: 0.85rem;
}

    .footer-hours strong[b-36r7uadg9r] {
        opacity: 0.95;
    }

.footer-link[b-36r7uadg9r] {
    color: var(--color-gold-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
}

    .footer-link:hover[b-36r7uadg9r] {
        text-decoration: underline;
        opacity: 1;
    }

.footer-bottom[b-36r7uadg9r] {
    border-top: 1px solid rgba(232, 217, 181, 0.2);
    text-align: center;
    padding: 1rem 1.5rem 0.35rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-credit[b-36r7uadg9r] {
    text-align: right;
    padding: 0 1.5rem 0.85rem;
    font-size: 0.72rem;
    font-style: italic;
    opacity: 0.5;
}

@media (max-width: 640px) {
    .footer-columns[b-36r7uadg9r] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-col[b-36r7uadg9r] {
        align-items: center;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* виж MainLayout.razor.cs / MaintenanceGateDialog — замъгляване на реалния
   сайт зад maintenance гейта, докато той е отворен. */
.maintenance-blurred[b-q7yzaulipw] {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

#blazor-error-ui[b-q7yzaulipw] {
    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-q7yzaulipw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavBar.razor.rz.scp.css */
.site-navbar[b-wrc3fo2vug] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar-logo img[b-wrc3fo2vug] {
    height: 44px;
    width: auto;
    display: block;
}

.navbar-spacer[b-wrc3fo2vug] {
    flex: 1;
}

.navbar-search[b-wrc3fo2vug] {
    display: flex;
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

    .navbar-search input[b-wrc3fo2vug] {
        flex: 1;
        border: none;
        padding: 0.6rem 1rem;
        font-family: var(--font-sans);
        outline: none;
        background: transparent;
    }

    .navbar-search button[b-wrc3fo2vug] {
        border: none;
        background: transparent;
        padding: 0 1rem;
        cursor: pointer;
        color: var(--color-brand-dark);
        display: flex;
        align-items: center;
    }

.navbar-account[b-wrc3fo2vug] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.navbar-icon-link[b-wrc3fo2vug] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--color-brand-dark);
    background: transparent;
    border: none;
    transition: background 0.15s ease;
}

    .navbar-icon-link:hover[b-wrc3fo2vug] {
        background: var(--color-bg-alt);
    }

.navbar-icon-button[b-wrc3fo2vug] {
    cursor: pointer;
}

.navbar-hamburger[b-wrc3fo2vug] {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-brand-dark);
    cursor: pointer;
}

    .navbar-hamburger:hover[b-wrc3fo2vug] {
        background: var(--color-bg-alt);
    }

.navbar-icon-label[b-wrc3fo2vug] {
    display: none;
}

/* Хамбургер вместо ред икони под тази ширина — само едно число за промяна,
   ако 860px не пасне точно на реалните ти екрани. */
@media (max-width: 860px) {
    .navbar-hamburger[b-wrc3fo2vug] {
        display: flex;
    }

    .navbar-account[b-wrc3fo2vug] {
        display: none;
        position: absolute;
        top: 100%;
        right: 1rem;
        margin-top: 0.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        background: var(--color-bg);
        border-radius: var(--radius, 12px);
        box-shadow: var(--shadow-soft);
        padding: 0.5rem;
        min-width: 220px;
        z-index: 20;
    }

        .navbar-account.navbar-account-open[b-wrc3fo2vug] {
            display: flex;
        }

        .navbar-account .navbar-icon-link[b-wrc3fo2vug],
        .navbar-account .navbar-icon-button[b-wrc3fo2vug] {
            width: auto;
            height: auto;
            border-radius: 8px;
            justify-content: flex-start;
            gap: 0.65rem;
            padding: 0.6rem 0.75rem;
        }

        .navbar-account .navbar-icon-label[b-wrc3fo2vug] {
            display: inline;
            font-family: var(--font-sans);
            font-size: 0.95rem;
        }

        .navbar-account form[b-wrc3fo2vug] {
            width: 100%;
        }

            .navbar-account form button[b-wrc3fo2vug] {
                width: 100%;
            }
}

@media (max-width: 480px) {
    .site-navbar[b-wrc3fo2vug] {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .navbar-search[b-wrc3fo2vug] {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-wrm7ftyfp2],
.components-reconnect-repeated-attempt-visible[b-wrm7ftyfp2],
.components-reconnect-failed-visible[b-wrm7ftyfp2],
.components-pause-visible[b-wrm7ftyfp2],
.components-resume-failed-visible[b-wrm7ftyfp2],
.components-rejoining-animation[b-wrm7ftyfp2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-retrying[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-failed[b-wrm7ftyfp2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-wrm7ftyfp2] {
    display: block;
}


#components-reconnect-modal[b-wrm7ftyfp2] {
    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-wrm7ftyfp2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-wrm7ftyfp2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-wrm7ftyfp2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-wrm7ftyfp2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-wrm7ftyfp2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-wrm7ftyfp2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-wrm7ftyfp2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-wrm7ftyfp2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-wrm7ftyfp2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-wrm7ftyfp2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-wrm7ftyfp2] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-wrm7ftyfp2] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-wrm7ftyfp2] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-wrm7ftyfp2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-wrm7ftyfp2] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-wrm7ftyfp2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-wrm7ftyfp2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-wrm7ftyfp2 {
    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/Pages/Account/CompleteRegistration.razor.rz.scp.css */
/* довършване на профил, стилово огледало на Login.razor.css (CSS
   isolation ограничава стиловете там до собствения им файл). */

.login-page[b-d7trtglm07] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
    min-height: 60vh;
}

.login-card[b-d7trtglm07] {
    width: 420px;
    max-width: 100%;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2rem 1.75rem;
}

.login-title[b-d7trtglm07] {
    font-family: var(--font-serif);
    color: var(--color-brand-dark);
    text-align: center;
    font-size: 1.4rem;
    margin: 0 0 1.25rem;
}

.login-alert[b-d7trtglm07] {
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.login-alert-error[b-d7trtglm07] {
    background: #fbeaea;
    color: #a33333;
    border: 1px solid #e2b3b3;
}

.auth-form[b-d7trtglm07] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding-top: 0.25rem;
}

.auth-field[b-d7trtglm07] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .auth-field label[b-d7trtglm07] {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    .auth-field input[type="password"][b-d7trtglm07] {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-family: var(--font-sans);
        font-size: 0.95rem;
        background: #fff;
        color: var(--color-text);
    }

        .auth-field input:focus[b-d7trtglm07] {
            outline: 2px solid var(--color-brand-dark);
            outline-offset: 1px;
        }

.auth-submit-btn[b-d7trtglm07] {
    margin-top: 0.3rem;
    background: var(--color-brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .auth-submit-btn:hover[b-d7trtglm07] {
        background: #1c5b39;
    }
/* /Components/Pages/Account/ForgotPassword.razor.rz.scp.css */
/*  нов файл: споделен визуален паттърн с ErrorPage.razor.css/
   Login.razor.css (лого, картичка, зелено/златно/бежово), дублиран тук по
   Blazor CSS isolation конвенцията, установена в проекта (AuthDialog/
   ForgotPasswordDialog/Login вече дублират .auth-* класовете си всеки в
   собствения си .css файл). */

.auth-standalone-page[b-huivy017ff] {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.auth-standalone-card[b-huivy017ff] {
    max-width: 420px;
    width: 100%;
    text-align: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 3rem 2rem;
    box-sizing: border-box;
}

.auth-standalone-logo[b-huivy017ff] {
    width: 72px;
    height: auto;
    margin: 0 auto 1.25rem;
    display: block;
    opacity: 0.9;
}

.auth-standalone-title[b-huivy017ff] {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brand-dark);
    margin: 0 0 1.25rem;
}

/* рамка + подравняване наляво (преди беше гол, центриран
   текст, грозен/неравен на няколко реда). */
.auth-standalone-message[b-huivy017ff] {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    text-align: left;
    background: rgba(20, 67, 42, 0.06);
    border: 1px solid rgba(20, 67, 42, 0.25);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
}

.auth-standalone-home-link[b-huivy017ff] {
    display: inline-block;
    text-decoration: none;
    background: var(--color-brand-dark);
    color: var(--color-gold-light);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .auth-standalone-home-link:hover[b-huivy017ff] {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(20, 67, 42, 0.25);
    }

.auth-field[b-huivy017ff] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    text-align: left;
}

    .auth-field label[b-huivy017ff] {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    /* (финална) — истинската причина: <InputText>
       е ДЪЩЕРЕН компонент — Blazor CSS isolation слага scope атрибута
       (b-xxxxxxx) само върху елементи, буквално написани в markup-а на
       СЪЩИЯ .razor файл. Вътрешният <input>, който InputText рендира,
       никога не получава b-xxxxxxx, затова .auth-field input никога не е
       съвпадал — потвърдено чрез инспекция на компилирания
       Leonid.Web.*.styles.css бъндъл в браузъра. ::deep казва на CSS
       isolation да НЕ добавя scope изискване за тази част от селектора. */
    .auth-field[b-huivy017ff]  input {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-family: var(--font-sans);
        font-size: 0.95rem;
        background: #fff;
        color: var(--color-text);
        width: 100%;
        box-sizing: border-box;
    }

        .auth-field[b-huivy017ff]  input:focus {
            outline: 2px solid var(--color-brand-dark);
            outline-offset: 1px;
        }

.auth-submit-btn[b-huivy017ff] {
    width: 100%;
    margin-top: 0.3rem;
    background: var(--color-brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .auth-submit-btn:hover[b-huivy017ff] {
        background: #1c5b39;
    }

    .auth-submit-btn:disabled[b-huivy017ff] {
        opacity: 0.8;
        cursor: default;
    }

.btn-spinner[b-huivy017ff] {
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spinner-rotate-b-huivy017ff 0.7s linear infinite;
}

@keyframes btn-spinner-rotate-b-huivy017ff {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/Pages/Account/Login.razor.rz.scp.css */
/* стандалон /login страница, стилово огледало на AuthDialog
   (auth-tabs/auth-form/... класовете там), центрирана в картичка. */

.login-page[b-0x0bi6wtj8] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
    min-height: 60vh;
}

.login-card[b-0x0bi6wtj8] {
    width: 420px;
    max-width: 100%;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2rem 1.75rem;
}

.login-title[b-0x0bi6wtj8] {
    font-family: var(--font-serif);
    color: var(--color-brand-dark);
    text-align: center;
    font-size: 1.4rem;
    margin: 0 0 1.25rem;
}

/* CSS-only таб превключвател (radio+label trick) — страницата е статичен
   SSR ([ExcludeFromInteractiveRouting], без SignalR circuit), затова
   MudTabs/@bind-ActivePanelIndex не би превключвал визуално при клик без
   истинска interactivity. Радио бутоните, лейбълите и панелите са
   sibling-и в един и същ .login-tabs контейнер — работи с чист CSS,
   без нужда от JS/Blazor event handling. */
.login-tab-radio[b-0x0bi6wtj8] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.login-tab-labels[b-0x0bi6wtj8] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.login-tab-label[b-0x0bi6wtj8] {
    flex: 1;
    text-align: center;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--color-gold-dark);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.login-tab-panel[b-0x0bi6wtj8] {
    display: none;
}

#loginTabLogin:checked ~ .login-tab-panel-login[b-0x0bi6wtj8],
#loginTabRegister:checked ~ .login-tab-panel-register[b-0x0bi6wtj8] {
    display: block;
}

#loginTabLogin:checked ~ .login-tab-labels label[for="loginTabLogin"][b-0x0bi6wtj8],
#loginTabRegister:checked ~ .login-tab-labels label[for="loginTabRegister"][b-0x0bi6wtj8] {
    background: var(--color-brand-dark);
    color: #fff;
    border-color: var(--color-brand-dark);
}

.login-alert[b-0x0bi6wtj8] {
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.login-alert-error[b-0x0bi6wtj8] {
    background: #fbeaea;
    color: #a33333;
    border: 1px solid #e2b3b3;
}

.login-alert-info[b-0x0bi6wtj8] {
    background: #eaf3ee;
    color: #1c5b39;
    border: 1px solid #b9dcc7;
}

.login-alert-warning[b-0x0bi6wtj8] {
    background: #fdf3e3;
    color: #8a5a00;
    border: 1px solid #f0d9a8;
}

/* Полета/бутон на формите — същите стилове като AuthDialog.razor.css
   (auth-* класовете там), дублирани тук защото CSS isolation ги ограничава
   до файла, в който са дефинирани. */
.auth-form[b-0x0bi6wtj8] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding-top: 0.25rem;
}

.auth-field-row[b-0x0bi6wtj8] {
    display: flex;
    gap: 0.9rem;
}

    .auth-field-row .auth-field[b-0x0bi6wtj8] {
        flex: 1;
        min-width: 0;
    }

.auth-field[b-0x0bi6wtj8] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .auth-field label[b-0x0bi6wtj8] {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    .auth-field input[type="text"][b-0x0bi6wtj8],
    .auth-field input[type="email"][b-0x0bi6wtj8],
    .auth-field input[type="tel"][b-0x0bi6wtj8],
    .auth-field input[type="password"][b-0x0bi6wtj8] {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-family: var(--font-sans);
        font-size: 0.95rem;
        background: #fff;
        color: var(--color-text);
    }

        .auth-field input:focus[b-0x0bi6wtj8] {
            outline: 2px solid var(--color-brand-dark);
            outline-offset: 1px;
        }

.auth-field-checkbox label[b-0x0bi6wtj8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.auth-submit-btn[b-0x0bi6wtj8] {
    margin-top: 0.3rem;
    background: var(--color-brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .auth-submit-btn:hover[b-0x0bi6wtj8] {
        background: #1c5b39;
    }

.auth-forgot-link[b-0x0bi6wtj8] {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
}

    .auth-forgot-link a[b-0x0bi6wtj8] {
        color: var(--color-gold-dark);
    }

.auth-resend-form[b-0x0bi6wtj8] {
    margin-bottom: 0.75rem;
    text-align: center;
}

.auth-resend-btn[b-0x0bi6wtj8] {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-gold-dark);
    text-decoration: underline;
    cursor: pointer;
}
/* /Components/Pages/Account/ResetPassword.razor.rz.scp.css */
/* нов файл: същия паттърн като ForgotPassword.razor.css
   (дублиран по Blazor CSS isolation конвенцията, установена в проекта),
   плюс .auth-standalone-errors за сървърните грешки от ResetPasswordAsync. */

.auth-standalone-page[b-vuycz2osov] {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.auth-standalone-card[b-vuycz2osov] {
    max-width: 420px;
    width: 100%;
    text-align: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 3rem 2rem;
    box-sizing: border-box;
}

.auth-standalone-logo[b-vuycz2osov] {
    width: 72px;
    height: auto;
    margin: 0 auto 1.25rem;
    display: block;
    opacity: 0.9;
}

.auth-standalone-title[b-vuycz2osov] {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brand-dark);
    margin: 0 0 1.25rem;
}

/* рамка + подравняване наляво (преди беше гол, центриран
   текст, грозен/неравен на няколко реда). */
.auth-standalone-message[b-vuycz2osov] {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    text-align: left;
    background: rgba(20, 67, 42, 0.06);
    border: 1px solid rgba(20, 67, 42, 0.25);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
}

.auth-standalone-home-link[b-vuycz2osov] {
    display: inline-block;
    text-decoration: none;
    background: var(--color-brand-dark);
    color: var(--color-gold-light);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .auth-standalone-home-link:hover[b-vuycz2osov] {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(20, 67, 42, 0.25);
    }

.auth-standalone-errors[b-vuycz2osov] {
    background: rgba(211, 47, 47, 0.08);
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1rem;
    text-align: left;
}

    .auth-standalone-errors p[b-vuycz2osov] {
        color: #b3261e;
        font-size: 0.85rem;
        margin: 0.25rem 0;
    }

.auth-field[b-vuycz2osov] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    text-align: left;
}

    .auth-field label[b-vuycz2osov] {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    /* (финална) — истинската причина: <InputText>
       е ДЪЩЕРЕН компонент — Blazor CSS isolation слага scope атрибута
       (b-xxxxxxx) само върху елементи, буквално написани в markup-а на
       СЪЩИЯ .razor файл. Вътрешният <input>, който InputText рендира,
       никога не получава b-xxxxxxx, затова .auth-field input никога не е
       съвпадал — потвърдено чрез инспекция на компилирания
       Leonid.Web.*.styles.css бъндъл в браузъра. ::deep казва на CSS
       isolation да НЕ добавя scope изискване за тази част от селектора. */
    .auth-field[b-vuycz2osov]  input {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-family: var(--font-sans);
        font-size: 0.95rem;
        background: #fff;
        color: var(--color-text);
        width: 100%;
        box-sizing: border-box;
    }

        .auth-field[b-vuycz2osov]  input:focus {
            outline: 2px solid var(--color-brand-dark);
            outline-offset: 1px;
        }

.auth-submit-btn[b-vuycz2osov] {
    width: 100%;
    margin-top: 0.3rem;
    background: var(--color-brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .auth-submit-btn:hover[b-vuycz2osov] {
        background: #1c5b39;
    }

    .auth-submit-btn:disabled[b-vuycz2osov] {
        opacity: 0.8;
        cursor: default;
    }

.btn-spinner[b-vuycz2osov] {
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spinner-rotate-b-vuycz2osov 0.7s linear infinite;
}

@keyframes btn-spinner-rotate-b-vuycz2osov {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/Pages/Admin/Analytics/AnalyticsPage.razor.rz.scp.css */
/* т.59 — стил "тъмна карта с градиентни барове", вдъхновен от примерите на
   Rado (кръгова диаграма по категории + drill-down + топ 10 продукти).
   Умишлено с фиксирана тъмна тема тук (не следва --color-brand-dark/бежово
   на останалата част от сайта) — аналитичните карти са визуален акцент. */

.analytics-card[b-qqspku56zr] {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.analytics-card-dark[b-qqspku56zr] {
    background: linear-gradient(160deg, #1B1832 0%, #100E22 100%);
    color: #EDEBFA;
}

    .analytics-card-dark h2[b-qqspku56zr] {
        color: #fff;
    }

.analytics-card-hint[b-qqspku56zr] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0.25rem 0 1rem;
}

.analytics-donut-wrap[b-qqspku56zr] {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 1rem;
}

/* ===== Drill-down (клик върху категория) — вертикални градиентни барове ===== */

.analytics-drilldown[b-qqspku56zr] {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
    padding-top: 1.25rem;
}

.analytics-drilldown-header[b-qqspku56zr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

    .analytics-drilldown-header h3[b-qqspku56zr] {
        margin: 0;
        font-size: 1.05rem;
    }

.vbar-chart[b-qqspku56zr] {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    height: 220px;
    padding: 1.5rem 1rem 0.5rem;
    overflow-x: auto;
    background: linear-gradient(160deg, #241B36 0%, #140F26 100%);
    border-radius: calc(var(--radius) - 4px);
}

.vbar-col[b-qqspku56zr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 64px;
    height: 100%;
    flex-shrink: 0;
}

.vbar-value[b-qqspku56zr] {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.vbar-track[b-qqspku56zr] {
    width: 34px;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.vbar-fill[b-qqspku56zr] {
    width: 100%;
    min-height: 6px;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, #C084FC 0%, #7C3AED 100%);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

.vbar-label[b-qqspku56zr] {
    margin-top: 0.6rem;
    color: #C9C4E0;
    font-size: 0.75rem;
    max-width: 80px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Баркод под името (т.71.9) — за различаване на продукти с еднакво име
   (напр. същия модел в различен цвят), които вече не се сливат в един ред. */
.vbar-barcode[b-qqspku56zr] {
    margin-top: 0.15rem;
    color: #8B84AD;
    font-size: 0.65rem;
    max-width: 80px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.analytics-load-more[b-qqspku56zr] {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* ===== Топ 10 продукти — хоризонтални градиентни барове с корона ===== */

.rank-bars[b-qqspku56zr] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.rank-bar-row[b-qqspku56zr] {
    display: grid;
    grid-template-columns: minmax(120px, 220px) 1fr auto;
    align-items: center;
    gap: 0.9rem;
}

.rank-bar-label[b-qqspku56zr] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    overflow: hidden;
}

.rank-crown[b-qqspku56zr] {
    flex-shrink: 0;
}

.rank-bar-title-wrap[b-qqspku56zr] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.rank-bar-title[b-qqspku56zr] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

/* Баркод под името (т.71.9) — виж коментара при .vbar-barcode по-горе. */
.rank-bar-barcode[b-qqspku56zr] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
    color: #9C97BE;
}

.rank-bar-track[b-qqspku56zr] {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    height: 22px;
    overflow: hidden;
}

.rank-bar-fill[b-qqspku56zr] {
    height: 100%;
    min-width: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38BDF8 0%, #2563EB 100%);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
}

.rank-bar-fill-top[b-qqspku56zr] {
    background: linear-gradient(90deg, #FCD34D 0%, #F59E0B 100%);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.55);
}

.rank-bar-value[b-qqspku56zr] {
    font-weight: 700;
    min-width: 2.5rem;
    text-align: right;
}

@media (max-width: 640px) {
    .rank-bar-row[b-qqspku56zr] {
        grid-template-columns: 100px 1fr auto;
    }
}
/* /Components/Pages/Admin/Products/ProductEdit.razor.rz.scp.css */
.image-drop-zone[b-1dv4fi7zf7] {
    border: 2px dashed var(--color-gold-dark);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

    .image-drop-zone.is-dragover[b-1dv4fi7zf7] {
        background: var(--color-bg-alt);
        border-color: var(--color-brand-dark);
    }

.image-drop-zone-hint[b-1dv4fi7zf7] {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
/* /Components/Pages/CartPage.razor.rz.scp.css */
.cart-page[b-68o4b7hczw] {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.cart-status[b-68o4b7hczw] {
    color: var(--color-text-muted);
    padding: 2rem 0;
}

.cart-list[b-68o4b7hczw] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-row[b-68o4b7hczw] {
    display: grid;
    grid-template-columns: 72px 1fr 90px 100px 40px;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1rem;
}

.cart-row-image[b-68o4b7hczw],
.cart-row-image-placeholder[b-68o4b7hczw] {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.cart-row-image-placeholder[b-68o4b7hczw] {
    background: linear-gradient(135deg, var(--color-bg-alt), #e6d9bd);
}

.cart-row-info[b-68o4b7hczw] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.cart-row-name[b-68o4b7hczw] {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-row-price[b-68o4b7hczw] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.cart-row-unavailable[b-68o4b7hczw] {
    color: #C23B2A;
    font-size: 0.8rem;
    font-weight: 600;
}

.cart-row-qty input[b-68o4b7hczw] {
    width: 100%;
    padding: 0.4rem;
    border-radius: 8px;
    border: 1px solid var(--color-bg);
    font-family: var(--font-sans);
}

.cart-row-total[b-68o4b7hczw] {
    font-weight: 700;
    color: var(--color-gold-dark);
    text-align: right;
}

.cart-row-remove[b-68o4b7hczw] {
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cart-row-remove:hover[b-68o4b7hczw] {
        background: var(--color-bg);
        color: #C23B2A;
    }

.cart-summary[b-68o4b7hczw] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    align-items: baseline;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.cart-summary-total[b-68o4b7hczw] {
    font-weight: 700;
    color: var(--color-gold-dark);
    font-size: 1.4rem;
}

.cart-checkout-bar[b-68o4b7hczw] {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .cart-row[b-68o4b7hczw] {
        grid-template-columns: 56px 1fr auto;
        grid-template-areas:
            "image info remove"
            "image qty total";
        row-gap: 0.4rem;
    }

    .cart-row-image[b-68o4b7hczw],
    .cart-row-image-placeholder[b-68o4b7hczw] {
        grid-area: image;
        width: 56px;
        height: 56px;
    }

    .cart-row-info[b-68o4b7hczw] { grid-area: info; }
    .cart-row-qty[b-68o4b7hczw] { grid-area: qty; }
    .cart-row-total[b-68o4b7hczw] { grid-area: total; justify-self: end; font-weight: 600; }
    .cart-row-remove[b-68o4b7hczw] { grid-area: remove; justify-self: end; }
}
/* /Components/Pages/CheckoutPage.razor.rz.scp.css */
.checkout-page[b-91tolk6cl8] {
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.checkout-status[b-91tolk6cl8] {
    color: var(--color-text-muted);
    padding: 2rem 0;
}

.checkout-success[b-91tolk6cl8] {
    text-align: center;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.checkout-success-actions[b-91tolk6cl8] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.checkout-success-link[b-91tolk6cl8] {
    color: var(--color-gold-dark);
    font-weight: 600;
    text-decoration: none;
}

    .checkout-success-link:hover[b-91tolk6cl8] {
        text-decoration: underline;
    }

.checkout-layout[b-91tolk6cl8] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.checkout-summary[b-91tolk6cl8] {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
}

    .checkout-summary h2[b-91tolk6cl8] {
        margin-top: 0;
    }

.checkout-summary-list[b-91tolk6cl8] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkout-summary-row[b-91tolk6cl8] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.checkout-summary-name[b-91tolk6cl8] {
    color: var(--color-text-muted);
}

.checkout-summary-subtotal[b-91tolk6cl8] {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--color-gold-dark);
    border-top: 1px solid var(--color-bg);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.checkout-hours-note[b-91tolk6cl8] {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
}

.checkout-summary-total[b-91tolk6cl8] {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-brand-dark);
    border-top: 2px solid var(--color-gold-light);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.checkout-form[b-91tolk6cl8] {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

@media (max-width: 780px) {
    .checkout-layout[b-91tolk6cl8] {
        grid-template-columns: 1fr;
    }
}


/* Куриер до офис (checkout redesign) — картички за начин на доставка и
   избор на куриер, вместо обикновено падащо меню. Жълта отметка
   (--color-gold-dark) при избран елемент. */

.checkout-section-label[b-91tolk6cl8] {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
}

.option-card-row[b-91tolk6cl8] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.option-card[b-91tolk6cl8] {
    position: relative;
    flex: 1 1 150px;
    min-width: 130px;
    border: 2px solid var(--color-bg);
    border-radius: var(--radius);
    padding: 0.85rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: var(--color-bg-alt);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    min-height: 56px;
}

    .option-card:hover[b-91tolk6cl8] {
        border-color: var(--color-gold-light);
    }

.option-card-selected[b-91tolk6cl8] {
    border-color: var(--color-gold-dark);
    box-shadow: 0 0 0 1px var(--color-gold-dark);
}

.option-card-label[b-91tolk6cl8] {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-brand-dark);
}

.option-card-check[b-91tolk6cl8] {
    position: absolute;
    top: -8px;
    right: -8px;
    color: var(--color-gold-dark);
    background: var(--color-bg-alt);
    border-radius: 50%;
}

.courier-card[b-91tolk6cl8] {
    flex: 1 1 110px;
    min-width: 100px;
}

.courier-card-logo[b-91tolk6cl8] {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
}

.courier-card-text[b-91tolk6cl8] {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--color-brand-dark);
}

.checkout-back-link[b-91tolk6cl8] {
    margin-bottom: 1rem;
}

    .checkout-back-link a[b-91tolk6cl8] {
        color: var(--color-brand-dark);
        font-weight: 600;
        text-decoration: none;
    }

        .checkout-back-link a:hover[b-91tolk6cl8] {
            text-decoration: underline;
        }

.checkout-address-row[b-91tolk6cl8] {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 1rem;
}

@media (max-width: 480px) {
    .checkout-address-row[b-91tolk6cl8] {
        grid-template-columns: 1fr;
    }
}

/* Име/Фамилия едно до друго, колабира на 1 колона на тесен екран
   (същия паттърн като .checkout-address-row по-горе). */
.checkout-name-row[b-91tolk6cl8] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .checkout-name-row[b-91tolk6cl8] {
        grid-template-columns: 1fr;
    }
}

/* Дълго име+адрес на избран куриерски офис (напр. "Русе 24/7
   Еконтомат Кауфланд Дружба — Русе кв. Дружба 1 бул. Христо Ботев №38 на
   паркинга на Кауфланд") преливаше извън едноредовата кутия на select-а и
   се скриваше наполовина. Потвърдено в изходния код на MudBlazor
   (components/Select/_select.scss): избраната стойност се показва през
   ".mud-select-input .mud-input-slot" с "white-space: nowrap;
   text-overflow: ellipsis; overflow: hidden;", а самата кутия има
   фиксирана височина "height: 1lh" (input.scss) — точно 1 ред, затова
   вторият ред изчезваше. Тук изрично разрешаваме пренос на нов ред и
   авто-височина, само за select-ите на тази страница (Град/Офис) — не
   пипа обикновените текстови полета (Име, Телефон и т.н.), те си остават
   компактни. ::deep е нужен, защото MudSelect рендира тази разметка
   вътрешно (не е markup, писан директно в тази страница) — CSS isolation
   не би стигнала дотам без него.
   ПРОВЕРЕНО САМО В КОДА НА MUDBLAZOR, НЕ НА ЖИВО В БРАУЗЪРА — ако все
   пак не проработи изцяло, провери с F12 → Inspect кой клас реално
   виждаш върху избрания офис и кажи ми точно него, за да го целим. */
[b-91tolk6cl8] .mud-select .mud-input-slot {
    height: auto !important;
    min-height: 1lh;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.3;
}

.checkout-summary-name[b-91tolk6cl8],
.courier-card-text[b-91tolk6cl8],
.option-card-label[b-91tolk6cl8] {
    overflow-wrap: break-word;
    word-break: break-word;
}
/* /Components/Pages/ContactsPage.razor.rz.scp.css */
.contacts-page[b-aw3f6aypxm] {
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.contacts-page h1[b-aw3f6aypxm] {
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
}

.contacts-info-card[b-aw3f6aypxm],
.contacts-form-card[b-aw3f6aypxm] {
    background: var(--color-bg-alt) !important;
    border-radius: var(--radius) !important;
    height: 100%;
}

.contacts-info-card h2[b-aw3f6aypxm],
.contacts-form-card h2[b-aw3f6aypxm] {
    font-size: 1.15rem;
    margin: 0 0 1rem;
    color: var(--color-brand-dark);
}

.contacts-line[b-aw3f6aypxm] {
    margin: 0 0 0.6rem;
    color: var(--color-text);
}

    .contacts-line a[b-aw3f6aypxm] {
        color: var(--color-gold-dark);
        text-decoration: none;
    }

        .contacts-line a:hover[b-aw3f6aypxm] {
            text-decoration: underline;
        }

.contacts-hours[b-aw3f6aypxm] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contacts-form-intro[b-aw3f6aypxm] {
    color: var(--color-text-muted);
    margin: 0 0 1rem;
}
/* /Components/Pages/DeliveryPage.razor.rz.scp.css */
.delivery-page[b-3t3k6wfyc9] {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.delivery-page h1[b-3t3k6wfyc9] {
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
}

.delivery-status[b-3t3k6wfyc9] {
    color: var(--color-text-muted);
}

.delivery-card[b-3t3k6wfyc9] {
    background: var(--color-bg-alt) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 1rem;
}

    .delivery-card h2[b-3t3k6wfyc9] {
        font-size: 1.1rem;
        margin: 0 0 0.5rem;
        color: var(--color-brand-dark);
    }

    .delivery-card p[b-3t3k6wfyc9] {
        margin: 0 0 0.5rem;
        color: var(--color-text);
    }

    .delivery-card a[b-3t3k6wfyc9] {
        color: var(--color-gold-dark);
    }

.delivery-list[b-3t3k6wfyc9] {
    margin: 0 0 0.75rem;
    padding-left: 1.25rem;
}

    .delivery-list li[b-3t3k6wfyc9] {
        margin-bottom: 0.35rem;
    }

.delivery-placeholder[b-3t3k6wfyc9] {
    font-style: italic;
    color: var(--color-text-muted);
}

.delivery-hours-label[b-3t3k6wfyc9] {
    margin-top: 0.75rem;
}

.delivery-hours-line[b-3t3k6wfyc9] {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}
/* /Components/Pages/FaqPage.razor.rz.scp.css */
.faq-page[b-ef3lmzw6lm] {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.faq-page h1[b-ef3lmzw6lm] {
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
}

.faq-panels[b-ef3lmzw6lm] {
    background: transparent !important;
}

    .faq-panels[b-ef3lmzw6lm]  .mud-expand-panel {
        background: var(--color-bg-alt) !important;
        border-radius: var(--radius) !important;
        margin-bottom: 0.75rem;
        overflow: hidden;
    }

    .faq-panels[b-ef3lmzw6lm]  a {
        color: var(--color-gold-dark);
    }
/* /Components/Pages/FavoritesPage.razor.rz.scp.css */
.favorites-page[b-op9pawm5ca] {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.product-grid[b-op9pawm5ca] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.favorites-status[b-op9pawm5ca] {
    color: var(--color-text-muted);
    padding: 2rem 0;
}

    .favorites-status a[b-op9pawm5ca] {
        color: var(--color-gold-dark);
        font-weight: 600;
    }
/* /Components/Pages/HelpPage.razor.rz.scp.css */
.help-page[b-fyib3yt8yn] {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.help-page h1[b-fyib3yt8yn] {
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.help-intro[b-fyib3yt8yn] {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

    .help-intro a[b-fyib3yt8yn] {
        color: var(--color-gold-dark);
    }

.help-card[b-fyib3yt8yn] {
    background: var(--color-bg-alt) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 1rem;
}

    .help-card h2[b-fyib3yt8yn] {
        font-size: 1.1rem;
        margin: 0 0 0.5rem;
        color: var(--color-brand-dark);
    }

    .help-card a[b-fyib3yt8yn] {
        color: var(--color-gold-dark);
    }

.help-list[b-fyib3yt8yn] {
    margin: 0 0 0.75rem;
    padding-left: 1.25rem;
}

    .help-list li[b-fyib3yt8yn] {
        margin-bottom: 0.35rem;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
.category-strip[b-bq9kksyy9j] {
    background: var(--color-brand-dark);
    padding: 1rem 1.5rem;
}

.category-strip-wrap[b-bq9kksyy9j] {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.category-strip-inner[b-bq9kksyy9j] {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.25rem;
}

.category-strip-arrow[b-bq9kksyy9j] {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(20, 67, 42, 0.9);
    box-shadow: var(--shadow-soft);
    color: var(--color-gold-light);
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, color 0.15s ease;
}

    .category-strip-arrow.is-visible[b-bq9kksyy9j] {
        opacity: 1;
        pointer-events: auto;
    }

    .category-strip-arrow.is-visible:hover[b-bq9kksyy9j] {
        color: #fff;
    }

.category-strip-arrow-left[b-bq9kksyy9j] {
    left: -0.25rem;
}

.category-strip-arrow-right[b-bq9kksyy9j] {
    right: -0.25rem;
}

@media (hover: hover) and (pointer: fine) {
    .category-strip-arrow[b-bq9kksyy9j] {
        display: flex;
    }
}

.category-strip-fade[b-bq9kksyy9j] {
    position: absolute;
    top: 0;
    bottom: 0.25rem;
    width: 2.5rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 1;
}

.category-strip-fade-left[b-bq9kksyy9j] {
    left: 0;
    background: linear-gradient(90deg, var(--color-brand-dark), transparent);
}

.category-strip-fade-right[b-bq9kksyy9j] {
    right: 0;
    background: linear-gradient(270deg, var(--color-brand-dark), transparent);
}

    .category-strip-fade.is-visible[b-bq9kksyy9j] {
        opacity: 1;
    }

.category-chip[b-bq9kksyy9j] {
    flex: 0 0 auto;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-gold-light);
    background: transparent;
    border: 1.5px solid var(--color-gold-light);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

    .category-chip:hover[b-bq9kksyy9j] {
        background: rgba(232, 217, 181, 0.15);
    }

    .category-chip.is-active[b-bq9kksyy9j] {
        background: var(--color-gold-light);
        color: var(--color-brand-dark);
    }

.hero[b-bq9kksyy9j] {
    background: var(--color-brand-dark);
    color: #fff;
    text-align: center;
    padding: 4rem 1.5rem;
}

.hero-logo[b-bq9kksyy9j] {
    max-width: 360px;
    width: 100%;
    height: auto;
}

.hero-tagline[b-bq9kksyy9j] {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-gold-light);
    margin-top: 1rem;
}

.products-section[b-bq9kksyy9j] {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.products-section-header[b-bq9kksyy9j] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .products-section-header h2[b-bq9kksyy9j] {
        margin: 0;
    }

.page-size-picker[b-bq9kksyy9j] {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .page-size-picker select[b-bq9kksyy9j] {
        font-family: var(--font-sans);
        border: 1px solid var(--color-bg-alt);
        border-radius: 8px;
        padding: 0.3rem 0.6rem;
        background: #fff;
    }

.category-search[b-bq9kksyy9j] {
    margin-bottom: 0.75rem;
}

    .category-search input[type="search"][b-bq9kksyy9j] {
        width: 100%;
        max-width: 320px;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        border: 1px solid #d8cfc0;
        border-radius: 8px;
        padding: 0.45rem 0.75rem;
        background: #fff;
    }

.filters-bar[b-bq9kksyy9j] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius, 12px);
}

.filter-field[b-bq9kksyy9j] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

    .filter-field input[type="number"][b-bq9kksyy9j] {
        width: 90px;
    }

    .filter-field input[type="number"][b-bq9kksyy9j],
    .filter-field select[b-bq9kksyy9j] {
        font-family: var(--font-sans);
        border: 1px solid #d8cfc0;
        border-radius: 8px;
        padding: 0.3rem 0.6rem;
        background: #fff;
    }

.filter-checkbox[b-bq9kksyy9j] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.filters-reset[b-bq9kksyy9j] {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    background: none;
    color: var(--color-brand-dark);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.product-grid[b-bq9kksyy9j] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.products-status[b-bq9kksyy9j] {
    text-align: center;
    color: var(--color-text-muted);
    padding: 3rem 1.5rem;
}

.pagination-bar[b-bq9kksyy9j] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pagination-btn[b-bq9kksyy9j] {
    font-family: var(--font-sans);
    font-weight: 600;
    border: none;
    background: var(--color-bg-alt);
    color: var(--color-brand-dark);
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    cursor: pointer;
}

    .pagination-btn:disabled[b-bq9kksyy9j] {
        opacity: 0.5;
        cursor: default;
    }

.pagination-info[b-bq9kksyy9j] {
    color: var(--color-text-muted);
    font-weight: 600;
}
/* /Components/Pages/OrderDetailPage.razor.rz.scp.css */
.order-detail-status[b-hwiifoyx5u] {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    color: var(--color-text-muted);
}

.order-detail-page[b-hwiifoyx5u] {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.order-detail-back[b-hwiifoyx5u] {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.order-detail-heading[b-hwiifoyx5u] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0.5rem 0 1.5rem;
}

    .order-detail-heading h1[b-hwiifoyx5u] {
        margin: 0;
    }

.my-orders-badge[b-hwiifoyx5u] {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
    background: var(--color-bg);
    color: var(--color-text-muted);
}

.my-orders-badge-new[b-hwiifoyx5u] {
    background: #E3EEFF;
    color: #2255BB;
}

.my-orders-badge-processing[b-hwiifoyx5u] {
    background: #FFF1D6;
    color: #966300;
}

.my-orders-badge-shipped[b-hwiifoyx5u] {
    background: #DFF1F6;
    color: #1A7F94;
}

.my-orders-badge-delivered[b-hwiifoyx5u] {
    background: #E2F3E5;
    color: #1E7A34;
}

.my-orders-badge-cancelled[b-hwiifoyx5u] {
    background: #FBE3E1;
    color: #C23B2A;
}

.my-orders-badge-archived[b-hwiifoyx5u] {
    background: var(--color-bg);
    color: var(--color-text-muted);
}

.order-detail-grid[b-hwiifoyx5u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-detail-info[b-hwiifoyx5u],
.order-detail-items[b-hwiifoyx5u] {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
}

    .order-detail-info h2[b-hwiifoyx5u],
    .order-detail-items h2[b-hwiifoyx5u] {
        margin-top: 0;
    }

    .order-detail-info p[b-hwiifoyx5u] {
        margin: 0.4rem 0;
    }

.order-detail-item-row[b-hwiifoyx5u] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
    padding: 0.35rem 0;
}

.order-detail-totals[b-hwiifoyx5u] {
    border-top: 1px solid var(--color-bg);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

.order-detail-total-row[b-hwiifoyx5u] {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    color: var(--color-text-muted);
}

.order-detail-total-final[b-hwiifoyx5u] {
    font-weight: 700;
    color: var(--color-gold-dark);
    font-size: 1.05rem;
}

.order-detail-actions[b-hwiifoyx5u] {
    margin-bottom: 1.5rem;
}

.order-detail-cancel-btn[b-hwiifoyx5u] {
    font-family: var(--font-sans);
    font-weight: 600;
    border: 1.5px solid #C23B2A;
    background: transparent;
    color: #C23B2A;
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .order-detail-cancel-btn:hover[b-hwiifoyx5u] {
        background: #FBE3E1;
    }

    .order-detail-cancel-btn[disabled][b-hwiifoyx5u] {
        opacity: 0.6;
        cursor: default;
    }

.order-detail-history[b-hwiifoyx5u] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.order-detail-history-row[b-hwiifoyx5u] {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--color-bg-alt);
}

@media (max-width: 720px) {
    .order-detail-grid[b-hwiifoyx5u] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/OrdersPage.razor.rz.scp.css */
.my-orders-page[b-53736hek17] {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.my-orders-status[b-53736hek17] {
    color: var(--color-text-muted);
    padding: 2rem 0;
}

.my-orders-list[b-53736hek17] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.my-orders-row[b-53736hek17] {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 0.9rem 1.25rem;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .my-orders-row:hover[b-53736hek17] {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(20, 67, 42, 0.12);
    }

.my-orders-row-main[b-53736hek17] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.my-orders-number[b-53736hek17] {
    font-weight: 700;
}

.my-orders-date[b-53736hek17] {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.my-orders-total[b-53736hek17] {
    font-weight: 700;
    color: var(--color-gold-dark);
    white-space: nowrap;
}

.my-orders-badge[b-53736hek17] {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
    background: var(--color-bg);
    color: var(--color-text-muted);
}

.my-orders-badge-new[b-53736hek17] {
    background: #E3EEFF;
    color: #2255BB;
}

.my-orders-badge-processing[b-53736hek17] {
    background: #FFF1D6;
    color: #966300;
}

.my-orders-badge-shipped[b-53736hek17] {
    background: #DFF1F6;
    color: #1A7F94;
}

.my-orders-badge-delivered[b-53736hek17] {
    background: #E2F3E5;
    color: #1E7A34;
}

.my-orders-badge-cancelled[b-53736hek17] {
    background: #FBE3E1;
    color: #C23B2A;
}

.my-orders-badge-archived[b-53736hek17] {
    background: var(--color-bg);
    color: var(--color-text-muted);
}
/* /Components/Pages/ProductDetail.razor.rz.scp.css */
/* по-голям и italic шрифт (важи и за "Зареждане...", и за
   "Продуктът не е намерен."). */
.detail-status[b-9l6q10vltb] {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.3rem;
    font-style: italic;
}

.product-detail[b-9l6q10vltb] {
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 2.5rem;
}

.product-detail-gallery[b-9l6q10vltb] {
    position: relative;
}

.product-detail-main-image-wrap[b-9l6q10vltb] {
    position: relative;
}

.product-detail-nav-arrow[b-9l6q10vltb] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(20, 67, 42, 0.85);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background 0.15s ease;
}

    .product-detail-nav-arrow:hover[b-9l6q10vltb] {
        background: var(--color-brand-dark);
    }

.product-detail-nav-arrow-left[b-9l6q10vltb] {
    left: 0.5rem;
}

.product-detail-nav-arrow-right[b-9l6q10vltb] {
    right: 0.5rem;
}

.product-detail-ribbon[b-9l6q10vltb] {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #C23B2A;
    color: #fff;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    z-index: 1;
}

.product-detail-main-image[b-9l6q10vltb] {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.product-detail-main-image[b-9l6q10vltb] {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

    .product-detail-main-image:hover[b-9l6q10vltb] {
        transform: scale(1.03);
    }


.product-detail-thumbs[b-9l6q10vltb] {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.product-detail-thumb[b-9l6q10vltb] {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
}

    .product-detail-thumb.is-active[b-9l6q10vltb] {
        border-color: var(--color-gold-dark);
    }

.product-detail-info[b-9l6q10vltb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-category[b-9l6q10vltb] {
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin: 0;
}

.product-detail-price[b-9l6q10vltb] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin: 0;
}

.product-detail-price-old[b-9l6q10vltb] {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 1rem;
    margin-right: 0.6rem;
}

.product-detail-price-sale[b-9l6q10vltb] {
    color: #C23B2A;
}

.product-detail-attrs[b-9l6q10vltb] {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-text-muted);
}

.product-detail-qty[b-9l6q10vltb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .product-detail-qty input[b-9l6q10vltb] {
        width: 80px;
        padding: 0.5rem;
        border-radius: 8px;
        border: 1px solid var(--color-bg-alt);
        font-family: var(--font-sans);
    }

.product-detail-actions[b-9l6q10vltb] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-detail-outofstock[b-9l6q10vltb] {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    font-weight: 600;
}

.product-detail-fav-btn[b-9l6q10vltb] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-bg-alt);
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    color: var(--color-brand-dark);
    font-weight: 600;
    cursor: pointer;
}

    .product-detail-fav-btn.is-favorited[b-9l6q10vltb] {
        color: #C23B2A;
    }

.product-detail-description[b-9l6q10vltb] {
    margin-top: 1rem;
    line-height: 1.6;
}

    .product-detail-description h2[b-9l6q10vltb] {
        margin-bottom: 0.5rem;
    }

@media (max-width: 720px) {
    .product-detail[b-9l6q10vltb] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/ProfilePage.razor.rz.scp.css */
.profile-page[b-lugw7apweu] {
    max-width: 700px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.profile-status[b-lugw7apweu] {
    color: var(--color-text-muted);
    padding: 2rem 0;
}

.profile-card[b-lugw7apweu] {
    background: var(--color-bg-alt) !important;
    border-radius: var(--radius) !important;
}

.profile-actions[b-lugw7apweu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.profile-email-change h3[b-lugw7apweu] {
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.profile-email-change-actions[b-lugw7apweu] {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
/* /Components/Pages/Search.razor.rz.scp.css */
.search-results[b-9jbvtsoayq] {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.product-grid[b-9jbvtsoayq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.search-empty[b-9jbvtsoayq] {
    color: var(--color-text-muted);
    padding: 2rem 0;
}
/* /Components/Pages/TermsPage.razor.rz.scp.css */
.terms-page[b-6bvcl7ivwk] {
    max-width: 780px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.terms-page h1[b-6bvcl7ivwk] {
    font-family: var(--font-serif);
    margin-bottom: 0.25rem;
}

.terms-intro[b-6bvcl7ivwk] {
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
}

.terms-card[b-6bvcl7ivwk] {
    background: var(--color-bg-alt) !important;
    border-radius: var(--radius) !important;
    line-height: 1.6;
}

    .terms-card h2[b-6bvcl7ivwk] {
        font-size: 1.05rem;
        color: var(--color-brand-dark);
        margin: 1.5rem 0 0.5rem;
    }

        .terms-card h2:first-child[b-6bvcl7ivwk] {
            margin-top: 0;
        }

    .terms-card p[b-6bvcl7ivwk] {
        margin: 0 0 0.5rem;
        color: var(--color-text);
    }

    .terms-card a[b-6bvcl7ivwk] {
        color: var(--color-gold-dark);
    }
/* /Components/Shared/AuthDialog.razor.rz.scp.css */
.auth-dialog-title[b-hbzeyj3non] {
    font-family: var(--font-serif);
    color: var(--color-brand-dark);
}

.auth-tabs[b-hbzeyj3non] {
    width: 340px;
    max-width: 100%;
    margin: 0 auto;
}

    /* Пълна рамка около избрания таб (Вход/Регистрация), вместо само
       долната лента-индикатор по подразбиране на MudTabs ("не само
       отдолу да се вижда бялото"). ::deep е нужен, защото MudTabs рендира
       собствената си вътрешна разметка. */
    .auth-tabs[b-hbzeyj3non]  .mud-tabs-toolbar {
        justify-content: center;
        gap: 0.5rem;
        border-bottom: none;
    }

    .auth-tabs[b-hbzeyj3non]  .mud-tab {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        opacity: 1;
        margin-bottom: 0.5rem;
    }

    .auth-tabs[b-hbzeyj3non]  .mud-tab.mud-tab-active {
        background: var(--color-brand-dark);
        color: #fff;
        border-color: var(--color-brand-dark);
    }

    .auth-tabs[b-hbzeyj3non]  .mud-tabs-slider {
        display: none;
    }

.auth-alert[b-hbzeyj3non] {
    margin-bottom: 0.75rem;
}

.auth-form[b-hbzeyj3non] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding-top: 0.5rem;
}

.auth-field-row[b-hbzeyj3non] {
    display: flex;
    gap: 0.9rem;
}

    .auth-field-row .auth-field[b-hbzeyj3non] {
        flex: 1;
        min-width: 0;
    }

.auth-field[b-hbzeyj3non] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .auth-field label[b-hbzeyj3non] {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    .auth-field input[type="text"][b-hbzeyj3non],
    .auth-field input[type="email"][b-hbzeyj3non],
    .auth-field input[type="tel"][b-hbzeyj3non],
    .auth-field input[type="password"][b-hbzeyj3non] {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-family: var(--font-sans);
        font-size: 0.95rem;
        background: #fff;
        color: var(--color-text);
    }

        .auth-field input:focus[b-hbzeyj3non] {
            outline: 2px solid var(--color-brand-dark);
            outline-offset: 1px;
        }

.auth-field-checkbox label[b-hbzeyj3non] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.auth-submit-btn[b-hbzeyj3non] {
    margin-top: 0.3rem;
    background: var(--color-brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .auth-submit-btn:hover[b-hbzeyj3non] {
        background: #1c5b39;
    }

.auth-forgot-link[b-hbzeyj3non] {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
}

    .auth-forgot-link a[b-hbzeyj3non] {
        color: var(--color-gold-dark);
    }

.auth-resend-form[b-hbzeyj3non] {
    margin-bottom: 0.75rem;
    text-align: center;
}

.auth-resend-btn[b-hbzeyj3non] {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-gold-dark);
    text-decoration: underline;
    cursor: pointer;
}
/* /Components/Shared/CategoryTileBoard.razor.rz.scp.css */
.category-tile-board[b-bx7mohup49] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    padding: 0.5rem 0 0.25rem;
}

.category-tile[b-bx7mohup49] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    background: var(--color-bg-alt);
    border: 2px solid var(--color-gold-dark);
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

    .category-tile:hover[b-bx7mohup49] {
        transform: translateY(-3px) rotate(-0.5deg);
        background: var(--color-brand-dark);
        box-shadow: 0 10px 24px rgba(20, 67, 42, 0.3);
    }

        .category-tile:hover .category-tile-name[b-bx7mohup49],
        .category-tile:hover .category-tile-icon[b-bx7mohup49] {
            color: var(--color-gold-light);
        }

.category-tile-icon[b-bx7mohup49] {
    color: var(--color-gold-dark);
    font-size: 2rem;
}

.category-tile-name[b-bx7mohup49] {
    font-weight: 600;
    color: var(--color-text);
    word-break: break-word;
}
/* /Components/Shared/EmptyState.razor.rz.scp.css */
.empty-state[b-q3tjywwpu0] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

.empty-state-card[b-q3tjywwpu0] {
    max-width: 420px;
    width: 100%;
    text-align: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2.75rem 2rem;
}

.empty-state-icon[b-q3tjywwpu0] {
    width: 3.25rem !important;
    height: 3.25rem !important;
    color: var(--color-gold-dark);
    margin: 0 auto 1rem;
    opacity: 0.9;
}

.empty-state-title[b-q3tjywwpu0] {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-brand-dark);
    margin: 0 0 0.6rem;
}

.empty-state-message[b-q3tjywwpu0] {
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.empty-state-action[b-q3tjywwpu0] {
    display: inline-block;
    text-decoration: none;
    background: var(--color-brand-dark);
    color: var(--color-gold-light);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .empty-state-action:hover[b-q3tjywwpu0] {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(20, 67, 42, 0.25);
    }
/* /Components/Shared/ErrorPage.razor.rz.scp.css */
.error-page[b-t9z61rx2rc] {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.error-card[b-t9z61rx2rc] {
    max-width: 440px;
    width: 100%;
    text-align: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 3rem 2rem;
}

.error-logo[b-t9z61rx2rc] {
    width: 96px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    opacity: 0.9;
}

.error-code[b-t9z61rx2rc] {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin: 0 0 0.25rem;
    line-height: 1;
}

.error-title[b-t9z61rx2rc] {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brand-dark);
    margin: 0 0 0.75rem;
}

.error-message[b-t9z61rx2rc] {
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.error-home-link[b-t9z61rx2rc] {
    display: inline-block;
    text-decoration: none;
    background: var(--color-brand-dark);
    color: var(--color-gold-light);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .error-home-link:hover[b-t9z61rx2rc] {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(20, 67, 42, 0.25);
    }
/* /Components/Shared/ForgotPasswordDialog.razor.rz.scp.css */
/* Визуално огледало на AuthDialog.razor.css — дублирани само нужните
   класове (заглавие/поле/бутон), защото Blazor CSS isolation не споделя
   стилове между отделни компоненти. */

.auth-dialog-title[b-ywlfjyjzop] {
    font-family: var(--font-serif);
    color: var(--color-brand-dark);
}

.auth-field[b-ywlfjyjzop] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.9rem;
}

    .auth-field label[b-ywlfjyjzop] {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    /* (финална) — истинската причина: <InputText>
       е ДЪЩЕРЕН компонент — Blazor CSS isolation слага scope атрибута
       (b-xxxxxxx) само върху елементи, буквално написани в markup-а на
       СЪЩИЯ .razor файл. Вътрешният <input>, който InputText рендира,
       никога не получава b-xxxxxxx, затова .auth-field input[...] не е
       съвпадал никога — потвърдено чрез инспекция на компилирания
       Leonid.Web.*.styles.css бъндъл в браузъра (правилото съществуваше
       коректно, но елементът нямаше атрибута, върху който разчита). Затова
       по-рано опитите с/без [type="text"] не са имали никакъв ефект.
       ::deep казва на CSS isolation да НЕ добавя scope изискване за тази
       част от селектора, за да съвпадне с елементи от дъщерни компоненти. */
    .auth-field[b-ywlfjyjzop]  input {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-family: var(--font-sans);
        font-size: 0.95rem;
        background: #fff;
        color: var(--color-text);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

        .auth-field[b-ywlfjyjzop]  input:focus {
            outline: 2px solid var(--color-brand-dark);
            outline-offset: 1px;
        }

.auth-submit-btn[b-ywlfjyjzop] {
    margin-top: 0.3rem;
    background: var(--color-brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .auth-submit-btn:hover[b-ywlfjyjzop] {
        background: #1c5b39;
    }

    .auth-submit-btn:disabled[b-ywlfjyjzop] {
        opacity: 0.8;
        cursor: default;
    }

/* Малък въртящ се спинер, докато чака реалния SMTP имейл —
   чист CSS, без нужда от JS/библиотека. */
.btn-spinner[b-ywlfjyjzop] {
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spinner-rotate-b-ywlfjyjzop 0.7s linear infinite;
}

@keyframes btn-spinner-rotate-b-ywlfjyjzop {
    to {
        transform: rotate(360deg);
    }
}

/* (финална) — рамка около съобщението (преди беше гол текст, центриран от
   родителя, което го правеше грозен/неравен на няколко реда) + подравняване
   наляво вместо центрирано. */
.forgot-password-success[b-ywlfjyjzop] {
    font-family: var(--font-sans);
    color: var(--color-text);
    text-align: left;
    line-height: 1.6;
    background: rgba(20, 67, 42, 0.06);
    border: 1px solid rgba(20, 67, 42, 0.25);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    width: 100%;
    box-sizing: border-box;
}
/* /Components/Shared/ImageLightboxDialog.razor.rz.scp.css */
.lightbox-content[b-rxg0lx8fss] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: min(80vw, 640px);
}

.lightbox-image[b-rxg0lx8fss] {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-arrow[b-rxg0lx8fss] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(20, 67, 42, 0.85);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

    .lightbox-arrow:hover[b-rxg0lx8fss] {
        background: var(--color-brand-dark);
    }

.lightbox-arrow-left[b-rxg0lx8fss] {
    left: -0.5rem;
}

.lightbox-arrow-right[b-rxg0lx8fss] {
    right: -0.5rem;
}
/* /Components/Shared/MaintenanceGateDialog.razor.rz.scp.css */
.maintenance-dialog-title[b-9mg7x5zh6e] {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-serif);
    color: var(--color-brand-dark);
}

/* Целият блок (текст, каре с адрес, служебен вход/форма) центриран
   като едно цяло, вместо разпилян ляво подравнен по подразбиране. */
.maintenance-content[b-9mg7x5zh6e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
}

/* Мек зелен фон (тон на бранда) зад уводния текст, за да се отличи от
   карето с адреса под него — не плътно зелено (нечетимо с тъмния текст),
   а лек, прозрачен воал в същия --color-brand-dark. */
.maintenance-intro-block[b-9mg7x5zh6e] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(20, 67, 42, 0.08);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

.maintenance-intro[b-9mg7x5zh6e] {
    font-family: var(--font-sans);
    color: var(--color-text);
}

.maintenance-intro-sub[b-9mg7x5zh6e] {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Зеленото акцентче — рамка в брандовото тъмнозелено (вместо бронзовата
   рамка, каквато иначе имат полетата за вход) около карето с адреса. */
.maintenance-store-info[b-9mg7x5zh6e] {
    width: 100%;
    max-width: 340px;
    border: 2px solid var(--color-brand-dark);
}

.maintenance-line[b-9mg7x5zh6e] {
    margin: 0 0 0.35rem 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
}

    .maintenance-line:last-child[b-9mg7x5zh6e] {
        margin-bottom: 0;
    }

    .maintenance-line a[b-9mg7x5zh6e] {
        color: var(--color-gold-dark);
        text-decoration: none;
    }

        .maintenance-line a:hover[b-9mg7x5zh6e] {
            text-decoration: underline;
        }

.maintenance-line-strong[b-9mg7x5zh6e] {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-brand-dark);
}

.maintenance-divider[b-9mg7x5zh6e] {
    width: 60px;
    border-top: 1px solid rgba(133, 103, 53, 0.3);
}

/* Outline бутон за "Служебен вход" — вместо обикновен подчертан линк. */
.maintenance-toggle-btn[b-9mg7x5zh6e] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1.5px solid var(--color-gold-dark);
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

    .maintenance-toggle-btn:hover[b-9mg7x5zh6e] {
        background: var(--color-gold-dark);
        color: #fff;
    }

        .maintenance-toggle-btn:hover .maintenance-toggle-icon[b-9mg7x5zh6e] {
            color: #fff;
        }

.maintenance-toggle-icon[b-9mg7x5zh6e] {
    color: var(--color-gold-dark);
    transition: color 0.15s ease;
}

.maintenance-alert[b-9mg7x5zh6e] {
    width: 100%;
    max-width: 320px;
}

.maintenance-form[b-9mg7x5zh6e] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    max-width: 320px;
    text-align: left;
}

.maintenance-field[b-9mg7x5zh6e] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .maintenance-field label[b-9mg7x5zh6e] {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    .maintenance-field input[type="password"][b-9mg7x5zh6e] {
        border: 1px solid var(--color-gold-dark);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-family: var(--font-sans);
        font-size: 0.95rem;
        background: #fff;
        color: var(--color-text);
    }

        .maintenance-field input:focus[b-9mg7x5zh6e] {
            outline: 2px solid var(--color-brand-dark);
            outline-offset: 1px;
        }

.maintenance-submit-btn[b-9mg7x5zh6e] {
    align-self: center;
    background: var(--color-brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .maintenance-submit-btn:hover[b-9mg7x5zh6e] {
        background: #1c5b39;
    }
/* /Components/Shared/ProductCard.razor.rz.scp.css */
.product-card[b-7pd84y79h7] {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .product-card:hover[b-7pd84y79h7] {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(20, 67, 42, 0.14);
    }

.product-card-image-wrap[b-7pd84y79h7] {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image[b-7pd84y79h7] {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.product-card:hover .product-card-image[b-7pd84y79h7] {
    transform: scale(1.08);
}

.product-card-ribbon[b-7pd84y79h7] {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: #C23B2A;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.product-card-body[b-7pd84y79h7] {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.product-card-name[b-7pd84y79h7] {
    font-family: var(--font-sans);
    font-weight: 600;
    margin: 0;
    min-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-price[b-7pd84y79h7] {
    margin: 0;
    color: var(--color-gold-dark);
    font-weight: 600;
}

.product-card-price-old[b-7pd84y79h7] {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-right: 0.5rem;
}

.product-card-price-sale[b-7pd84y79h7] {
    color: #C23B2A;
}

.product-card-actions[b-7pd84y79h7] {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card-btn[b-7pd84y79h7] {
    font-family: var(--font-sans);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.15s ease, background 0.15s ease;
}

.product-card-btn-buy[b-7pd84y79h7] {
    flex: 1;
    background: var(--color-brand-dark);
    color: #fff;
    padding: 0.55rem 1rem;
}

    .product-card-btn-buy:hover[b-7pd84y79h7] {
        opacity: 0.9;
    }

.product-card-btn-outofstock[b-7pd84y79h7] {
    flex: 1;
    background: var(--color-bg);
    color: var(--color-text-muted);
    padding: 0.55rem 1rem;
    text-align: center;
    cursor: default;
}

.product-card-btn-fav[b-7pd84y79h7] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    color: var(--color-brand-dark);
    flex-shrink: 0;
}

    .product-card-btn-fav.is-favorited[b-7pd84y79h7] {
        color: #C23B2A;
    }

.product-card-btn[disabled][b-7pd84y79h7] {
    opacity: 0.6;
    cursor: default;
}
/* /Components/Shared/PromoBanner.razor.rz.scp.css */
.promo-banner[b-svqwall429] {
    position: relative;
    background: linear-gradient(180deg, #1B4F30, var(--color-brand-dark) 55%, #0F3A22);
    color: var(--color-gold-light);
    text-align: center;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.015em;
}

.promo-banner[b-svqwall429]::before,
.promo-banner[b-svqwall429]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light) 50%, var(--color-gold-dark));
    opacity: 0.9;
}

.promo-banner[b-svqwall429]::before { top: 0; }
.promo-banner[b-svqwall429]::after {
    bottom: 0;
    box-shadow: 0 2px 8px rgba(133, 103, 53, 0.35);
}
