html,
body {
    font-family: Aptos, "Segoe UI", Arial, sans-serif;
    background:
        linear-gradient(135deg, rgba(76, 195, 217, .10), transparent 32%),
        linear-gradient(225deg, rgba(216, 184, 79, .12), transparent 28%),
        #edf2f8;
    color: #111827;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(20, 33, 61, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 33, 61, .055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 72%);
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    width: 38vw;
    height: 100vh;
    right: 0;
    top: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(76, 195, 217, .13));
    animation: ambientPulse 7s ease-in-out infinite alternate;
    z-index: -1;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.mud-typography-h2,
.mud-typography-h3,
.mud-typography-h4,
.mud-typography-h5,
.mud-typography-h6 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

.store-appbar {
    min-height: 72px;
    border-bottom: 1px solid rgba(216, 184, 79, .30);
    background: linear-gradient(90deg, #0f172a, #14213d 48%, #56667d) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .24);
}

.store-appbar .mud-toolbar {
    gap: 8px;
}

.desktop-spacer {
    flex: 1 1 auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    height: 58px;
    padding: 4px 0;
}

.brand-mark img {
    width: 176px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(215, 184, 79, .28));
}

.store-shell {
    min-height: 100vh;
    padding-top: 72px;
}

.home-wrap,
.page-wrap {
    padding: 32px;
}

.hero {
    min-height: 460px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    border: 1px solid rgba(216, 184, 79, .28);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .25);
    animation: liftIn .55s ease both;
}

.hero-copy {
    max-width: 760px;
    padding: 56px;
    color: #fbfaf5;
    animation: fadeSlideUp .65s ease .08s both;
}

.hero-copy h2 {
    max-width: 680px;
    font-weight: 700;
    line-height: 1.02;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .32);
}

.hero-logo {
    width: 230px;
    max-width: 70vw;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 18px rgba(215, 184, 79, .34));
}

.section-head {
    margin: 40px 0 16px;
    gap: 18px;
}

.category-strip {
    margin-bottom: 24px;
}

.ad-spot {
    min-height: 210px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    margin: 24px 0;
    padding: 28px;
    color: #fbfaf5;
    border: 1px solid rgba(216, 184, 79, .36);
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .18);
    overflow: hidden;
}

.ad-spot h4 {
    max-width: 720px;
    font-weight: 700;
    line-height: 1.05;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.ad-spot p {
    max-width: 640px;
}

.checkout-ad-spot {
    margin-top: 0;
}

.home-promo-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 8px;
}

.promo-pill {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(216, 184, 79, .34);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(251, 252, 255, .94), rgba(76, 195, 217, .12));
    box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
}

.promo-pill .mud-icon-root {
    color: #0e7490;
}

.align-center-grid {
    align-items: center;
}

.product-card,
.lot-card,
.checkout-panel,
.wholesale-panel {
    border: 1px solid rgba(76, 195, 217, .16);
    border-radius: 8px;
    background: rgba(251, 252, 255, .88);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
    backdrop-filter: blur(12px);
}

.product-card {
    height: 100%;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    animation: fadeSlideUp .45s ease both;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(216, 184, 79, .42);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .16);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.product-gallery-carousel {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.product-gallery-carousel > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fbfaf5;
    background: rgba(15, 23, 42, .68);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.product-gallery-prev {
    left: 10px;
}

.product-gallery-next {
    right: 10px;
}

.product-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
    z-index: 2;
}

.product-gallery-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(251, 250, 245, .72);
    border-radius: 50%;
    background: rgba(15, 23, 42, .54);
    cursor: pointer;
}

.product-gallery-dots button.active {
    width: 22px;
    border-radius: 999px;
    background: #d8b84f;
    border-color: #d8b84f;
}

.product-image-chip {
    position: absolute;
    top: 12px;
    left: 12px;
}

.price-badge,
.lot-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    gap: 2px;
    min-width: 118px;
    padding: 10px 12px;
    color: #ffffff;
    border: 1px solid rgba(216, 184, 79, .72);
    border-radius: 8px;
    background: rgba(9, 14, 27, .94);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .24);
}

.wholesale-link-badge {
    text-decoration: none;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.wholesale-link-badge:hover {
    color: #fbfaf5;
    transform: translateY(-2px);
    border-color: rgba(216, 184, 79, .78);
    background: rgba(15, 23, 42, .96);
}

.price-badge span,
.lot-badge span {
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .34);
}

.price-badge small,
.lot-badge small {
    color: #f8e7a1;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-body {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
}

.buy-options {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(76, 195, 217, .20);
    background: linear-gradient(135deg, rgba(76, 195, 217, .10), rgba(216, 184, 79, .08));
}

.wholesale-panel,
.checkout-panel {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.checkout-panel::before,
.wholesale-panel::before,
.metric-card::before,
.order-admin-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent, rgba(76, 195, 217, .12), transparent);
    transform: translateX(-120%);
    animation: sheen 6s ease-in-out infinite;
}

.lot-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 20px;
    padding: 16px;
}

.lot-card img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
}

.lot-detail-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 18px;
    border: 1px solid rgba(76, 195, 217, .16);
    border-radius: 8px;
    background: rgba(251, 252, 255, .90);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
    backdrop-filter: blur(12px);
}

.wholesale-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
    gap: 26px;
    align-items: center;
    padding: 34px;
    color: #fbfaf5;
    border: 1px solid rgba(216, 184, 79, .30);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(15, 23, 42, .96), rgba(14, 116, 144, .82)),
        url("/brand/vianna-logo-full.png") right center / contain no-repeat;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
}

.wholesale-hero h3 {
    max-width: 720px;
    font-weight: 700;
    line-height: 1.04;
}

.wholesale-hero p {
    max-width: 620px;
}

.wholesale-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.wholesale-kpi {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(251, 250, 245, .24);
    border-radius: 8px;
    background: rgba(251, 252, 255, .11);
    backdrop-filter: blur(10px);
}

.wholesale-kpi .mud-icon-root {
    color: #d8b84f;
}

.lot-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.lot-gallery-carousel {
    width: 260px;
    height: 100%;
    min-height: 320px;
}

.lot-detail-body {
    display: grid;
    gap: 18px;
}

.lot-title-row {
    gap: 16px;
}

.lot-table {
    border: 1px solid rgba(76, 195, 217, .16);
    border-radius: 8px;
    overflow: hidden;
}

.lot-table .mud-table-container {
    overflow-x: auto;
}

.lot-builder {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr .8fr auto;
    gap: 12px;
    align-items: end;
    padding: 14px;
    border: 1px solid rgba(76, 195, 217, .20);
    background: linear-gradient(135deg, rgba(76, 195, 217, .10), rgba(216, 184, 79, .08));
}

.lot-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(216, 184, 79, .36);
    background: linear-gradient(135deg, rgba(216, 184, 79, .18), rgba(76, 195, 217, .10));
}

.lot-summary-total {
    text-align: right;
    white-space: nowrap;
}

.lot-actions {
    gap: 12px;
    flex-wrap: wrap;
}

.cart-line {
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 20, 20, .07);
    gap: 12px;
}

.cart-title-row {
    gap: 8px;
    flex-wrap: wrap;
}

.admin-table {
    border: 1px solid rgba(20, 20, 20, .08);
    border-radius: 8px;
    overflow: hidden;
}

.metric-card,
.order-admin-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(76, 195, 217, .16);
    border-radius: 8px;
    background: rgba(251, 252, 255, .90);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    backdrop-filter: blur(12px);
}

.admin-section-title {
    gap: 16px;
}

.orders-admin-page {
    max-width: 1680px;
}

.order-control-panel {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 220px 180px;
    gap: 14px;
    align-items: end;
    margin-top: 22px;
}

.order-metric-card {
    min-height: 142px;
}

.fulfillment-panel {
    display: grid;
    gap: 12px;
}

.shipping-queue-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(76, 195, 217, .18);
    border-radius: 8px;
    background: rgba(251, 252, 255, .82);
}

.order-work-card {
    display: grid;
    gap: 4px;
}

.order-card-title {
    gap: 8px;
    flex-wrap: wrap;
}

.order-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.login-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.login-grid {
    width: 100%;
}

.login-brand-panel {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
    color: #fbfcff;
    border: 1px solid rgba(216, 184, 79, .28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, .94), rgba(20, 33, 61, .86)),
        url("/brand/vianna-logo-full.png") center / cover;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
    animation: liftIn .55s ease both;
}

.account-login {
    min-height: 520px;
    display: flex;
    align-items: center;
    animation: fadeSlideUp .55s ease .08s both;
}

.account-page {
    max-width: 1360px;
}

.account-profile-panel,
.account-orders-panel {
    display: grid;
    gap: 16px;
}

.account-orders-head {
    gap: 14px;
}

.customer-order-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(76, 195, 217, .16);
    border-radius: 8px;
    background: rgba(251, 252, 255, .88);
}

.customer-order-title {
    gap: 12px;
}

.order-status-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

.order-status-step {
    position: relative;
    display: grid;
    gap: 6px;
    justify-items: center;
    color: rgba(17, 24, 39, .58);
    text-align: center;
}

.order-status-step::before {
    content: "";
    position: absolute;
    top: 8px;
    left: calc(-50% + 10px);
    width: calc(100% - 20px);
    height: 2px;
    background: rgba(20, 33, 61, .18);
}

.order-status-step:first-child::before {
    display: none;
}

.order-status-step span {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(20, 33, 61, .28);
    border-radius: 50%;
    background: #fbfcff;
    z-index: 1;
}

.order-status-step.done {
    color: #14213d;
}

.order-status-step.done::before,
.order-status-step.done span {
    border-color: #0e7490;
    background: #0e7490;
}

.order-status-step.current span {
    border-color: #d8b84f;
    background: #d8b84f;
    box-shadow: 0 0 0 5px rgba(216, 184, 79, .18);
}

.login-tabs {
    width: 100%;
}

.login-form,
.upload-box {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.register-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.password-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(20, 33, 61, .12);
    border-radius: 8px;
    background: rgba(251, 252, 255, .72);
}

.password-rules span {
    padding: 5px 8px;
    border: 1px solid rgba(20, 33, 61, .16);
    border-radius: 999px;
    color: rgba(17, 24, 39, .70);
    font-size: .78rem;
}

.password-rules span.valid {
    border-color: rgba(14, 116, 144, .36);
    color: #0f5132;
    background: rgba(34, 197, 94, .12);
}

.admin-field {
    display: grid;
    gap: 6px;
    font-size: .9rem;
    color: rgba(17, 24, 39, .72);
}

.admin-field input {
    height: 46px;
    border: 1px solid rgba(20, 33, 61, .22);
    border-radius: 8px;
    background: #fbfcff;
    padding: 0 14px;
    color: #111827;
}

.admin-field input:focus {
    border-color: #14213d;
    outline: 2px solid rgba(76, 195, 217, .22);
}

.mud-button-root {
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.mud-button-root:hover {
    transform: translateY(-1px);
}

.mud-button-filled-secondary,
.mud-button-filled-primary {
    box-shadow: 0 12px 26px rgba(15, 23, 42, .16);
}

.upload-box {
    padding: 16px;
    border: 1px dashed rgba(20, 33, 61, .26);
    border-radius: 8px;
    background: rgba(216, 184, 79, .14);
}

.ad-preview {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(20, 20, 20, .08);
}

.product-gallery-admin {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-gallery-admin-item {
    position: relative;
    min-height: 110px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, .08);
    border-radius: 8px;
    background: #fbfcff;
}

.product-gallery-admin-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.product-gallery-admin-item .mud-icon-button-root {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(251, 252, 255, .92);
}

.product-admin-panel {
    display: grid;
    gap: 16px;
}

.product-form-grid,
.variant-editor {
    display: grid;
    gap: 12px;
}

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

.variant-editor {
    grid-template-columns: 1fr 1.2fr .8fr auto;
    align-items: end;
    padding: 14px;
    border: 1px solid rgba(76, 195, 217, .20);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(76, 195, 217, .10), rgba(216, 184, 79, .08));
}

.product-switches {
    flex-wrap: wrap;
    gap: 12px;
}

.login-logo {
    width: 220px;
    max-width: 80%;
    display: block;
    margin: 0 auto 22px;
    filter: drop-shadow(0 0 16px rgba(215, 184, 79, .22));
}

#blazor-error-ui {
    background: #fff3cd;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .2);
    display: none;
    left: 0;
    padding: .6rem 1.25rem .7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: .75rem;
    top: .5rem;
}

@keyframes ambientPulse {
    from {
        opacity: .45;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: .85;
        transform: translate3d(-30px, 0, 0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes liftIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sheen {
    0%, 72% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@media (max-width: 760px) {
    body::before {
        background-size: 30px 30px;
    }

    .store-appbar {
        min-height: 106px;
    }

    .store-appbar .mud-toolbar {
        min-height: 106px;
        align-items: stretch;
        flex-wrap: wrap;
        padding: 8px 12px;
        row-gap: 6px;
    }

    .desktop-spacer {
        display: none;
    }

    .brand-mark {
        flex: 1 0 100%;
        height: 42px;
        justify-content: center;
        padding: 0;
    }

    .nav-actions {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 6px;
        align-items: center;
        scrollbar-width: none;
    }

    .nav-actions::-webkit-scrollbar {
        display: none;
    }

    .store-appbar .mud-button-root {
        flex: 0 0 auto;
        min-width: auto;
        padding-left: 8px;
        padding-right: 8px;
        font-size: .78rem;
    }

    .store-appbar .mud-chip {
        max-width: 100%;
        justify-content: center;
    }

    .store-shell {
        padding-top: 106px;
    }

    .home-wrap,
    .page-wrap {
        padding: 14px;
    }

    .hero {
        min-height: 360px;
    }

    .hero-copy {
        padding: 22px;
    }

    .hero-copy h2,
    .mud-typography-h2 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .hero-logo {
        width: 176px;
    }

    .brand-mark img {
        width: 132px;
        height: 44px;
    }

    .section-head {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .home-promo-bar,
    .ad-spot,
    .wholesale-hero,
    .wholesale-kpis {
        grid-template-columns: 1fr;
    }

    .ad-spot {
        min-height: 260px;
        padding: 22px;
    }

    .ad-spot .mud-button-root {
        width: 100%;
    }

    .promo-pill {
        min-height: 80px;
    }

    .wholesale-hero {
        padding: 22px;
        background:
            linear-gradient(145deg, rgba(15, 23, 42, .95), rgba(14, 116, 144, .84)),
            url("/brand/vianna-logo-full.png") center / cover no-repeat;
    }

    .lot-card {
        grid-template-columns: 1fr;
    }

    .lot-card img {
        width: 100%;
    }

    .lot-detail-card {
        grid-template-columns: 1fr;
    }

    .lot-gallery-carousel {
        width: 100%;
        height: 240px;
        min-height: 240px;
    }

    .product-body {
        min-height: auto;
    }

    .checkout-panel,
    .wholesale-panel {
        padding: 18px;
    }

    .cart-line {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .cart-line > .mud-typography {
        align-self: flex-end;
    }

    .lot-title-row,
    .lot-actions,
    .section-head {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .lot-actions .mud-button-root {
        width: 100%;
    }

    .lot-builder {
        grid-template-columns: 1fr;
    }

    .lot-builder .mud-button-root {
        width: 100%;
    }

    .product-form-grid,
    .variant-editor {
        grid-template-columns: 1fr;
    }

    .order-control-panel {
        grid-template-columns: 1fr;
    }

    .shipping-queue-item {
        grid-template-columns: 1fr;
    }

    .shipping-queue-item .mud-button-root,
    .order-quick-actions .mud-button-root {
        width: 100%;
    }

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

    .variant-editor .mud-button-root {
        width: 100%;
    }

    .login-page {
        min-height: auto;
    }

    .login-brand-panel,
    .account-login {
        min-height: auto;
    }

    .login-brand-panel {
        padding: 24px;
    }

    .account-orders-head,
    .customer-order-title {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .order-status-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .order-status-step {
        grid-template-columns: auto 1fr;
        justify-items: start;
        text-align: left;
    }

    .order-status-step::before {
        display: none;
    }

    .register-grid {
        grid-template-columns: 1fr;
    }

    .lot-summary {
        grid-template-columns: 1fr;
    }

    .lot-summary-total {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .store-appbar {
        min-height: 118px;
    }

    .store-appbar .mud-toolbar {
        min-height: 118px;
    }

    .store-shell {
        padding-top: 118px;
    }

    .nav-actions .mud-button-label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-actions .mud-button-icon-start {
        display: none;
    }
}
