@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/raleway-300-400-700-latin.woff2') format('woff2');
}

/* POS kiosk and admin */
.pos-kiosk-page {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(226, 197, 90, 0.16), transparent 28%),
        radial-gradient(circle at 92% 92%, rgba(191, 146, 91, 0.17), transparent 30%),
        linear-gradient(145deg, #070707 0%, #17130e 56%, #080808 100%);
    color: var(--text-primary);
}

.pos-kiosk,
.pos-kiosk * {
    box-sizing: border-box;
}

.pos-kiosk {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
}

.pos-kiosk__topbar {
    display: grid;
    grid-template-columns: minmax(9rem, 15rem) minmax(0, 1fr) auto;
    gap: clamp(0.55rem, 1.4vw, 1rem);
    align-items: center;
    padding: clamp(0.55rem, 1.25vw, 0.9rem) clamp(0.75rem, 1.8vw, 1.25rem);
    border-bottom: 1px solid rgba(226, 197, 90, 0.2);
    background:
        linear-gradient(180deg, rgba(191, 146, 91, 0.12), rgba(255, 255, 255, 0.015)),
        #0a0a0a;
}

.pos-kiosk__brand {
    display: inline-flex;
    align-items: center;
    width: min(100%, 14rem);
}

.pos-kiosk__brand img {
    width: 100%;
    height: auto;
}

.pos-kiosk__register,
.pos-kiosk__staff,
.pos-customer-chip,
.pos-kiosk__cart,
.pos-kiosk__catalogue,
.pos-payment-card,
.pos-register-card,
.pos-security-panel,
.pos-device-row,
.pos-report-kpis article,
.pos-payment-record {
    border: 1px solid rgba(226, 197, 90, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(226, 197, 90, 0.045)),
        rgba(255, 255, 255, 0.02);
}

.pos-kiosk__register {
    display: grid;
    gap: 0.2rem;
    justify-self: start;
    min-width: 0;
    padding: 0.72rem 0.9rem;
}

.pos-kiosk__register strong,
.pos-kiosk__staff,
.pos-customer-chip strong {
    color: var(--text-primary);
}

.pos-kiosk__staff {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.7rem 0.95rem;
    color: var(--gold-light);
    font-weight: 800;
}

.pos-kiosk__staff .bb-icon {
    width: 1.05rem;
    height: 1.05rem;
}

.pos-kiosk__top-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pos-kiosk__workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 30rem);
    gap: clamp(0.75rem, 1.5vw, 1.2rem);
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding: clamp(0.75rem, 1.5vw, 1.2rem);
}

.pos-kiosk__catalogue,
.pos-kiosk__cart {
    display: grid;
    gap: 0.9rem;
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
    padding: clamp(0.85rem, 1.7vw, 1.2rem);
}

.pos-kiosk__catalogue {
    grid-template-rows: auto auto minmax(0, 1fr);
}

.pos-kiosk__section-head,
.pos-kiosk__cart-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: flex-start;
}

.pos-kiosk__section-head h1,
.pos-kiosk__cart-head h2,
.pos-modal__panel h2,
.pos-kiosk-empty h1 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.05rem, 4vw, 3.4rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.pos-kiosk__category-strip {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-color: rgba(226, 197, 90, 0.42) transparent;
}

.pos-kiosk__category-strip button {
    flex: 0 0 auto;
    min-height: 3rem;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(240, 236, 228, 0.78);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pos-kiosk__category-strip button.is-active,
.pos-kiosk__category-strip button:hover,
.pos-kiosk__category-strip button:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.55);
    background: rgba(226, 197, 90, 0.13);
    color: var(--gold-light);
}

.pos-kiosk__product-grid {
    display: grid;
    align-content: start;
    align-items: start;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    grid-auto-rows: var(--pos-product-tile-height, clamp(11.75rem, 13.8vw, 12.75rem));
    gap: 0.95rem;
    min-height: 0;
    overflow-y: auto;
    padding: 0 0.25rem 0.25rem 0;
    -webkit-overflow-scrolling: touch;
}

.pos-product-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 0;
    height: var(--pos-product-tile-height, clamp(11.75rem, 13.8vw, 12.75rem));
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    border-color: color-mix(in srgb, var(--pos-accent, var(--gold-light)) 42%, transparent);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.12), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.03);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--pos-accent, var(--gold-light)) 15%, transparent), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    text-align: left;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.pos-product-tile[hidden] {
    display: none !important;
}

.pos-kiosk.is-pos-all-category .pos-kiosk__product-grid {
    --pos-product-tile-height: clamp(11.45rem, 12.4vw, 12.25rem);
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1.05rem;
}

.pos-kiosk.is-pos-all-category .pos-product-tile {
    height: var(--pos-product-tile-height);
}

.pos-product-tile:hover,
.pos-product-tile:focus-visible {
    outline: none;
    transform: translateY(-2px);
    border-color: rgba(226, 197, 90, 0.5);
    border-color: color-mix(in srgb, var(--pos-accent, var(--gold-light)) 72%, transparent);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.2), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.04);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--pos-accent, var(--gold-light)) 24%, transparent), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.04);
}

.pos-product-tile span,
.pos-product-tile small {
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pos-product-tile span {
    width: fit-content;
    max-width: 100%;
    padding: 0.24rem 0.45rem;
    border: 1px solid color-mix(in srgb, var(--pos-accent, var(--gold-light)) 30%, transparent);
    background: rgba(0, 0, 0, 0.14);
}

.pos-product-tile small {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(226, 197, 90, 0.16);
}

.pos-product-tile strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.72vw, 1.52rem);
    line-height: 1;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.pos-kiosk.is-pos-all-category .pos-product-tile strong {
    font-size: clamp(1.08rem, 1.52vw, 1.38rem);
}

.pos-kiosk__cart {
    grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025) 46%, rgba(191, 146, 91, 0.1)),
        #111;
}

.pos-customer-chip {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    min-height: 4rem;
    padding: 0.85rem;
    color: inherit;
    text-align: left;
}

.pos-customer-chip .bb-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-light);
}

.pos-customer-chip span span,
.pos-customer-chip small {
    display: block;
    color: rgba(240, 236, 228, 0.62);
}

.has-pos-customer .pos-customer-chip {
    border-color: rgba(226, 197, 90, 0.45);
    background: rgba(226, 197, 90, 0.08);
}

.pos-kiosk__cart-list {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    padding-right: 0.2rem;
    scrollbar-color: rgba(226, 197, 90, 0.42) transparent;
    -webkit-overflow-scrolling: touch;
}

.pos-kiosk__empty-cart,
.pos-kiosk-empty,
.pos-kiosk__category-empty {
    display: grid;
    place-items: center;
    gap: 0.65rem;
    min-height: 14rem;
    padding: 1.25rem;
    color: rgba(240, 236, 228, 0.68);
    text-align: center;
}

.pos-kiosk__empty-cart .bb-icon,
.pos-kiosk-empty .bb-icon,
.pos-kiosk__category-empty .bb-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold-light);
}

.pos-kiosk__empty-cart strong,
.pos-kiosk__category-empty strong {
    color: var(--text-primary);
}

.pos-kiosk__category-empty {
    grid-column: 1 / -1;
    border: 1px dashed rgba(226, 197, 90, 0.26);
    background: rgba(255, 255, 255, 0.025);
}

.pos-cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.18);
}

.pos-cart-line__main strong,
.pos-cart-line__main span,
.pos-cart-line__price strong,
.pos-cart-line__price span {
    display: block;
}

.pos-cart-line__main strong {
    color: var(--text-primary);
}

.pos-cart-line__main span,
.pos-cart-line__price span {
    color: rgba(240, 236, 228, 0.6);
    font-size: 0.78rem;
}

.pos-cart-line__controls {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pos-cart-line__controls button,
.pos-cart-line__actions button,
.pos-cash-quick button {
    min-width: 2.55rem;
    min-height: 2.55rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(255, 255, 255, 0.035);
    color: var(--gold-light);
    font-weight: 800;
}

.pos-cart-line__price {
    text-align: right;
}

.pos-cart-line__price strong {
    color: var(--gold-light);
}

.pos-cart-line__actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.45rem;
}

.pos-cart-line__actions button {
    flex: 1 1 auto;
    min-height: 2.3rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pos-kiosk__notes textarea {
    min-height: 4.4rem;
}

.pos-kiosk__totals {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(226, 197, 90, 0.18);
}

.pos-kiosk__totals div {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
}

.pos-kiosk__totals dt,
.pos-kiosk__totals dd {
    margin: 0;
}

.pos-kiosk__totals dt {
    color: rgba(240, 236, 228, 0.62);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pos-kiosk__totals dd {
    color: var(--text-primary);
    font-weight: 800;
}

.pos-kiosk__total-row dd {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 0.9;
}

.pos-kiosk__checkout {
    min-height: 4rem;
    font-size: 1rem;
}

.pos-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: clamp(0.75rem, 2vw, 1.5rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.pos-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.pos-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.pos-modal__panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    width: min(100%, 46rem);
    max-height: min(92vh, 52rem);
    overflow-y: auto;
    padding: clamp(1rem, 2.6vw, 1.7rem);
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(191, 146, 91, 0.12), rgba(255, 255, 255, 0.03)),
        #111;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    transform: translateY(1rem);
    transition: transform 0.18s ease;
}

.pos-modal.is-open .pos-modal__panel {
    transform: translateY(0);
}

.pos-modal__panel--pin {
    width: min(100%, 30rem);
    text-align: center;
}

.pos-modal__panel--payment {
    gap: 0.7rem;
    width: min(100%, 54rem);
    max-height: calc(100dvh - 2rem);
    padding: clamp(0.85rem, 1.6vw, 1.05rem);
    overflow-y: auto;
}

.pos-modal__panel--receipt-email {
    width: min(100%, 32rem);
}

.pos-modal__panel--payment h2 {
    font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.pos-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-primary);
    font-size: 1.5rem;
}

.pos-modal__logo {
    justify-self: center;
    width: min(100%, 15rem);
    height: auto;
}

.pos-modal__panel p {
    margin: 0;
    color: rgba(240, 236, 228, 0.68);
}

.pos-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.pos-modal__actions .admin-button {
    min-height: 3.2rem;
}

.pos-modal__actions--pin {
    display: grid;
    grid-template-columns: 1fr;
}

.pos-modal__actions--pin .admin-button {
    width: 100%;
}

.pos-modal__hint {
    flex: 1 1 100%;
    align-self: center;
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.86rem;
}

.pos-modal__actions--receipt {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pos-modal__actions--receipt .admin-button {
    justify-content: center;
}

.pos-print-frame {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 1px;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.pos-receipt-kiosk {
    min-height: 100vh;
    min-height: 100dvh;
}

.pos-receipt-kiosk__wrap {
    display: grid;
    gap: 1rem;
    width: min(100% - 1.5rem, 50rem);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem) 0;
}

.pos-pin-display,
.pos-cash-display {
    width: 100%;
    min-height: 4.4rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background: rgba(0, 0, 0, 0.3);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 2.7rem;
    letter-spacing: 0.16em;
    text-align: center;
}

.pos-modal input[data-pos-custom-price] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.pos-modal input[data-pos-custom-price]::-webkit-inner-spin-button,
.pos-modal input[data-pos-custom-price]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.pos-modal.is-tip-mode [data-pos-custom-reason-field] {
    display: none;
}

.pos-modal__panel--payment .pos-cash-display {
    min-height: 3rem;
    padding-block: 0.45rem;
    font-size: clamp(1.65rem, 2.8vw, 2.05rem);
}

.pos-modal__panel--payment .pos-pin-keypad button {
    min-height: 2.8rem;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.pos-payment-change {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: rgba(226, 197, 90, 0.09);
}

.pos-payment-change[hidden] {
    display: none !important;
}

.pos-payment-change span {
    color: rgba(240, 236, 228, 0.72);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pos-payment-change strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 0.9;
}

.pos-pin-keypad {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.pos-pin-keypad button {
    min-height: clamp(3.3rem, 8vw, 4.6rem);
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.14), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.03);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.pos-pin-keypad button:hover,
.pos-pin-keypad button:focus-visible,
.pos-cart-line__controls button:hover,
.pos-cart-line__actions button:hover,
.pos-cash-quick button:hover {
    outline: none;
    border-color: rgba(226, 197, 90, 0.55);
    background: rgba(226, 197, 90, 0.13);
    color: var(--text-primary);
}

.pos-kiosk__pin-staff-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.76rem;
    text-align: left;
}

.pos-kiosk__pin-staff-list > span {
    grid-column: 1 / -1;
    color: var(--gold-light);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pos-kiosk__message {
    padding: 0.8rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    font-weight: 700;
}

.pos-kiosk__message.is-error {
    border-color: rgba(255, 132, 118, 0.4);
    background: rgba(170, 42, 32, 0.18);
    color: #ffd9d9;
}

.pos-customer-results {
    display: grid;
    gap: 0.55rem;
    max-height: 24rem;
    overflow-y: auto;
}

.pos-customer-result {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    width: 100%;
    min-height: 4rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    text-align: left;
}

.pos-customer-result strong,
.pos-customer-result small {
    display: block;
}

.pos-customer-result small,
.pos-customer-results__empty {
    color: rgba(240, 236, 228, 0.62);
}

.pos-customer-results__empty {
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.pos-payment-total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(226, 197, 90, 0.08);
}

.pos-payment-total span {
    color: rgba(240, 236, 228, 0.68);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pos-payment-total strong,
.pos-result-summary strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 0.9;
}

.pos-modal__panel--payment .pos-payment-total strong {
    font-size: clamp(2.15rem, 4vw, 3.15rem);
}

.pos-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.pos-payment-card {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    padding: 0.85rem;
}

.pos-cash-quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.pos-terminal-card {
    display: grid;
    gap: 0.5rem;
    min-height: 11rem;
    align-content: center;
    justify-items: center;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.pos-modal__panel--payment .pos-terminal-card {
    min-height: 8.4rem;
}

.pos-terminal-card .bb-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--gold-light);
}

.pos-result-summary {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    padding: 1.2rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.08);
    text-align: center;
}

.pos-result-summary span,
.pos-result-summary small {
    color: rgba(240, 236, 228, 0.72);
}

.pos-sale-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-end;
}

.pos-sale-hero__actions form {
    margin: 0;
}

.admin-filter-bar--pos-products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.admin-filter-bar--pos-sales {
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
}

.pos-report-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
    gap: 0.75rem;
}

.pos-report-kpis article {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
}

.pos-report-kpis--compact {
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
}

.pos-report-kpis article span {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pos-report-kpis article strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 0.95;
}

.pos-register-list {
    display: grid;
    gap: 1rem;
}

.pos-register-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.pos-security-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    gap: 1rem;
    margin-top: 1rem;
}

.pos-security-panel {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    padding: 1rem;
}

.pos-security-panel h4,
.pos-device-row h4 {
    margin: 0.2rem 0 0.35rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1;
    text-transform: uppercase;
}

.pos-security-panel p,
.pos-device-row p,
.pos-device-row small {
    margin: 0;
    color: rgba(240, 236, 228, 0.68);
    line-height: 1.55;
}

.pos-security-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1rem;
    color: rgba(240, 236, 228, 0.72);
}

.pos-device-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.pos-device-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1rem;
}

.pos-device-row__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-manual-sale,
.manual-sale-lines,
.accounting-expense-form {
    display: grid;
    gap: 1rem;
}

.manual-sale-line {
    display: grid;
    grid-template-columns: minmax(18rem, 1.4fr) minmax(5rem, 0.35fr) minmax(7rem, 0.45fr) minmax(12rem, 0.9fr) minmax(7rem, 0.4fr) auto;
    gap: 0.75rem;
    align-items: end;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.02);
}

.manual-sale-line__total {
    display: grid;
    gap: 0.25rem;
    min-height: 3.45rem;
    align-content: center;
}

.manual-sale-line__total span,
.accounting-vat-preview span,
.accounting-kpis span {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.manual-sale-line__total strong,
.accounting-vat-preview strong {
    color: var(--gold-light);
    font-weight: 900;
}

.admin-section-head__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-manual-sale__summary {
    display: grid;
    grid-template-columns: minmax(12rem, 0.45fr) minmax(18rem, 1fr) minmax(16rem, 0.58fr);
    gap: 1rem;
    align-items: start;
}

.manual-sale-totals {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(0, 0, 0, 0.18);
}

.manual-sale-totals div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.manual-sale-totals dt {
    color: rgba(240, 236, 228, 0.68);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.manual-sale-totals dd {
    margin: 0;
    color: var(--text-primary);
    font-weight: 900;
}

.manual-sale-totals div:nth-last-child(2) {
    padding-top: 0.45rem;
    border-top: 1px solid rgba(226, 197, 90, 0.2);
}

.manual-sale-totals div:nth-last-child(2) dd {
    color: var(--gold-light);
    font-size: 1.4rem;
}

.manual-customer-picker {
    position: relative;
}

.manual-customer-picker__results {
    position: absolute;
    z-index: 20;
    right: 0;
    left: 0;
    top: calc(100% + 0.35rem);
}

.manual-customer-picker__selected {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.08);
}

.manual-customer-picker__selected strong {
    color: var(--text-primary);
}

.manual-customer-picker__selected button {
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accounting-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.accounting-kpis--export {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 0;
}

.accounting-kpis article,
.accounting-vat-preview,
.accounting-upload {
    border: 1px solid rgba(226, 197, 90, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(226, 197, 90, 0.045)),
        rgba(255, 255, 255, 0.02);
}

.accounting-kpis article {
    display: grid;
    gap: 0.3rem;
    padding: 0.85rem 1rem;
}

.accounting-kpis strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.8vw, 2.3rem);
    line-height: 1;
}

.accounting-kpis small {
    color: rgba(240, 236, 228, 0.58);
    font-weight: 700;
}

.accounting-export-filter {
    grid-template-columns: repeat(2, minmax(10rem, 0.7fr)) minmax(16rem, 1fr);
    margin: 1.25rem 0 0;
}

.accounting-export-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: 1rem;
}

.accounting-export-pack {
    display: grid;
    gap: 1.1rem;
    align-content: start;
}

.accounting-export-list {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.accounting-export-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
    padding: 0.8rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(0, 0, 0, 0.16);
}

.accounting-export-list .bb-icon {
    color: var(--gold-light);
}

.accounting-export-list strong,
.accounting-export-list small {
    display: block;
}

.accounting-export-list strong {
    color: var(--text-primary);
}

.accounting-export-list small {
    margin-top: 0.2rem;
    color: rgba(240, 236, 228, 0.62);
    line-height: 1.35;
}

.accounting-vat-preview {
    display: grid;
    gap: 0.3rem;
    align-content: center;
    min-height: 3.65rem;
    padding: 0.7rem 0.85rem;
}

.accounting-upload {
    display: grid;
    place-items: center;
    gap: 0.45rem;
    min-height: 10rem;
    padding: 1.2rem;
    color: rgba(240, 236, 228, 0.68);
    text-align: center;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.accounting-upload.is-dragging {
    border-color: rgba(226, 197, 90, 0.62);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.16), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
}

.accounting-upload .bb-icon {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--gold-light);
}

.accounting-upload strong {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.accounting-upload small,
.accounting-upload em {
    color: rgba(240, 236, 228, 0.62);
}

.accounting-upload input {
    max-width: 18rem;
    color: rgba(240, 236, 228, 0.78);
}

.accounting-receipt-panel {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.02);
}

.accounting-receipt-panel strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-primary);
    overflow-wrap: anywhere;
}

.accounting-supplier-list .pos-category-row__main small {
    line-height: 1.35;
}

.pos-kiosk-empty--security {
    align-self: center;
    justify-self: center;
    width: min(100% - 2rem, 44rem);
}

.pos-kiosk-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.pos-kiosk-trust-inline {
    display: contents;
}

.pos-cash-open-card,
.pos-cash-inline-form {
    display: grid;
    align-items: end;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.02);
}

.pos-cash-open-card {
    grid-template-columns: minmax(16rem, 1fr) minmax(12rem, 0.62fr) minmax(10rem, 0.46fr) auto;
}

.pos-cash-open-card h3 {
    margin: 0.25rem 0;
}

.pos-cash-inline-form {
    grid-template-columns: minmax(10rem, 14rem) auto;
    justify-content: start;
    margin-bottom: 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.16);
}

.pos-cash-movement-panel,
.pos-cash-action-card {
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.035)),
        rgba(0, 0, 0, 0.14);
}

.pos-cash-movement-panel {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
}

.pos-cash-movement-scroll {
    display: grid;
    gap: 0.65rem;
    max-height: clamp(18rem, 46vh, 28rem);
    overflow-y: auto;
    padding-right: 0.2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(226, 197, 90, 0.42) transparent;
}

.pos-cash-movement-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.8rem;
    align-items: center;
    min-height: 4.25rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.025);
}

.pos-cash-movement-row--in {
    border-left: 3px solid rgba(226, 197, 90, 0.62);
}

.pos-cash-movement-row--out {
    border-left: 3px solid rgba(255, 132, 118, 0.56);
}

.pos-cash-movement-row__main {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.pos-cash-movement-row__line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    min-width: 0;
}

.pos-cash-movement-row__line strong {
    color: var(--text-primary);
    overflow-wrap: anywhere;
}

.pos-cash-movement-row__main small {
    color: rgba(240, 236, 228, 0.6);
}

.pos-cash-movement-row__amount {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    line-height: 0.95;
    white-space: nowrap;
}

.pos-cash-movement-row form {
    margin: 0;
}

.pos-cash-movement-empty {
    min-height: 11rem;
}

.pos-cash-movement-form-grid {
    align-items: start;
}

.pos-cash-movement-form-grid .admin-field {
    align-content: start;
    align-self: start;
}

.pos-cash-movement-form-grid .admin-field input,
.pos-cash-movement-form-grid .admin-field select,
.pos-cash-movement-form-grid .admin-themed-select__button {
    min-height: 3.55rem;
}

.pos-cash-movement-form-grid .admin-themed-select__button {
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pos-cash-movement-form-grid .admin-field small {
    display: block;
    color: rgba(240, 236, 228, 0.62);
    line-height: 1.45;
}

.pos-cash-session-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 1rem;
    align-items: start;
}

.pos-cash-action-card {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.pos-cash-action-card h3 {
    margin: 0.25rem 0;
}

.pos-cash-action-card .admin-button {
    justify-self: start;
}

.pos-cash-action-card--close {
    border-color: rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(191, 146, 91, 0.11), rgba(255, 255, 255, 0.028)),
        rgba(255, 255, 255, 0.018);
}

.pos-category-guide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pos-category-guide article,
.pos-category-row,
.pos-chart-card,
.pos-payment-record,
.pos-receipt,
.pos-register-card,
.pos-report-kpis article {
    border: 1px solid rgba(226, 197, 90, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.pos-category-guide article {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
}

.pos-category-guide strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.pos-category-guide p {
    margin: 0;
    color: rgba(240, 236, 228, 0.66);
}

.pos-category-list {
    display: grid;
    gap: 0.6rem;
}

.pos-category-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 0.9rem;
}

.pos-category-row--child {
    margin-left: 1.35rem;
}

.pos-category-row__accent {
    width: 0.42rem;
    height: 3.2rem;
    background: var(--category-accent, var(--gold-light));
    box-shadow: 0 0 1rem color-mix(in srgb, var(--category-accent, var(--gold-light)) 30%, transparent);
}

.pos-category-row__main {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.pos-category-row__main strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.pos-category-row__main small {
    color: rgba(240, 236, 228, 0.62);
    line-height: 1.35;
}

.pos-category-row__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.pos-chart-card {
    display: grid;
    grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
}

.pos-chart-card--stacked {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.pos-chart-card--stacked h4 {
    margin: 0.2rem 0 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.pos-donut-chart {
    position: relative;
    display: grid;
    place-items: center;
    width: min(13rem, 100%);
    aspect-ratio: 1;
    justify-self: center;
    border: 1px solid rgba(226, 197, 90, 0.2);
    border-radius: 50%;
    background:
        radial-gradient(circle, #151515 0 48%, transparent 49%),
        conic-gradient(var(--pos-chart-gradient));
    box-shadow: inset 0 0 0 0.75rem rgba(0, 0, 0, 0.2), 0 1rem 2.5rem rgba(0, 0, 0, 0.24);
}

.pos-donut-chart--small {
    width: min(11rem, 100%);
}

.pos-donut-chart span {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 0.95;
}

.pos-chart-legend,
.pos-bar-chart {
    display: grid;
    gap: 0.7rem;
}

.pos-chart-legend article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem;
    align-items: center;
}

.pos-chart-legend article > span {
    width: 0.86rem;
    height: 0.86rem;
    background: var(--legend-colour, var(--gold-light));
}

.pos-chart-legend strong,
.pos-bar-chart strong {
    display: block;
    color: var(--text-primary);
}

.pos-chart-legend small,
.pos-bar-chart small,
.pos-bar-chart span {
    color: rgba(240, 236, 228, 0.64);
}

.pos-bar-chart article {
    display: grid;
    gap: 0.35rem;
}

.pos-bar-chart article > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pos-bar-chart__track {
    height: 0.7rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.pos-bar-chart__track span {
    display: block;
    width: var(--bar-width, 0%);
    height: 100%;
    background: var(--bar-colour, var(--gold-light));
}

.pos-payment-record {
    display: grid;
    gap: 0.3rem;
    padding: 0.85rem;
}

.pos-payment-record strong {
    color: var(--text-primary);
}

.pos-payment-record span,
.pos-payment-record small {
    color: rgba(240, 236, 228, 0.65);
}

.admin-card--nested {
    padding: 1rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.035)),
        rgba(0, 0, 0, 0.16);
}

.admin-customer-pos-summary .admin-stat-list {
    gap: 0.55rem;
}

.admin-schedule-drawer__foot form {
    display: contents;
}

.admin-text-danger {
    color: #ffd9d9 !important;
}

.pos-receipt {
    width: min(34rem, 100%);
    margin: 0 auto;
    padding: clamp(1.1rem, 3vw, 1.8rem);
    color: var(--text-primary);
}

.pos-receipt__header {
    display: grid;
    justify-items: center;
    gap: 0.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 197, 90, 0.18);
    text-align: center;
}

.pos-receipt__header img {
    width: min(15rem, 84%);
    height: auto;
}

.pos-receipt__header p {
    margin: 0.35rem 0 0;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.pos-receipt__header span,
.pos-receipt__meta dt,
.pos-receipt__lines span,
.pos-receipt__footer span {
    color: rgba(240, 236, 228, 0.62);
}

.pos-receipt__meta,
.pos-receipt__totals {
    display: grid;
    gap: 0.45rem;
    margin: 1rem 0;
}

.pos-receipt__meta div,
.pos-receipt__totals div,
.pos-receipt__lines article {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pos-receipt__meta dt,
.pos-receipt__totals dt {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pos-receipt__meta dd,
.pos-receipt__totals dd {
    margin: 0;
    color: var(--text-primary);
    text-align: right;
}

.pos-receipt__lines {
    display: grid;
    gap: 0.6rem;
    padding: 1rem 0;
    border-block: 1px solid rgba(226, 197, 90, 0.18);
}

.pos-receipt__lines article > div {
    display: grid;
    gap: 0.15rem;
}

.pos-receipt__lines strong,
.pos-receipt__total dd {
    color: var(--gold-light);
}

.pos-receipt__total {
    padding-top: 0.65rem;
    border-top: 1px solid rgba(226, 197, 90, 0.18);
    font-size: 1.2rem;
}

.pos-receipt__footer {
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    margin-top: 1rem;
    text-align: center;
}

.pos-receipt__footer p {
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
}

.pos-customer-display-page {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(226, 197, 90, 0.18), transparent 28%),
        radial-gradient(circle at 88% 86%, rgba(191, 146, 91, 0.18), transparent 32%),
        linear-gradient(145deg, #050505 0%, #15110d 58%, #070707 100%);
    color: var(--text-primary);
}

.pos-customer-display,
.pos-customer-display * {
    box-sizing: border-box;
}

.pos-customer-display [hidden],
.pos-customer-display__tip-modal[hidden] {
    display: none !important;
}

.pos-customer-display {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(0.75rem, 1.4vw, 1.2rem);
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(0.75rem, 1.5vw, 1.25rem);
}

.pos-customer-display__topbar,
.pos-customer-display__panel,
.pos-customer-display__sunbed-screen,
.pos-customer-display__review,
.pos-customer-display__sale,
.pos-customer-display__items,
.pos-customer-display__totals {
    border: 1px solid rgba(226, 197, 90, 0.22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.045)),
        rgba(255, 255, 255, 0.02);
}

.pos-customer-display__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: clamp(4.4rem, 8vw, 6.2rem);
    padding: clamp(0.7rem, 1.5vw, 1rem) clamp(0.85rem, 2vw, 1.35rem);
    background:
        linear-gradient(180deg, rgba(191, 146, 91, 0.12), rgba(255, 255, 255, 0.015)),
        #090908;
}

.pos-customer-display__topbar img {
    width: clamp(12rem, 24vw, 20rem);
    max-width: 64vw;
    height: auto;
}

.pos-customer-display__topbar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    color: var(--gold-light);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pos-customer-display__panel {
    display: grid;
    place-items: center;
    align-content: center;
    gap: clamp(1.1rem, 2vw, 1.7rem);
    min-height: 0;
    overflow: hidden;
    padding: clamp(1rem, 3vw, 2.5rem);
    text-align: center;
}

.pos-customer-display__panel .bb-icon {
    width: clamp(3rem, 7vw, 5rem);
    height: clamp(3rem, 7vw, 5rem);
    color: var(--gold-light);
}

.pos-customer-display__panel h1,
.pos-customer-display__hero h1,
.pos-customer-display__review-copy h1 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8.5rem);
    line-height: 0.88;
    text-transform: uppercase;
}

.pos-customer-display__panel p,
.pos-customer-display__hero p,
.pos-customer-display__review-copy p {
    margin: 0;
    color: rgba(240, 236, 228, 0.76);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.pos-customer-display__idle {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
    justify-items: stretch;
    text-align: left;
}

.pos-customer-display__sunbed {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.25rem);
    min-height: clamp(7rem, 18vw, 11rem);
    padding: clamp(1rem, 2.4vw, 1.7rem);
    border: 1px solid rgba(226, 197, 90, 0.42);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.16), rgba(191, 146, 91, 0.08)),
        rgba(255, 255, 255, 0.035);
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
}

.pos-customer-display__sunbed .bb-icon {
    flex: 0 0 auto;
    width: clamp(2.25rem, 5vw, 3.6rem);
    height: clamp(2.25rem, 5vw, 3.6rem);
    color: var(--gold-light);
}

.pos-customer-display__sunbed strong,
.pos-customer-display__payment strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.8vw, 4rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.pos-customer-display__sunbed small {
    display: block;
    margin-top: 0.35rem;
    color: rgba(240, 236, 228, 0.7);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.pos-customer-display__sunbed-screen {
    min-height: 0;
    overflow: hidden;
}

.pos-customer-display__sunbed-screen iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    background: #080808;
}

.pos-customer-display__promo {
    position: fixed;
    inset: clamp(0.75rem, 1.5vw, 1.25rem);
    top: calc(clamp(0.75rem, 1.5vw, 1.25rem) + clamp(4.4rem, 8vw, 6.2rem) + clamp(0.75rem, 1.4vw, 1.2rem));
    z-index: 12;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.36);
    background:
        radial-gradient(circle at 20% 20%, rgba(226, 197, 90, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(6, 6, 6, 0.84), rgba(25, 20, 14, 0.92));
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.pos-customer-display__promo-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.pos-customer-display__promo-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(1rem, 2.6vw, 2rem);
    align-items: center;
    width: min(94%, 76rem);
    max-height: 90%;
    padding: clamp(0.9rem, 2vw, 1.5rem);
    pointer-events: none;
}

.pos-customer-display__promo-media {
    min-height: clamp(19rem, 45vw, 32rem);
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background: rgba(0, 0, 0, 0.34);
}

.pos-customer-display__promo-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pos-customer-display__promo-copy {
    display: grid;
    gap: clamp(0.75rem, 1.8vw, 1.2rem);
}

.pos-customer-display__promo-copy h1 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.86;
    text-transform: uppercase;
}

.pos-customer-display__promo-copy p {
    margin: 0;
    color: rgba(240, 236, 228, 0.78);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.pos-customer-display__promo-cta {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    min-height: 3.8rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(226, 197, 90, 0.45);
    background: rgba(226, 197, 90, 0.14);
    color: var(--gold-light);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pos-customer-display__review {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 31rem);
    gap: clamp(1rem, 2.6vw, 2rem);
    align-items: center;
    min-height: 0;
    overflow: hidden;
    padding: clamp(1rem, 3vw, 2.4rem);
}

.pos-customer-display__review-copy {
    display: grid;
    gap: clamp(0.8rem, 1.7vw, 1.2rem);
}

.pos-customer-display__review-copy h1 {
    font-size: clamp(4rem, 9vw, 8rem);
}

.pos-customer-display__review-copy strong {
    color: var(--gold-light);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pos-customer-display__review-card {
    display: grid;
    min-height: clamp(21rem, 46vw, 34rem);
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.34);
    background:
        radial-gradient(circle at 50% 30%, rgba(226, 197, 90, 0.14), transparent 46%),
        rgba(0, 0, 0, 0.28);
}

.pos-customer-display__review-media,
.pos-customer-display__review-fallback {
    min-height: 100%;
}

.pos-customer-display__review-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.96);
}

.pos-customer-display__review-fallback {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    color: rgba(240, 236, 228, 0.72);
    text-align: center;
}

.pos-customer-display__review-fallback .bb-icon {
    width: clamp(3rem, 7vw, 5rem);
    height: clamp(3rem, 7vw, 5rem);
    color: var(--gold-light);
}

.pos-customer-display__review-fallback strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.pos-customer-display__sale {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(0.75rem, 1.4vw, 1rem);
    min-height: 0;
    overflow: hidden;
    padding: clamp(0.8rem, 1.6vw, 1.2rem);
}

.pos-customer-display__hero {
    display: grid;
    gap: 0.4rem;
    padding: clamp(0.75rem, 1.5vw, 1rem);
}

.pos-customer-display__hero h1 {
    font-size: clamp(3rem, 6.8vw, 6.8rem);
}

.pos-customer-display__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 28rem);
    gap: clamp(0.75rem, 1.4vw, 1rem);
    min-height: 0;
}

.pos-customer-display__items,
.pos-customer-display__totals {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    padding: clamp(0.85rem, 1.8vw, 1.25rem);
}

.pos-customer-display__items {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.8rem;
}

.pos-customer-display__items h2 {
    margin: 0;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.pos-customer-display__item-list {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.25rem;
    -webkit-overflow-scrolling: touch;
}

.pos-customer-display__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: clamp(4.6rem, 8.2vw, 6.4rem);
    padding: clamp(0.8rem, 1.8vw, 1.1rem);
    border: 1px solid rgba(226, 197, 90, 0.16);
    background: rgba(6, 6, 6, 0.34);
}

.pos-customer-display__item strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.4vw, 3rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.pos-customer-display__item span,
.pos-customer-display__payment small {
    display: block;
    margin-top: 0.25rem;
    color: rgba(240, 236, 228, 0.66);
    font-size: clamp(0.95rem, 1.45vw, 1.15rem);
}

.pos-customer-display__item small {
    color: var(--gold-light);
    font-size: clamp(1.2rem, 2.6vw, 2rem);
    font-weight: 900;
    white-space: nowrap;
}

.pos-customer-display__totals {
    display: grid;
    align-content: end;
    gap: clamp(0.8rem, 1.7vw, 1.2rem);
}

.pos-customer-display__totals dl {
    display: grid;
    gap: 0.45rem;
    margin: 0;
}

.pos-customer-display__totals dl > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(226, 197, 90, 0.14);
}

.pos-customer-display__totals dt,
.pos-customer-display__payment span {
    color: rgba(240, 236, 228, 0.78);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pos-customer-display__totals dd {
    margin: 0;
    color: var(--text-primary);
    font-weight: 900;
}

.pos-customer-display__total dd {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
}

.pos-customer-display__payment {
    display: grid;
    gap: 0.45rem;
    padding: clamp(0.9rem, 1.8vw, 1.25rem);
    border: 1px solid rgba(226, 197, 90, 0.26);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.16), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.03);
}

.pos-customer-display__tip-button {
    display: grid;
    gap: 0.2rem;
    min-height: 5rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.42);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.2), rgba(191, 146, 91, 0.1)),
        rgba(255, 255, 255, 0.035);
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.pos-customer-display__tip-button:hover,
.pos-customer-display__tip-button:focus-visible {
    border-color: rgba(226, 197, 90, 0.74);
    background-color: rgba(226, 197, 90, 0.12);
    outline: none;
}

.pos-customer-display__tip-button span {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.pos-customer-display__tip-button small {
    color: rgba(240, 236, 228, 0.72);
    font-size: clamp(0.95rem, 1.45vw, 1.15rem);
}

.pos-customer-display__tip-modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: clamp(0.85rem, 2vw, 1.5rem);
}

.pos-customer-display__tip-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.pos-customer-display__tip-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(0.85rem, 1.8vw, 1.25rem);
    width: min(100%, 42rem);
    max-height: calc(100svh - 2rem);
    overflow-y: auto;
    padding: clamp(1rem, 2.4vw, 1.6rem);
    border: 1px solid rgba(226, 197, 90, 0.34);
    background:
        radial-gradient(circle at 85% 12%, rgba(226, 197, 90, 0.18), transparent 30%),
        linear-gradient(145deg, #11100d, #050505);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.pos-customer-display__tip-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
}

.pos-customer-display__tip-head h2 {
    margin: 0.35rem 0 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.pos-customer-display__tip-head p {
    margin: 0.45rem 0 0;
    color: rgba(240, 236, 228, 0.72);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.pos-customer-display__tip-close {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.8rem;
}

.pos-customer-display__tip-amount {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 5.4rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background: rgba(0, 0, 0, 0.34);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 8vw, 5.5rem);
    line-height: 0.9;
}

.pos-customer-display__tip-presets,
.pos-customer-display__tip-keypad,
.pos-customer-display__tip-actions {
    display: grid;
    gap: 0.65rem;
}

.pos-customer-display__tip-presets {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pos-customer-display__tip-keypad {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pos-customer-display__tip-presets button,
.pos-customer-display__tip-keypad button,
.pos-customer-display__tip-actions button {
    min-height: 4.25rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pos-customer-display__tip-presets button,
.pos-customer-display__tip-actions button:last-child {
    background: rgba(226, 197, 90, 0.16);
    color: var(--gold-light);
}

.pos-customer-display__tip-actions {
    grid-template-columns: 0.8fr 1.2fr;
}

.pos-customer-display__tip-message {
    margin: 0;
    color: var(--gold-light);
    font-weight: 800;
}

.pos-customer-display__tip-message.is-error {
    color: #ffb4a8;
}

.pos-customer-display__tip-actions button:disabled,
.pos-customer-display__tip-actions button.is-busy {
    cursor: wait;
    opacity: 0.64;
}

.pos-customer-display__empty {
    display: grid;
    place-items: center;
    gap: 0.4rem;
    min-height: 10rem;
    color: rgba(240, 236, 228, 0.74);
    text-align: center;
}

.pos-customer-display__empty strong {
    color: var(--text-primary);
}

.customer-display-admin-guide {
    margin-top: 1rem;
}

.customer-display-promo-list {
    display: grid;
    gap: 0.75rem;
}

.customer-display-promo-row {
    display: grid;
    grid-template-columns: 9.5rem minmax(0, 1fr) auto auto;
    gap: 0.9rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.035)),
        rgba(255, 255, 255, 0.02);
}

.customer-display-promo-row__image,
.customer-display-promo-current {
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(0, 0, 0, 0.28);
}

.customer-display-promo-row__image {
    aspect-ratio: 16 / 9;
}

.customer-display-promo-row__image img,
.customer-display-promo-current img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-display-promo-row__main {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.customer-display-promo-row__main strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.customer-display-promo-row__main small {
    color: rgba(240, 236, 228, 0.68);
}

.customer-display-promo-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.customer-display-promo-current {
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
}

.customer-display-promo-form .accounting-upload {
    margin-top: 0;
}

.customer-display-review-admin {
    display: grid;
    grid-template-columns: minmax(15rem, 22rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.customer-display-review-admin__preview {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.65rem;
    min-height: 17rem;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.035)),
        rgba(255, 255, 255, 0.02);
    color: rgba(240, 236, 228, 0.72);
    text-align: center;
}

.customer-display-review-admin__preview img {
    display: block;
    width: 100%;
    max-height: 24rem;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
}

.customer-display-review-admin__preview .bb-icon {
    width: 3rem;
    height: 3rem;
    color: var(--gold-light);
}

.customer-display-review-admin__preview strong {
    color: var(--text-primary);
}

.admin-schedule-drawer__foot-actions {
    display: flex;
    gap: 0.65rem;
    justify-content: flex-end;
}

.admin-pagination nav {
    width: 100%;
}

.admin-pagination nav > div:first-child {
    display: none;
}

.admin-pagination nav > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.admin-pagination nav a,
.admin-pagination nav span {
    color: rgba(240, 236, 228, 0.7);
}

@media (max-width: 1180px) {
    .pos-kiosk__workspace {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 24rem);
    }

    .pos-customer-display__layout {
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 23rem);
    }

    .admin-filter-bar--pos-sales,
    .admin-filter-bar--pos-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .accounting-export-layout,
    .accounting-kpis--export {
        grid-template-columns: 1fr 1fr;
    }

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

    .admin-filter-bar--pos-sales .admin-filter-bar__actions,
    .admin-filter-bar--pos-products .admin-filter-bar__actions,
    .accounting-export-filter .admin-filter-bar__actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .pos-kiosk-page,
    .pos-customer-display-page {
        overflow: auto;
    }

    .pos-kiosk {
        height: auto;
        min-height: 100svh;
    }

    .pos-kiosk__topbar {
        position: sticky;
        top: 0;
        z-index: 30;
        grid-template-columns: minmax(7.5rem, 1fr) auto auto;
        gap: 0.45rem;
        padding: 0.48rem 0.55rem;
    }

    .pos-kiosk__brand {
        width: min(100%, 10.5rem);
    }

    .pos-kiosk__register {
        display: none;
    }

    .pos-kiosk__top-actions [data-pos-sales-link] {
        display: none;
    }

    .pos-kiosk__top-actions .admin-button,
    .pos-kiosk__staff {
        min-height: 2.8rem;
        padding: 0.6rem 0.75rem;
    }

    .pos-kiosk__top-actions [data-pos-open-customer-display] {
        display: none;
    }

    .pos-kiosk__workspace {
        grid-template-columns: 1fr;
        overflow: visible;
        padding: 0.65rem;
    }

    .pos-kiosk__catalogue,
    .pos-kiosk__cart {
        min-height: auto;
        padding: 0.75rem;
    }

    .pos-kiosk:not(.has-pos-cart) .pos-kiosk__cart {
        display: none;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__workspace {
        padding-bottom: 18rem;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__cart {
        position: fixed;
        right: 0.65rem;
        bottom: 0.65rem;
        left: 0.65rem;
        z-index: 50;
        max-height: 58svh;
        overflow-y: auto;
        gap: 0.65rem;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
    }

    .pos-kiosk__section-head {
        align-items: stretch;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__cart-head {
        order: 1;
        align-items: center;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__cart-head h2 {
        font-size: clamp(1.65rem, 6vw, 2.2rem);
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__cart-list {
        order: 2;
        max-height: 8.5rem;
    }

    .pos-kiosk.has-pos-cart .pos-customer-chip {
        order: 3;
        min-height: 3.35rem;
        padding: 0.6rem;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__notes {
        display: none;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__totals {
        order: 4;
        gap: 0.2rem;
        padding-top: 0.45rem;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__totals div:not(.pos-kiosk__total-row) {
        display: none;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__total-row {
        align-items: center;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__total-row dd {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__checkout {
        order: 5;
        min-height: 3.35rem;
    }

    .pos-kiosk__section-head h1,
    .pos-kiosk__cart-head h2,
    .pos-modal__panel h2,
    .pos-kiosk-empty h1 {
        font-size: clamp(1.85rem, 7vw, 2.65rem);
    }

    .pos-kiosk__category-strip button {
        min-height: 2.65rem;
        padding: 0.55rem 0.75rem;
        font-size: 0.76rem;
    }

    .pos-security-grid,
    .pos-device-row {
        grid-template-columns: 1fr;
    }

    .manual-sale-line,
    .admin-manual-sale__summary {
        grid-template-columns: 1fr;
    }

    .manual-sale-line .admin-button,
    .admin-manual-sale__summary .admin-button {
        width: 100%;
    }

    .admin-section-head__actions {
        justify-content: stretch;
        width: 100%;
    }

    .admin-section-head__actions .admin-button,
    .admin-section-head__actions .admin-badge {
        width: 100%;
        justify-content: center;
    }

    .accounting-kpis {
        grid-template-columns: 1fr;
    }

    .accounting-kpis--export,
    .accounting-export-layout,
    .accounting-export-filter {
        grid-template-columns: 1fr;
    }

    .accounting-receipt-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .pos-device-row__actions {
        justify-content: stretch;
    }

    .pos-device-row__actions form,
    .pos-device-row__actions .admin-button,
    .pos-security-panel .admin-button {
        width: 100%;
    }

    .pos-customer-display {
        height: auto;
        min-height: 100svh;
        padding: 0.65rem;
    }

    .pos-customer-display__topbar {
        min-height: 4rem;
        padding: 0.55rem 0.65rem;
    }

    .pos-customer-display__topbar img {
        width: min(12rem, 58vw);
    }

    .pos-customer-display__topbar span {
        min-height: 2.4rem;
        padding: 0.5rem 0.65rem;
        font-size: 0.72rem;
    }

    .pos-customer-display__idle,
    .pos-customer-display__layout,
    .pos-customer-display__review,
    .customer-display-review-admin {
        grid-template-columns: 1fr;
    }

    .pos-customer-display__panel h1,
    .pos-customer-display__hero h1,
    .pos-customer-display__review-copy h1 {
        font-size: clamp(3rem, 16vw, 5.2rem);
    }

    .pos-customer-display__panel {
        min-height: calc(100svh - 5.5rem);
    }

    .pos-customer-display__sunbed-screen {
        min-height: calc(100svh - 5.5rem);
    }

    .pos-customer-display__promo {
        inset: 0.65rem;
        top: 5.3rem;
    }

    .pos-customer-display__promo-card {
        grid-template-columns: 1fr;
        width: 100%;
        max-height: 100%;
        overflow-y: auto;
    }

    .pos-customer-display__promo-media {
        min-height: clamp(13rem, 48vw, 22rem);
    }

    .pos-customer-display__promo-copy h1 {
        font-size: clamp(2.6rem, 14vw, 4.8rem);
    }

    .pos-customer-display__promo-cta {
        width: 100%;
        min-height: 3.5rem;
    }

    .pos-customer-display__sale {
        overflow: visible;
    }

    .pos-customer-display__item-list {
        max-height: 42svh;
    }

    .pos-customer-display__review {
        overflow-y: auto;
    }

    .pos-customer-display__review-card {
        min-height: clamp(16rem, 58vw, 25rem);
    }

    .pos-customer-display__tip-presets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pos-customer-display__tip-actions {
        grid-template-columns: 1fr;
    }

    .pos-kiosk__product-grid {
        --pos-product-tile-height: 10.1rem;
        grid-auto-rows: var(--pos-product-tile-height);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        overflow: visible;
        padding-bottom: 0.75rem;
    }

    .pos-kiosk.is-pos-all-category .pos-kiosk__product-grid {
        --pos-product-tile-height: 10.45rem;
        gap: 0.95rem;
    }

    .pos-product-tile {
        gap: 0.45rem;
        height: var(--pos-product-tile-height);
        min-height: 0;
        padding: 0.75rem;
    }

    .pos-kiosk.is-pos-all-category .pos-product-tile {
        height: var(--pos-product-tile-height);
    }

    .pos-product-tile strong {
        font-size: clamp(1rem, 4.2vw, 1.32rem);
    }

    .pos-product-tile span,
    .pos-product-tile small {
        font-size: 0.64rem;
    }

    .pos-product-tile small {
        padding-top: 0.4rem;
    }

    .pos-payment-grid {
        grid-template-columns: 1fr;
    }

    .pos-modal {
        align-items: end;
        padding: 0;
    }

    .customer-display-promo-row {
        grid-template-columns: 6.5rem minmax(0, 1fr);
    }

    .customer-display-promo-row__meta,
    .customer-display-promo-row .admin-table-open-button {
        grid-column: 1 / -1;
        justify-content: stretch;
        width: 100%;
    }

    .customer-display-promo-row .admin-table-open-button,
    .admin-schedule-drawer__foot-actions,
    .admin-schedule-drawer__foot-actions .admin-button {
        width: 100%;
    }

    .admin-schedule-drawer__foot-actions {
        flex-direction: column;
    }

    .pos-modal__panel {
        width: 100%;
        max-height: 88svh;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        transform: translateY(100%);
    }

    .pos-modal.is-open .pos-modal__panel {
        transform: translateY(0);
    }

    .pos-modal__panel::before {
        content: "";
        justify-self: center;
        width: 3.2rem;
        height: 0.25rem;
        border-radius: 999px;
        background: rgba(226, 197, 90, 0.44);
    }

    .pos-modal__panel--pin {
        align-self: center;
        width: min(100% - 1.5rem, 30rem);
        max-height: calc(100svh - 1.5rem);
        border: 1px solid rgba(226, 197, 90, 0.28);
        transform: translateY(1rem);
    }

    .admin-filter-bar--pos-sales,
    .admin-filter-bar--pos-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .pos-kiosk__topbar {
        grid-template-columns: minmax(7rem, 1fr) auto auto;
    }

    .pos-kiosk__brand {
        width: min(100%, 9.6rem);
    }

    .pos-kiosk__staff {
        min-width: 3rem;
        padding-inline: 0.75rem;
    }

    .pos-kiosk__staff span:last-child {
        display: none;
    }

    .pos-kiosk__section-head,
    .pos-kiosk__cart-head,
    .pos-modal__actions,
    .pos-payment-total {
        display: grid;
        justify-content: stretch;
    }

    .pos-kiosk.has-pos-cart .pos-kiosk__cart-head {
        display: flex;
        justify-content: space-between;
    }

    .pos-modal__actions .admin-button {
        width: 100%;
    }
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/raleway-300-400-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/raleway-300-400-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/barlow-condensed-700-latin.woff2') format('woff2');
}

:root {
    --font-body: 'Raleway', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --bs-body-font-family: var(--font-body);
    --bs-info-light: #e2c55a;
    --bs-info-dim: rgba(201, 162, 39, 0.15);
    --border-subtle: rgba(201, 162, 39, 0.2);
    --bs-info-light: #e2c55a;
    --bg-card: #161616;
    --bg-dark: #0e0e0e;

    --bg-card-hover: #1e1e1e;
    --gold: #bf925b;
    --gold-light: #e2c55a;
    --gold-dim: rgba(201, 162, 39, 0.15);
    --text-primary: #f0ece4;
    --text-muted: #8a8578;
    --border-subtle: rgba(201, 162, 39, 0.2);
    --navbar-h: 70px;
}

@media (min-width: 992px) {
    :root {
        --navbar-h: 87px;
    }
}





















/* ─── Base ─── */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--bg-dark);
    color: var(--bs-secondary-color);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
}

.bb-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-image: var(--bb-icon);
    mask-image: var(--bb-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.bb-icon--arrow-right {
    --bb-icon: url('/assets/icons/arrow-right.svg');
}

.bb-icon--balance-scale {
    --bb-icon: url('/assets/icons/balance-scale.svg');
}

.bb-icon--bars {
    --bb-icon: url('/assets/icons/bars.svg');
}

.bb-icon--bell {
    --bb-icon: url('/assets/icons/bell.svg');
}

.bb-icon--calendar {
    --bb-icon: url('/assets/icons/calendar.svg');
}

.bb-icon--check-circle {
    --bb-icon: url('/assets/icons/check-circle.svg');
}

.bb-icon--check {
    --bb-icon: url('/assets/icons/check.svg');
}

.bb-icon--chevron-down {
    --bb-icon: url('/assets/icons/chevron-down.svg');
}

.bb-icon--chevron-left {
    --bb-icon: url('/assets/icons/chevron-left.svg');
}

.bb-icon--chevron-right {
    --bb-icon: url('/assets/icons/chevron-right.svg');
}

.bb-icon--cookie-bite {
    --bb-icon: url('/assets/icons/cookie-bite.svg');
}

.bb-icon--door-open {
    --bb-icon: url('/assets/icons/door-open.svg');
}

.bb-icon--envelope {
    --bb-icon: url('/assets/icons/envelope.svg');
}

.bb-icon--eye {
    --bb-icon: url('/assets/icons/eye.svg');
}

.bb-icon--eye-slash {
    --bb-icon: url('/assets/icons/eye-slash.svg');
}

.bb-icon--external-link {
    --bb-icon: url('/assets/icons/external-link.svg');
}

.bb-icon--facebook {
    --bb-icon: url('/assets/icons/facebook.svg');
}

.bb-icon--info-circle {
    --bb-icon: url('/assets/icons/info-circle.svg');
}

.bb-icon--instagram {
    --bb-icon: url('/assets/icons/instagram.svg');
}

.bb-icon--map-pin {
    --bb-icon: url('/assets/icons/map-pin.svg');
}

.bb-icon--parking {
    --bb-icon: url('/assets/icons/parking.svg');
}

.bb-icon--phone {
    --bb-icon: url('/assets/icons/phone.svg');
}

.bb-icon--scissors {
    --bb-icon: url('/assets/icons/scissors.svg');
}

.bb-icon--shield {
    --bb-icon: url('/assets/icons/shield.svg');
}

.bb-icon--shopping-bag {
    --bb-icon: url('/assets/icons/shopping-bag.svg');
}

.bb-icon--spa {
    --bb-icon: url('/assets/icons/spa.svg');
}

.bb-icon--star {
    --bb-icon: url('/assets/icons/star.svg');
}

.bb-icon--sun {
    --bb-icon: url('/assets/icons/sun.svg');
}

.bb-icon--trash {
    --bb-icon: url('/assets/icons/trash.svg');
}

.bb-icon--xmark {
    --bb-icon: url('/assets/icons/xmark.svg');
}

.bb-icon--user {
    --bb-icon: url('/assets/icons/user.svg');
}

.bb-icon--user-circle {
    --bb-icon: url('/assets/icons/user-circle.svg');
}

.bb-icon--search {
    --bb-icon: url('/assets/icons/search.svg');
}

.bb-icon--user-tie {
    --bb-icon: url('/assets/icons/user-tie.svg');
}

.bb-icon--whatsapp {
    --bb-icon: url('/assets/icons/whatsapp.svg');
}

/* ─── Navbar (transparent initially, opaque on scroll) ─── */
.navbar {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(14, 14, 14, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-subtle);
}

/* Constrain navbar content to container width on desktop */
.navbar .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-brand {
    position: relative;
    z-index: 1001;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 35px;
    width: auto;
    transition: opacity 0.3s, height 0.3s;
}

@media (min-width: 992px) {
    .navbar-brand img {
        height: 55px;
    }
}

.navbar-brand:hover img {
    opacity: 0.85;
}

.public-account-mobile {
    display: none;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.public-account-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    padding: 0;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.public-account-toggle:hover,
.public-account-toggle:focus-visible,
.public-account-toggle.active {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
    color: var(--bs-info-light);
    outline: none;
}

.public-account-toggle .bb-icon {
    font-size: 1.1rem;
}

.public-account-dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    min-width: 190px;
    background: #14120a;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.public-account-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.public-account-dropdown a {
    display: block;
    padding: 0.78rem 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s, color 0.2s;
}

.public-account-dropdown a:last-child {
    border-bottom: none;
}

.public-account-dropdown a:hover,
.public-account-dropdown a:focus-visible {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
    outline: none;
}

.nav-link {
    color: rgba(240, 236, 228, 0.8) !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    transition: color .3s;
}

.navbar.scrolled .nav-link {
    color: var(--text-muted) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bs-info) !important;
}

/* Add these new rules to ensure hover/active work when scrolled */
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--bs-info) !important;
}

/* ─── Custom Hamburger Toggle (Animated) ─── */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: none !important;
}

.hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--bs-info);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ─── Full-Screen Mobile Menu (Slide In/Out) ─── */
@media (max-width: 991px) {
    .navbar .container-fluid {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.75rem;
    }

    .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 0;
    }

    .navbar-brand img {
        width: min(62vw, calc(100vw - 9.5rem), 265px);
        max-width: 100%;
        height: auto;
        max-height: 35px;
    }

    .public-account-mobile {
        display: block;
    }

    .public-account-link--desktop {
        display: none;
    }

    .navbar-toggler {
        margin-left: 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(14, 14, 14, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-collapse.collapsing {
        height: 100vh;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse.collapsing[style*="height: 0px"] {
        transform: translateX(100%);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.05s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 0.5rem 0 !important;
        color: rgba(240, 236, 228, 0.9) !important;
        text-align: left;
        width: 100%;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--bs-info) !important;
    }
}

/* ─── Mobile Menu Social Icons ─── */
.mobile-social {
    display: none;
}

@media (max-width: 991px) {
    .mobile-social {
        display: flex;
        gap: 1.2rem;
        justify-content: flex-start;
        padding: 2rem 0 1rem;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateX(-30px);
    }

    .navbar-collapse.show .mobile-social {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.35s;
    }

    .mobile-social a {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--bs-info-dim);
        border: 1px solid var(--border-subtle);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-info);
        font-size: 1.2rem;
        text-decoration: none;
        transition: background .3s, border-color .3s, transform .3s;
    }

    .mobile-social a:hover {
        background: rgba(201, 162, 39, 0.25);
        border-color: var(--bs-info);
        transform: translateY(-3px);
    }
}






/* ─── Footer (3-column with logo) ─── */
footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border-subtle);
    padding: 3.5rem 1rem 2rem;
}

footer .row {
    margin-bottom: 1rem;
}

footer .col-md-4 {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    footer .col-md-4 {
        margin-bottom: 0;
    }
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 65px;
    width: auto;
    max-width: 100%;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .footer-logo img {
        height: 50px;
    }
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.footer-address p {
    margin-bottom: 0.3rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-info);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color .3s;
}

.footer-phone:hover {
    color: var(--bs-info-light);
}

.footer-phone .bb-icon {
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-info);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background .3s, border-color .3s, transform .3s;
}

.footer-social a:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--bs-info);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--bs-info);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color .3s;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bs-info);
    transition: width .3s;
}

.footer-links a:hover {
    color: var(--bs-info);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.68rem;
    opacity: .5;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}







/* ─── Utility ─── */
.spacer {
    height: 3.2rem;
}

.spacer-sm {
    height: 2rem;
}







/* ─── Section Background Variants ─── */
.section-dark {
    background: var(--bg-dark);
    position: relative;
}

.section-darker {
    background: linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%);
    position: relative;
}

.section-gradient {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.section-subtle {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

/* ═══════════════════════════════════════════════════
           UNIQUE TO HOMEPAGE
           ═══════════════════════════════════════════════════ */
/* --navbar-h: computed height of the fixed navbar */



/* ─── Hero (full-screen parallax version) ─── */
.hero-parallax {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: var(--hero-image-desktop, url('/assets/images/barber-haircut.webp'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 991px) {
    .hero-parallax-bg {
        background-image: var(--hero-image-mobile, var(--hero-image-desktop, url('/assets/images/barber-haircut-800.webp')));
    }
}

@media (max-width: 420px) {
    .navbar {
        padding: 0.85rem 0;
    }

    .navbar .container-fluid {
        padding: 0 0.9rem;
        gap: 0.55rem;
    }

    .navbar-brand img {
        width: min(58vw, calc(100vw - 8.5rem), 238px);
    }
}



.hero-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.3) 0%, rgba(14, 14, 14, 0.7) 100%);
    z-index: 1;
}



.hero-parallax-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    will-change: transform;
}



.hero-parallax .hero-label {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


.hero-parallax h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.hero-parallax .hero-subline {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    font-weight: 300;
    color: rgba(240, 236, 228, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-parallax .hero-rule {
    width: 58px;
    height: 2px;
    background: var(--bs-info);
    margin: 1.8rem auto;
}

.hero-parallax .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--bs-info);
    color: #0e0e0e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.btn-hero-primary:hover {
    background: var(--bs-info-light);
    transform: translateY(-2px);
    color: #0e0e0e;
}

.btn-hero-secondary {
    display: inline-block;
    background: rgba(22, 22, 22, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 236, 228, 0.3);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.8rem 2.2rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s;
}

.btn-hero-secondary:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}








/* ─── --band modifier: 2nd-tier pages only ───────────
           Homepage never uses this class → its 100vh layout is
           completely untouched no matter what stylesheet order. */

.hero-parallax--band {
    height: 32vh;
    min-height: calc(var(--navbar-h) + 180px);
}

.hero-parallax--band .hero-parallax-bg {
    top: -20%;
    height: 140%;
}

.hero-parallax--band .hero-parallax-overlay {
    background: linear-gradient(180deg,
            rgba(14, 14, 14, 0.2) 0%,
            rgba(14, 14, 14, 0.5) 50%,
            rgba(14, 14, 14, 0.82) 100%);
}

/* Content pinned to bottom of the band */
.hero-parallax--band .hero-parallax-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1rem 2.2rem;
    height: auto;
    /* Prevent inheriting 100% height which centers text */
    justify-content: flex-end;
}

.hero-parallax--band .hero-label {
    margin-bottom: 0.8rem;
}

.hero-parallax--band h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0;
}

.hero-parallax--band .hero-rule {
    margin: 1rem auto 0;
}

@media (max-width: 575.98px) {
    .hero-parallax--band {
        height: 28vh;
        min-height: calc(var(--navbar-h) + 150px);
    }

    .hero-parallax--band .hero-parallax-content {
        padding-bottom: 1.6rem;
    }

    .hero-parallax--band h1 {
        font-size: 1.4rem;
    }
}



/* Old hero styles removed, replaced with parallax version above */

/* ─── Services Grid (6 cards) ─── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: border-color .3s, transform .3s;
    height: 100%;
}

.service-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-4px);
}

.service-card .service-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    padding: 0.7rem;
    color: var(--bs-info);
}

.service-card .service-icon .bb-icon {
    font-size: 2rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

/* ─── Welcome Section ─── */
.welcome-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2.5rem 2rem;
}

.welcome-section .welcome-badge {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--bs-info);
    font-weight: 600;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.welcome-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 1.2rem;
}

.welcome-section p {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 0.9rem;
}

.welcome-section .btn-outline {
    display: inline-block;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.6rem 1.5rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s;
    margin-top: 0.8rem;
}

.welcome-section .btn-outline:hover {
    background: var(--bs-info-dim);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}

/* ─── Pricing Card (reused but simplified) ─── */
/* ═══ NEW/UPDATED PRICING CARD STYLES ═══ */

.pricing-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card-v2:hover {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.12);
}

/* Card Header with Icon */
.pricing-card-v2 .card-header-v2 {
    padding: 1.8rem 1.5rem 1.4rem;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.pricing-card-v2 .service-icon-v2 {
    width: 48px;
    height: 48px;
    color: var(--bs-info);
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.3rem;
}

.pricing-card-v2 .service-icon-v2 .bb-icon {
    font-size: 1.25rem;
}

.pricing-card-v2 h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.6rem;
}

.pricing-card-v2 .synopsis {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Price Display - "from" above price */
.pricing-card-v2 .price-display {
    text-align: center;
    margin-bottom: 0;
}

.pricing-card-v2 .from-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.pricing-card-v2 .price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-info);
    line-height: 1;
}

/* List Items with Alternating Backgrounds */
.pricing-card-v2 .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pricing-card-v2 .services-list li {
    padding: 0.7rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: background .3s;
}

/* Alternating backgrounds */
.pricing-card-v2 .services-list li:nth-child(odd) {
    background: rgba(201, 162, 39, 0.03);
}

.pricing-card-v2 .services-list li:nth-child(even) {
    background: transparent;
}

.pricing-card-v2 .services-list li:hover {
    background: rgba(201, 162, 39, 0.08);
}

/* Checkmark icon before each item */
.pricing-card-v2 .services-list li::before {
    content: '';
    width: 0.72rem;
    height: 0.72rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/check.svg') no-repeat center / contain;
    mask: url('/assets/icons/check.svg') no-repeat center / contain;
    flex-shrink: 0;
}

/* Card Footer with Button */
.pricing-card-v2 .card-footer-v2 {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.pricing-card-v2 .btn-more-info {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.65rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.pricing-card-v2 .btn-more-info:hover {
    background: var(--bs-info);
    border-color: var(--bs-info);
    color: #0e0e0e;
    transform: translateY(-1px);
}



/* ─── Gallery Grid ─── */
.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.gallery-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.gallery-item .img-wrap {
    width: 100%;
    min-height: 200px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-item .img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.gallery-item .img-wrap .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--bs-info);
    opacity: .3;
}

.gallery-item .caption {
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--border-subtle);
}

.gallery-item .caption h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.2rem;
}

.gallery-item .caption .tag {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bs-info);
    font-weight: 600;
}

/* ─── Blog Preview Card ─── */
.blog-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-preview:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.blog-preview .blog-img {
    width: 100%;
    min-height: 180px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-preview .blog-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.blog-preview .blog-img i {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    color: var(--bs-info);
    opacity: .3;
}

.blog-preview .blog-content {
    padding: 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-preview .blog-cat {
    display: inline-block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.blog-preview h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

.blog-preview h4 a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: color .25s;
}

.blog-preview h4 a:hover {
    color: var(--bs-info);
}

.blog-preview p {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-preview .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--bs-info);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: gap .25s;
}

.blog-preview .read-more:hover {
    gap: 0.65rem;
}

.blog-preview .read-more .bb-icon {
    font-size: 0.55rem;
}

/* ─── Testimonial Section (Carousel) ─── */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.8rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.testimonial-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.15);
}

.testimonial-card .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-card .stars .bb-icon {
    color: var(--bs-info);
    font-size: 0.85rem;
}

.testimonial-card .quote-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    flex: 1;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-card .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card .author-avatar .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.testimonial-card .author-name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-secondary-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s, border-color .3s;
}

.carousel-btn:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--bs-info);
}

.carousel-btn .bb-icon {
    font-size: 0.85rem;
}

/* ─── Contact Form Section ─── */
.contact-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2.2rem 2rem;
}

.contact-form-section .form-intro {
    margin-bottom: 1.8rem;
}

.contact-form-section .form-intro p {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-form-section .form-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    color: var(--bs-secondary-color);
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
    border-radius: 3px;
    transition: border-color .3s;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    background: var(--bg-dark);
    border-color: var(--bs-info);
    color: var(--bs-secondary-color);
    box-shadow: none;
}

.contact-form-section .btn-submit {
    display: inline-block;
    background: var(--bs-info);
    color: #0e0e0e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 3px;
    transition: background .3s, transform .2s;
    cursor: pointer;
}

.contact-form-section .btn-submit:hover {
    background: var(--bs-info-light);
    transform: translateY(-1px);
}












/* ─── Section Heading ─── */
.section-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.section-heading .label {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.6vw, 1.45rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin-bottom: 0;
}

.section-heading .rule {
    width: 32px;
    height: 2px;
    background: var(--bs-info);
    margin: 0.8rem auto 0;
}

/* ─── Blog Card ─── */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.4rem;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: row;
}

.blog-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 28px rgba(201, 162, 39, 0.08);
    transform: translateY(-2px);
}

/* Image column */
.blog-card .card-img-col {
    width: 240px;
    min-width: 240px;
    background: #121212;
    position: relative;
    overflow: hidden;
}

.blog-card .card-img-col .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
}

/* subtle pattern overlay on image placeholder */
.blog-card .card-img-col .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.blog-card .card-img-col .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    color: var(--bs-info);
    opacity: .35;
}

/* category tag sitting on image */
.blog-card .card-img-col .cat-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1rem 0.7rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.blog-card .card-img-col .cat-tag span {
    display: inline-block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bs-info);
    font-weight: 600;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.28rem 0.55rem;
    border-radius: 2px;
}

/* Content column */
.blog-card .card-body-col {
    flex: 1;
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card .card-body-col h5 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.blog-card .card-body-col h5 a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: color .25s;
}

.blog-card .card-body-col h5 a:hover {
    color: var(--bs-info);
}

.blog-card .card-body-col p {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--bs-info);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: gap .25s, color .25s;
}

.read-more:hover {
    gap: 0.65rem;
    color: var(--bs-info-light);
}

.read-more .bb-icon {
    font-size: 0.55rem;
}

/* ─── Stack on mobile ─── */
@media (max-width: 600px) {
    .blog-card {
        flex-direction: column;
    }

    .blog-card .card-img-col {
        width: 100%;
        min-width: 0;
        min-height: 160px;
    }
}

/* ─── Sidebar ─── */
.sidebar-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.sidebar-panel .panel-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 1.4rem;
}

.sidebar-panel .panel-header .label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.sidebar-panel .panel-header h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

.sidebar-panel .panel-body {
    padding: 1.2rem 1.4rem;
}

/* Contact list in sidebar */
.sb-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.sb-contact-row:last-child {
    border-bottom: none;
}

.sb-contact-row .sb-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sb-contact-row .sb-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.7rem;
}

.sb-contact-row .sb-text .sb-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.sb-contact-row .sb-text .sb-value {
    color: var(--bs-secondary-color);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
}

.sb-contact-row .sb-text .sb-value a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: color .25s, border-color .25s;
}

.sb-contact-row .sb-text .sb-value a:hover {
    color: var(--bs-info);
    border-color: var(--bs-info);
}

/* Hours rows in sidebar */
.sb-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.42rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.sb-hours-row:last-child {
    border-bottom: none;
}

.sb-hours-row .day {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sb-hours-row .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bs-info);
    flex-shrink: 0;
}

.sb-hours-row .time {
    color: var(--bs-secondary-color);
    font-size: 0.72rem;
    font-weight: 500;
}

.sb-hours-row.closed .dot {
    background: #3a3a3a;
}

.sb-hours-row.closed .day {
    opacity: .5;
}

.sb-hours-row.closed .time {
    color: #5a4a4a;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* WhatsApp btn */
.btn-wa-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s;
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
}

.btn-wa-inline:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}




/* ─── Legal intro bar ─── */
.legal-intro {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.legal-intro .intro-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-intro .intro-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.legal-intro .intro-text {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
}

.legal-intro .intro-text strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

/* ─── Legal Section Block ─── */
.legal-block {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color .3s;
}

.legal-block:hover {
    border-color: rgba(201, 162, 39, 0.35);
}

/* header row */
.legal-block .block-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-block .block-header .block-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bs-info);
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-block .block-header h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

/* body text */
.legal-block .block-body {
    padding: 1.3rem 1.6rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.9;
}

.legal-block .block-body strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

.legal-block .block-body a {
    color: var(--bs-info);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color .25s;
}

.legal-block .block-body a:hover {
    border-color: var(--bs-info);
}




/* styled list inside a .block-body */
.block-body ul.rights-list {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 0;
}

.block-body ul.rights-list li {
    position: relative;
    padding: 0.46rem 0 0.46rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
}

.block-body ul.rights-list li:last-child {
    border-bottom: none;
}

/* gold chevron bullet */
.block-body ul.rights-list li::before {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/chevron-right.svg') no-repeat center / contain;
    mask: url('/assets/icons/chevron-right.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* "last updated" date tag inside intro */
.legal-intro .intro-date {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bs-info);
    font-weight: 600;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.22rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

/* subsection styling inside block-body */
.block-body h4 {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin: 1.2rem 0 0.5rem;
}

.block-body h4:first-child {
    margin-top: 0;
}














/* ═══════════════════════════════════════════════════
           PAGE INTRO  —  article variant
           
           Base .page-intro is the same card + glow block used
           on standard pages (contact, pricing, etc).
           
           .page-intro--article adds three things inside that block:
             1. Breadcrumbs  — top-left, understated nav trail
             2. img-wrap     — the article's featured image placeholder,
                               flush edge-to-edge inside the card (no
                               extra border / outer card wrapper)
             3. Intro text   — the article opening paragraph, sits
                               below the image inside the same glow
           
           This replaces both the old standalone .featured-image card
           AND the .article-intro block that used to live at the top
           of .article-body.  The article body now starts clean with
           its first <h2>.
           ═══════════════════════════════════════════════════ */

/* ── base page-intro (shared with standard pages) ── */
.page-intro {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.page-intro::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.14) 0%, transparent 75%);
    pointer-events: none;
}

/* ── article-specific layout inside page-intro ── */
.page-intro--article {
    padding: 0;
    /* children handle their own spacing */
}

/* Breadcrumb row — sits at the very top of the block */
.page-intro--article .breadcrumb-row {
    position: relative;
    z-index: 1;
    padding: 1.4rem 0 0;
    /* left/right handled by .container */
}

.page-intro--article .breadcrumb {
    margin: 0;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.page-intro--article .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .25s;
}

.page-intro--article .breadcrumb-item a:hover {
    color: var(--gold);
}

.page-intro--article .breadcrumb-item.active {
    color: var(--gold);
    font-weight: 600;
}

.page-intro--article .breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted);
    content: '›';
    opacity: .5;
}

/* ── img + intro row ────────────────────────────────
           Desktop (≥576px): flex row — image left, text right.
           Mobile (<576px):  stacks back to image on top, text below.
           .img-intro-row is the flex container that wraps both. */
.page-intro--article .img-intro-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-top: 1.2rem;
}

/* img-wrap — left column on desktop */
.page-intro--article .img-wrap {
    flex: 0 0 38%;
    min-width: 0;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.page-intro--article .img-wrap[style] {
    background-size: cover;
    background-position: center;
}

/* grid overlay — visible only when there's no real image */
.page-intro--article .img-wrap .img-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-intro--article .img-wrap .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: .3;
}

/* right-edge fade on desktop — blends image into the card bg
           beside it */
.page-intro--article .img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-card));
    pointer-events: none;
}

/* Intro text — right column on desktop */
.page-intro--article .article-intro {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    padding: 1.8rem 0 1.8rem 1.6rem;
    /* left gap only — separates text from image edge */
    text-align: left;
    display: flex;
    align-items: center;
}

/* ── mobile: stack image on top, text below ── */
@media (max-width: 575.98px) {
    .page-intro--article .breadcrumb-row {
        padding: 1.1rem 0 0;
    }

    .page-intro--article .img-intro-row {
        flex-direction: column;
    }

    .page-intro--article .img-wrap {
        flex: none;
        width: 100%;
        height: 200px;
        min-height: 0;
    }

    /* on mobile the fade switches to bottom edge */
    .page-intro--article .img-wrap::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(transparent, var(--bg-card));
    }

    .page-intro--article .article-intro {
        padding: 1.2rem 0 1.6rem;
        font-size: 0.82rem;
    }
}







/* ─── Article Body ─── */
.article-body {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2rem 2.2rem;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin: 2rem 0 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-subtle);
}

.article-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.article-body p strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

/* Bullet lists in article (from privacy-policy.html) */
.article-body ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}

.article-body ul li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
}

.article-body ul li::before {
    content: '';
    width: 0.62rem;
    height: 0.62rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/check.svg') no-repeat center / contain;
    mask: url('/assets/icons/check.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 0.55rem;
}













.hero {
    position: relative;
    text-align: center;
    padding: 3.2rem 1rem 1.8rem;
    /* was 6rem 1rem 4.5rem */
    background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    /* was clamp(2rem, 5vw, 3rem) */
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0;
    /* rule sits right on it */
    line-height: 1.2;
}

.hero-rule {
    width: 48px;
    height: 2px;
    background: var(--bs-info);
    margin: 1rem auto 0;
    /* was 1.4rem auto 1.6rem */
}









/* ═══════════════════════════════════════════════════
           PAGE INTRO  —  NEW
           This is the merged block.  Visually it reads as the
           bottom half of the hero band because:
             • no top spacer — it sits flush under .hero
             • background continues the dark-to-card gradient
             • the radial glow bleeds down from ::before above
           The intro <p> that used to live inside .hero lives here.
           The old first .section-heading ("01 How to Reach Us")
           has been removed — it was redundant.
           ═══════════════════════════════════════════════════ */
.page-intro {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    padding: 2.2rem 1rem 2.4rem;
    text-align: center;
}

/* soft radial glow — same family as .hero::before, anchored to top
           so it visually bleeds upward and merges the two bands */
.page-intro::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.14) 0%, transparent 75%);
    pointer-events: none;
}

.page-intro p {
    position: relative;
    /* above the glow */
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto;
}

/* ─── mobile tweak for hero + intro ─── */
@media (max-width: 575.98px) {
    .hero {
        padding: 2.2rem 1rem 1.2rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .page-intro {
        padding: 1.6rem 1rem 1.8rem;
    }

    .page-intro p {
        font-size: 0.82rem;
    }
}





/* ─── CTA strip ─── */
.cta-strip {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    padding: 3.5rem 1rem;
}

.cta-strip h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.5rem;
}

.cta-strip p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 1.4rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold {
    display: inline-block;
    background: var(--bs-info);
    color: #0e0e0e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--bs-info-light);
    transform: translateY(-1px);
}







/* ─── Contact Info Cards ─── */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2rem 1.6rem;
    text-align: center;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 24px rgba(201, 162, 39, 0.08);
    transform: translateY(-3px);
}

.contact-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.contact-card .icon-wrap .bb-icon {
    color: var(--bs-info);
    font-size: 1.15rem;
}

.contact-card .card-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card .card-value {
    color: var(--bs-secondary-color);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
}

.contact-card .card-value a {
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: color .25s, border-color .25s;
}

.contact-card .card-value a:hover {
    color: var(--bs-info);
    text-decoration: none;
}






/* ─── Hours & Info Two-Col ─── */
.info-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
}

.info-panel-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.6rem 1.8rem;
}

.info-panel-header .label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.info-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

.info-panel-body {
    padding: 1.6rem 1.8rem;
}

/* ─── Hours Table ─── */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.62rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hours-row .time {
    font-size: 0.8rem;
    font-weight: 500;
}

.hours-row.closed .day {
    color: var(--text-muted);
    opacity: 0.5;
}

.hours-row.closed .time {
    color: #5a4a4a;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* gold dot beside open days */
.hours-row .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-info);
    margin-right: 0.7rem;
    flex-shrink: 0;
}

.hours-row.closed .dot {
    background: #3a3a3a;
}

/* ─── "Here for you" blurb inside panel ─── */
.here-for-you {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.here-for-you a {
    color: var(--bs-info);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color .25s;
}

.here-for-you a:hover {
    border-color: var(--bs-info);
}




/* ─── Map placeholder ─── */
.map-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.map-placeholder .map-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.map-placeholder .map-header .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.map-placeholder .map-header span {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bs-info);
    font-weight: 600;
}










/* ─── FAQ accordion wrapper ─── */
.faq-block {
    max-width: 740px;
    margin: 0 auto 3.5rem;
}

/* ─── Accordion Item ─── */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:hover {
    border-color: rgba(201, 162, 39, 0.38);
    box-shadow: 0 2px 18px rgba(201, 162, 39, 0.06);
}

/* ─── Accordion Header / Button ─── */
.accordion-header {
    margin: 0;
}

.accordion-button {
    background: transparent;
    font-weight: 500;
    padding: 1.1rem 1.25rem 1.1rem 1rem;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: background .25s, color .25s;
}

.accordion-button:not(.collapsed) {
    background: var(--bs-info-dim);
    color: var(--bs-info-light);
}

/* gold left-bar on open item */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 3px solid var(--bs-info);
}

/* custom chevron icon – rotate on open */
.accordion-button::after {
    background-image: none !important;
    content: '';
    width: 0.72rem;
    height: 0.72rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/chevron-down.svg') no-repeat center / contain;
    mask: url('/assets/icons/chevron-down.svg') no-repeat center / contain;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform .35s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* ─── Accordion Body ─── */
.accordion-body {
    padding: 0 1.25rem 1.2rem 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    border-top: 1px solid var(--border-subtle);
    margin: 0 1.25rem;
    padding-top: 1rem;
    text-align: left;
}

.accordion-body a {
    color: var(--bs-info);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color .25s;
}

.accordion-body a:hover {
    border-color: var(--bs-info);
}












/* ═══ UPDATED PRICE CARD STYLES ═══ */

/* Main card container - UPDATED */
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    height: 100%;
}

.price-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 28px rgba(201, 162, 39, 0.09);
    transform: translateY(-3px);
}

/* Card image container */
.price-card .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
}

/* When image exists - it displays on top */
.price-card .card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity .3s, transform .3s;
    position: relative;
    z-index: 2;
    /* ADDED - image on top layer */
}

.price-card:hover .card-image img {
    opacity: 1;
    transform: scale(1.05);
}

/* Placeholder - ONLY visible when no image or image hidden */
.price-card .card-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* CHANGED - placeholder on bottom layer */
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
}

.price-card .card-image .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.price-card .card-image .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--bs-info);
    opacity: .3;
}

/* Card top section - UPDATED for centered content */
.price-card .card-top {
    padding: 1.6rem 1.4rem 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
    text-align: center;
    /* NEW - center alignment */
}

/* Remove the old service icon (now using image header) */
.price-card .card-top .service-icon {
    display: none;
}

.price-card .card-top h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.7rem;
}

.price-card .card-top p {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* UPDATED - "from" price display - now centered with from ABOVE */
.price-card .card-top .from-price {
    display: flex;
    flex-direction: column;
    /* NEW - stack vertically */
    align-items: center;
    gap: 0.3rem;
}

.price-card .card-top .from-price .from-label {
    font-size: 0.58rem;
    /* NEW - smaller */
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    font-weight: 500;
    order: 1;
    /* NEW - appears first (above price) */
}

.price-card .card-top .from-price .price-big {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Slightly increased */
    font-weight: 700;
    color: var(--bs-info);
    line-height: 1;
    order: 2;
    /* NEW - appears second (below "from") */
}

/* UPDATED - Price lines with alternating backgrounds */
.price-card .card-lines {
    flex: 1;
    padding: 0;
    /* UPDATED - remove padding */
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.4rem;
    /* UPDATED - padding on individual items */
    border-bottom: 1px solid var(--border-subtle);
    transition: background .3s;
    /* NEW */
}

/* NEW - Alternating backgrounds */
.price-line:nth-child(odd) {
    background: rgba(201, 162, 39, 0.03);
}

.price-line:nth-child(even) {
    background: transparent;
}

.price-line:hover {
    background: rgba(201, 162, 39, 0.08);
}

.price-line:last-child {
    border-bottom: none;
}

.price-line .line-name {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 400;
}

.price-line .line-price {
    color: var(--bs-secondary-color);
    font-size: 0.78rem;
    font-weight: 600;
}

/* Card footer - keep existing */
.price-card .card-foot {
    padding: 1rem 1.4rem 1.4rem;
    flex-shrink: 0;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    gap: 0.45rem;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 1.1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
    display: block;
    text-align: center;
}

.btn-book:hover {
    background: var(--bs-info-dim);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}



/* ─── Products Note Section ─── */
.products-note {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.6rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.products-note .note-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.products-note .note-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.85rem;
}

.products-note .note-text {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    flex: 1;
}

.products-note .note-text strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}







/* ─── Promo Card ─── */
.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.4rem;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: row;
}

.promo-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 6px 32px rgba(201, 162, 39, 0.1);
    transform: translateY(-3px);
}

/* Image column */
.promo-card .promo-img {
    width: 280px;
    min-width: 280px;
    background: #121212;
    position: relative;
    overflow: hidden;
}

.promo-card .promo-img .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
}

.promo-card .promo-img .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.promo-card .promo-img .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    color: var(--bs-info);
    opacity: .3;
}

/* Content column */
.promo-card .promo-body {
    flex: 1;
    padding: 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
}

.promo-card .promo-body h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.6rem;
}

.promo-card .promo-body .promo-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.promo-card .promo-body .promo-pricing .new-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bs-info);
    line-height: 1;
}

.promo-card .promo-body .promo-pricing .old-price {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 300;
}

.promo-card .promo-body .promo-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promo-card .promo-body .promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.promo-card .promo-body .promo-features li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 300;
    line-height: 1.6;
}

.promo-card .promo-body .promo-features li::before {
    content: '';
    width: 0.68rem;
    height: 0.68rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/check.svg') no-repeat center / contain;
    mask: url('/assets/icons/check.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.promo-card .promo-body .btn-promo {
    display: inline-block;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.55rem 1.2rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s, color .3s;
    align-self: flex-start;
    margin-top: auto;
}

.promo-card .promo-body .btn-promo:hover {
    background: var(--bs-info-dim);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}

/* Stack on mobile */
@media (max-width: 700px) {
    .promo-card {
        flex-direction: column;
    }

    .promo-card .promo-img {
        width: 100%;
        min-width: 0;
        min-height: 180px;
    }
}

/* ─── Terms section ─── */
.terms-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.6rem 1.8rem;
    margin-top: 0.8rem;
}

.terms-section .terms-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.terms-section .terms-header .terms-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-section .terms-header .terms-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.8rem;
}

.terms-section .terms-header h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-section ul li {
    position: relative;
    padding: 0.38rem 0 0.38rem 1.3rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 300;
    line-height: 1.7;
}

.terms-section ul li:last-child {
    border-bottom: none;
}

.terms-section ul li::before {
    content: '';
    width: 0.62rem;
    height: 0.62rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/caret-right.svg') no-repeat center / contain;
    mask: url('/assets/icons/caret-right.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 0.5rem;
}








/* ═══════════════════════════════════════════════════════════════
   ABOUT US in - ADDITIONAL CSS
   Add these styles to your style-fixed.css file
   ═══════════════════════════════════════════════════════════════ */

/* ─── About Page Content Sections ─── */
.about-intro {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2rem 2.2rem;
    margin-bottom: 2rem;
}

.about-intro p {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

/* ─── Service Feature Cards (What We Do) ─── */
.service-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.service-feature-card:hover {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.12);
}

.service-feature-card .card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
    overflow: hidden;
}

.service-feature-card .card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity .3s, transform .3s;
}

.service-feature-card:hover .card-image img {
    opacity: 1;
    transform: scale(1.05);
}

.service-feature-card .card-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-feature-card .card-image .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.service-feature-card .card-image .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: var(--bs-info);
    opacity: .3;
}

.service-feature-card .card-body {
    padding: 1.8rem 1.6rem;
    flex: 1;
    text-align: center;
}

.service-feature-card .card-body h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.8rem;
}

.service-feature-card .card-body p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

.service-feature-card .card-footer {
    padding: 1rem 1.6rem 1.6rem;
    border-top: 1px solid var(--border-subtle);
}

/* Hero-style button for service cards */
.btn-service-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bs-info);
    color: #0e0e0e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.btn-service-primary:hover {
    background: var(--bs-info-light);
    transform: translateY(-2px);
    color: #0e0e0e;
}

/* ─── Location Features ─── */
.location-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-feature:last-child {
    margin-bottom: 0;
}

.location-feature .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-feature .feature-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.location-feature .feature-content h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.4rem;
}

.location-feature .feature-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

/* ─── Team Member Cards ─── */
.team-member-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color .3s, transform .3s;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.team-member-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.team-member-card .team-photo {
    width: 100%;
    max-width: 240px;
    height: 240px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
    overflow: hidden;
}

.team-member-card .team-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ─── Team Member Card — Mobile: full-width photo ─── */
/* Add this to the bottom of style-fixed.css            */

@media (max-width: 767.98px) {
    .team-member-card .team-photo {
        max-width: 100%;
        height: 260px;
    }

    .team-member-card .team-info {
        min-width: 0;
    }
}

.team-member-card .team-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-member-card .team-photo .photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.team-member-card .team-photo .photo-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: var(--bs-info);
    opacity: .25;
}

.team-member-card .team-info {
    flex: 1;
    padding: 1.8rem 2rem;
    min-width: 280px;
}

.team-member-card .team-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.4rem;
}

.team-member-card .team-info .role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member-card .team-info p {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

/* ─── Benefits List (Why Choose Us) ─── */
.benefits-list {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list .benefit-item {
    padding: 0.85rem 1.8rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list .benefit-item:last-child {
    border-bottom: none;
}

.benefits-list .benefit-item:nth-child(odd) {
    background: rgba(201, 162, 39, 0.03);
}

.benefits-list .benefit-item .bb-icon {
    color: var(--bs-info);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.benefits-list .benefit-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
}

/* ─── Map Placeholder ─── */
.map-placeholder--mobile {
    width: 100%;
    height: 280px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}






.header-font {
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h1.header-font {
    font-size: 60px;
}






/* ═══════════════════════════════════════════════════
   LANGUAGE SWITCHER - FIXED MOBILE VERSION
   ═══════════════════════════════════════════════════ */

.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.lang-toggle:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
}

.lang-toggle .lang-current-flag {
    width: 24px;
    height: 16px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-toggle .bb-icon {
    font-size: 0.65rem;
    color: var(--gold);
    transition: transform 0.25s;
}

.lang-toggle:hover .bb-icon {
    transform: translateY(2px);
}

/* Dropdown - Hidden by default on ALL screen sizes */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1001;
}

/* Show state - works on desktop AND mobile */
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(201, 162, 39, 0.1);
}

.lang-option.active {
    background: rgba(201, 162, 39, 0.15);
}

.lang-option img {
    width: 24px;
    height: 16px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-option span {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-option.active span {
    color: var(--gold);
}

/* Mobile adjustments - ONLY styling, not visibility */
@media (max-width: 991px) {
    .lang-switcher {
        width: 100%;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(201, 162, 39, 0.2);
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    /* Dropdown adjusts position but still requires .show to be visible */
    .lang-dropdown {
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: 100%;
        /* Open upwards */
        margin-bottom: 0.5rem;
        min-width: auto;
        /* "Mix of gold and dim-gold" - Solid background for visibility */
        background: #14120a;
        /* Dark base */
        border: 1px solid var(--border-subtle);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
        z-index: 1005;
        /* Ensure on top of social icons */
    }

    .lang-option {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        /* Ensure distinct background for options if needed, but inheriting is fine */
    }
}

/* ─── Booking + Dashboard Prototypes ─── */
.prototype-page {
    padding-top: calc(var(--navbar-h) + 1.5rem);
    position: relative;
    overflow: clip;
}

.prototype-page::before,
.prototype-page::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.9;
}

.prototype-page::before {
    width: 26rem;
    height: 26rem;
    top: 4rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(226, 197, 90, 0.2) 0%, rgba(226, 197, 90, 0.04) 45%, transparent 72%);
}

.prototype-page::after {
    width: 22rem;
    height: 22rem;
    top: 18rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(191, 146, 91, 0.18) 0%, rgba(191, 146, 91, 0.03) 50%, transparent 72%);
}

.prototype-hero,
.prototype-shell-section,
.prototype-bridge {
    position: relative;
    z-index: 1;
}

.prototype-hero {
    padding: 2rem 0 2.5rem;
}

.prototype-hero--admin {
    padding-bottom: 2rem;
}

.prototype-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.5rem;
    margin-bottom: 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.82);
    backdrop-filter: blur(14px);
}

.prototype-switcher__link {
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.prototype-switcher__link:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.prototype-switcher__link.is-active {
    background: linear-gradient(135deg, rgba(226, 197, 90, 0.25), rgba(191, 146, 91, 0.15));
    color: var(--text-primary);
}

.prototype-copy {
    padding: 1rem 0;
}

.prototype-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.prototype-copy h1 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
}

.prototype-copy p {
    max-width: 42rem;
    color: rgba(240, 236, 228, 0.82);
    font-size: 1.02rem;
    margin: 0;
}

.prototype-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.proto-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.proto-button--solid {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #101010;
    border-color: rgba(226, 197, 90, 0.55);
}

.proto-button--solid:hover {
    color: #101010;
}

.proto-button--ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.proto-button--ghost:hover {
    color: var(--text-primary);
    border-color: rgba(226, 197, 90, 0.4);
}

.proto-button--block {
    width: 100%;
}

.proto-stack,
.proto-sidebar-stack {
    display: grid;
    gap: 1.5rem;
}

.prototype-shell-section {
    padding: 1rem 0 2.5rem;
}

.prototype-bridge {
    padding: 0 0 4rem;
}

.proto-section-card,
.proto-summary-card,
.proto-bridge-card,
.proto-admin-shell {
    position: relative;
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.92) 0%, rgba(13, 13, 13, 0.94) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proto-section-card,
.proto-summary-card,
.proto-bridge-card {
    padding: 1.5rem;
}

.proto-summary-card--hero {
    height: 100%;
}

.proto-summary-card--sticky {
    position: sticky;
    top: calc(var(--navbar-h) + 1.5rem);
}

.proto-summary-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.proto-summary-card h2,
.proto-section-card h2,
.proto-section-card h3,
.proto-bridge-card h2,
.proto-admin-brand h2,
.proto-admin-topbar h2 {
    color: var(--text-primary);
    margin: 0;
}

.proto-summary-card h2,
.proto-bridge-card h2,
.proto-admin-brand h2,
.proto-admin-topbar h2 {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.proto-summary-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 0.98;
    margin-bottom: 1rem;
}

.proto-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.proto-stat-card {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 197, 90, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.proto-stat-card strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.proto-stat-card span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.proto-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.proto-bullet-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(240, 236, 228, 0.84);
}

.proto-bullet-list .bb-icon {
    margin-top: 0.2rem;
    color: var(--gold-light);
    font-size: 0.95rem;
}

.proto-bullet-list--compact {
    margin-top: 1.25rem;
}

.proto-section-head,
.proto-side-head,
.proto-admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.proto-section-head {
    margin-bottom: 1.35rem;
}

.proto-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 0.98;
    margin-bottom: 0.45rem;
}

.proto-section-head p,
.proto-review-card p,
.proto-admin-brand p,
.proto-bridge-card p {
    color: var(--text-muted);
    margin: 0;
}

.proto-step-index {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(226, 197, 90, 0.13);
    border: 1px solid rgba(226, 197, 90, 0.3);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1;
}

.proto-choice-grid,
.proto-staff-grid {
    display: grid;
    gap: 1rem;
}

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

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

.proto-choice-card,
.proto-staff-card,
.proto-mini-card,
.proto-kpi-card,
.proto-schedule-column,
.proto-email-preview,
.proto-review-card {
    border-radius: 22px;
    border: 1px solid rgba(226, 197, 90, 0.12);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.1rem;
}

.proto-choice-card.is-selected,
.proto-staff-card.is-selected {
    background: linear-gradient(180deg, rgba(226, 197, 90, 0.13) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(226, 197, 90, 0.3);
}

.proto-choice-card.is-disabled {
    opacity: 0.75;
}

.proto-card-top,
.proto-staff-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.proto-icon-ring,
.proto-avatar {
    width: 2.9rem;
    height: 2.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(226, 197, 90, 0.12);
    border: 1px solid rgba(226, 197, 90, 0.26);
    color: var(--gold-light);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.proto-avatar {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
}

.proto-chip,
.proto-pill,
.proto-badge,
.proto-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proto-chip,
.proto-pill,
.proto-toggle {
    background: rgba(226, 197, 90, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(226, 197, 90, 0.22);
}

.proto-chip--muted,
.proto-pill--soft {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.08);
}

.proto-pill--highlight {
    background: rgba(191, 146, 91, 0.18);
    color: var(--text-primary);
}

.proto-badge {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 236, 228, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.78rem;
    font-weight: 600;
}

.proto-choice-card h3,
.proto-staff-card h3,
.proto-mini-card h3,
.proto-kpi-card strong,
.proto-schedule-column h4,
.proto-side-head h3 {
    color: var(--text-primary);
    margin: 0 0 0.45rem;
}

.proto-choice-card p,
.proto-staff-card p,
.proto-mini-card p,
.proto-email-preview p {
    color: var(--text-muted);
    margin: 0;
}

.proto-choice-meta,
.proto-badge-row,
.proto-legend,
.proto-action-row,
.proto-support-actions,
.proto-placeholder-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.proto-choice-meta {
    margin-top: 1rem;
    justify-content: space-between;
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.86rem;
}

.proto-price {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1;
}

.proto-date-row,
.proto-slot-grid {
    display: grid;
    gap: 0.75rem;
}

.proto-date-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 1rem;
}

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

.proto-date-pill,
.proto-slot {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    min-height: 3.15rem;
    padding: 0.8rem 0.95rem;
    font-weight: 700;
}

.proto-date-pill.is-active,
.proto-date-pill.is-selected,
.proto-slot.is-selected {
    background: linear-gradient(135deg, rgba(226, 197, 90, 0.24), rgba(191, 146, 91, 0.12));
    border-color: rgba(226, 197, 90, 0.35);
}

.proto-slot.is-preliminary {
    color: var(--gold-light);
    border-style: dashed;
    border-color: rgba(226, 197, 90, 0.34);
}

.proto-slot.is-full {
    opacity: 0.4;
}

.proto-legend {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.proto-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.proto-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    display: inline-block;
}

.proto-dot--available {
    background: rgba(255, 255, 255, 0.55);
}

.proto-dot--selected {
    background: var(--gold-light);
}

.proto-dot--preliminary {
    background: rgba(226, 197, 90, 0.65);
}

.proto-dot--full {
    background: rgba(255, 255, 255, 0.22);
}

.proto-account-grid,
.proto-email-layout,
.proto-panel-grid {
    display: grid;
    gap: 1rem;
}

.proto-account-grid,
.proto-email-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proto-field-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.proto-field {
    display: grid;
    gap: 0.35rem;
}

.proto-field span {
    color: rgba(240, 236, 228, 0.74);
    font-size: 0.82rem;
}

.proto-field input {
    width: 100%;
    min-height: 3rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.6);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
}

.proto-tabbar {
    display: inline-flex;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    gap: 0.35rem;
}

.proto-tab {
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    color: var(--text-muted);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proto-tab.is-active {
    color: var(--text-primary);
    background: rgba(226, 197, 90, 0.13);
}

.proto-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-muted);
}

.proto-summary-row strong {
    color: var(--text-primary);
}

.proto-summary-row--total {
    margin-bottom: 1rem;
}

.proto-footnote {
    margin: 0.9rem 0 0;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.proto-timeline {
    list-style: none;
    counter-reset: proto-timeline;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.proto-timeline li {
    position: relative;
    counter-increment: proto-timeline;
    padding-left: 3rem;
    color: var(--text-muted);
}

.proto-timeline li::before {
    content: counter(proto-timeline);
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 197, 90, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(226, 197, 90, 0.26);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.proto-timeline strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.proto-bridge-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.prototype-page--booking .proto-section-card,
.prototype-page--booking .proto-summary-card,
.prototype-page--booking .proto-bridge-card,
.prototype-page--booking .proto-mini-card {
    border-radius: 18px;
}

.prototype-page--booking .proto-choice-card,
.prototype-page--booking .proto-staff-card,
.prototype-page--booking .proto-date-pill,
.prototype-page--booking .proto-slot,
.prototype-page--booking .proto-field input,
.prototype-page--booking .proto-tabbar,
.prototype-page--booking .proto-tab,
.prototype-page--booking .proto-button {
    border-radius: 12px;
}

.prototype-page--booking .proto-stepper-progress {
    display: grid;
    gap: 0.9rem;
}

.prototype-page--booking .proto-progress-pill {
    opacity: 0.45;
    transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.prototype-page--booking .proto-progress-pill.is-active,
.prototype-page--booking .proto-progress-pill.is-done {
    opacity: 1;
}

.prototype-page--booking .proto-progress-pill.is-active {
    background: rgba(226, 197, 90, 0.18);
    color: var(--text-primary);
    border-color: rgba(226, 197, 90, 0.28);
}

.prototype-page--booking .proto-progress-pill.is-done {
    background: rgba(76, 175, 122, 0.12);
    color: #dff2e5;
    border-color: rgba(76, 175, 122, 0.28);
}

.prototype-page--booking .proto-step-card {
    opacity: 0.42;
    pointer-events: none;
    transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.prototype-page--booking .proto-step-card.is-active,
.prototype-page--booking .proto-step-card.is-done {
    opacity: 1;
    pointer-events: auto;
}

.prototype-page--booking .proto-step-card.is-active {
    border-color: rgba(226, 197, 90, 0.24);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.prototype-page--booking .proto-step-card.is-done {
    border-color: rgba(76, 175, 122, 0.2);
}

.prototype-page--booking .proto-step-card.is-done .proto-step-body {
    display: none;
}

.prototype-page--booking .proto-step-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.prototype-page--booking .proto-step-head__main {
    display: flex;
    gap: 1rem;
    min-width: 0;
}

.prototype-page--booking .proto-step-edit {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(255, 255, 255, 0.02);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prototype-page--booking .proto-step-card.is-done .proto-step-edit {
    display: inline-flex;
}

.prototype-page--booking .proto-step-card.is-active .proto-step-index {
    background: rgba(226, 197, 90, 0.22);
    border-color: rgba(226, 197, 90, 0.36);
    color: var(--text-primary);
}

.prototype-page--booking .proto-step-card.is-done .proto-step-index {
    background: rgba(76, 175, 122, 0.18);
    border-color: rgba(76, 175, 122, 0.34);
    color: #dff2e5;
}

.prototype-page--booking .proto-step-summary {
    display: none;
    align-items: baseline;
    gap: 0.7rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

.prototype-page--booking .proto-step-summary strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.prototype-page--booking .proto-step-card.is-done .proto-step-summary {
    display: flex;
    flex-wrap: wrap;
}

.prototype-page--booking .proto-step-body {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.35rem;
}

.prototype-page--booking .proto-choice-card--button,
.prototype-page--booking .proto-staff-card--button,
.prototype-page--booking .proto-date-pill,
.prototype-page--booking .proto-slot,
.prototype-page--booking .proto-tab {
    width: 100%;
    text-align: left;
    appearance: none;
    cursor: pointer;
}

.prototype-page--booking .proto-choice-card--button,
.prototype-page--booking .proto-staff-card--button {
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.prototype-page--booking .proto-choice-card--button:hover,
.prototype-page--booking .proto-staff-card--button:hover,
.prototype-page--booking .proto-date-pill:hover,
.prototype-page--booking .proto-slot:hover,
.prototype-page--booking .proto-tab:hover,
.prototype-page--booking .proto-step-edit:hover {
    border-color: rgba(226, 197, 90, 0.24);
}

.prototype-page--booking .proto-choice-card--button:focus-visible,
.prototype-page--booking .proto-staff-card--button:focus-visible,
.prototype-page--booking .proto-date-pill:focus-visible,
.prototype-page--booking .proto-slot:focus-visible,
.prototype-page--booking .proto-tab:focus-visible,
.prototype-page--booking .proto-button:focus-visible,
.prototype-page--booking .proto-step-edit:focus-visible {
    outline: 2px solid rgba(226, 197, 90, 0.55);
    outline-offset: 2px;
}

.prototype-page--booking .proto-choice-card.is-disabled,
.prototype-page--booking .proto-slot.is-full,
.prototype-page--booking .proto-slot.is-preliminary {
    cursor: not-allowed;
}

.prototype-page--booking .proto-date-pill span,
.prototype-page--booking .proto-slot .proto-slot-label {
    display: block;
}

.prototype-page--booking .proto-date-pill small,
.prototype-page--booking .proto-slot small {
    color: var(--text-muted);
    font-size: 0.74rem;
}

.prototype-page--booking .proto-slot {
    display: grid;
    gap: 0.12rem;
}

.prototype-page--booking .proto-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.prototype-page--booking .proto-step-helper {
    margin: 0;
    max-width: 34rem;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.prototype-page--booking .proto-tab {
    border: none;
    background: transparent;
}

.prototype-page--booking .proto-tab-panel {
    display: none;
    margin-top: 1rem;
}

.prototype-page--booking .proto-tab-panel.is-active {
    display: block;
}

.prototype-page--booking .proto-summary-status {
    margin-bottom: 1rem;
}

.prototype-page--booking .proto-summary-status.is-ready {
    background: rgba(226, 197, 90, 0.14);
    color: var(--text-primary);
    border-color: rgba(226, 197, 90, 0.26);
}

.prototype-page--booking .proto-summary-status.is-submitted {
    background: rgba(76, 175, 122, 0.14);
    color: #dff2e5;
    border-color: rgba(76, 175, 122, 0.28);
}

.prototype-page--booking .proto-summary-row .is-empty {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
}

.prototype-page--booking .proto-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.08);
    transform: none;
}

.prototype-page--booking .proto-submit-note {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 122, 0.24);
    background: rgba(76, 175, 122, 0.08);
}

.prototype-page--booking .proto-submit-note.is-visible {
    display: block;
}

.prototype-page--booking .proto-submit-note strong {
    display: block;
    color: #dff2e5;
    margin-bottom: 0.35rem;
}

.prototype-page--booking .proto-submit-note p {
    margin: 0;
    color: rgba(223, 242, 229, 0.84);
}

.prototype-page--admin .proto-section-card,
.prototype-page--admin .proto-summary-card,
.prototype-page--admin .proto-bridge-card,
.prototype-page--admin .proto-admin-shell,
.prototype-page--admin .proto-kpi-card,
.prototype-page--admin .proto-email-preview,
.prototype-page--admin .proto-review-card,
.prototype-page--admin .proto-schedule-column {
    border-radius: 18px;
}

.prototype-page--admin .proto-button {
    border-radius: 12px;
}

.proto-admin-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    overflow: hidden;
}

.proto-admin-sidebar {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(9, 9, 9, 0.96));
    display: grid;
    gap: 1.35rem;
    align-content: start;
}

.proto-admin-brand {
    margin-bottom: 0.25rem;
}

.proto-admin-brand h2 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    line-height: 0.98;
    margin-bottom: 0.65rem;
}

.proto-admin-sidebar__section {
    display: grid;
    gap: 0.65rem;
}

.proto-admin-sidebar__label {
    color: rgba(240, 236, 228, 0.38);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.proto-admin-nav {
    display: grid;
    gap: 0.4rem;
}

.proto-admin-nav a {
    display: grid;
    grid-template-columns: 1.1rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 3.4rem;
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    color: rgba(240, 236, 228, 0.84);
    text-decoration: none;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.015);
}

.proto-admin-nav a .bb-icon {
    color: rgba(240, 236, 228, 0.48);
    font-size: 0.9rem;
}

.proto-admin-nav a.is-active,
.proto-admin-nav a:hover {
    color: var(--text-primary);
    background: rgba(226, 197, 90, 0.08);
    border-color: rgba(226, 197, 90, 0.16);
}

.proto-admin-nav a.is-active .bb-icon,
.proto-admin-nav a:hover .bb-icon {
    color: var(--gold-light);
}

.proto-admin-nav__text {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.proto-admin-nav__text strong {
    color: inherit;
    font-size: 0.88rem;
    line-height: 1.1;
}

.proto-admin-nav__text small {
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.35;
}

.proto-admin-nav__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.7rem;
    min-height: 1.7rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
}

.proto-admin-sidebar__footer {
    margin-top: 0.35rem;
}

.proto-admin-note {
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.proto-admin-note p {
    margin: 0.75rem 0 0;
    color: var(--text-muted);
}

.proto-admin-main {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.proto-admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0 0.4rem;
}

.proto-admin-topbar__copy {
    max-width: 38rem;
}

.proto-admin-topbar__sub,
.proto-side-head p {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
}

.proto-admin-topbar__cluster {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.proto-admin-icon-button {
    position: relative;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(240, 236, 228, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.proto-admin-icon-button .bb-icon {
    font-size: 0.96rem;
}

.proto-admin-icon-button:hover {
    border-color: rgba(226, 197, 90, 0.22);
    color: var(--gold-light);
}

.proto-admin-icon-button__badge {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    min-width: 1.2rem;
    min-height: 1.2rem;
    padding: 0 0.2rem;
    border-radius: 999px;
    background: rgba(226, 197, 90, 0.96);
    color: #111;
    font-size: 0.68rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.proto-admin-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.7rem 0.45rem 0.45rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.proto-admin-user-chip strong,
.proto-admin-user-chip small {
    display: block;
}

.proto-admin-user-chip strong {
    color: var(--text-primary);
    font-size: 0.82rem;
}

.proto-admin-user-chip small {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.proto-admin-topbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.proto-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.proto-kpi-card {
    padding: 1rem;
}

.proto-kpi-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.proto-kpi-card span,
.proto-kpi-card small {
    display: block;
    color: var(--text-muted);
}

.proto-kpi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(240, 236, 228, 0.72);
}

.proto-kpi-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.15rem;
    line-height: 1;
    margin: 0.55rem 0 0.35rem;
}

.proto-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.proto-panel-grid--primary {
    grid-template-columns: 1.4fr 1fr;
}

.proto-side-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.proto-table-wrap {
    overflow-x: auto;
}

.proto-data-table {
    width: 100%;
    min-width: 46rem;
    border-collapse: collapse;
}

.proto-data-table th {
    padding: 0 0.75rem 0.8rem;
    color: rgba(240, 236, 228, 0.46);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proto-data-table td {
    padding: 0.95rem 0.75rem;
    color: rgba(240, 236, 228, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.proto-data-table tbody tr:last-child td {
    border-bottom: none;
}

.proto-data-table td strong,
.proto-data-table td span {
    display: block;
}

.proto-data-table td strong {
    color: var(--text-primary);
    margin-bottom: 0.18rem;
}

.proto-data-table td span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.proto-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.proto-inline-actions .proto-button {
    min-height: 2.35rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.7rem;
}

.proto-status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(240, 236, 228, 0.84);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proto-status-chip--pending {
    background: rgba(226, 197, 90, 0.12);
    border-color: rgba(226, 197, 90, 0.22);
    color: var(--gold-light);
}

.proto-status-chip--confirmed {
    background: rgba(76, 175, 122, 0.12);
    border-color: rgba(76, 175, 122, 0.22);
    color: #dff2e5;
}

.proto-status-chip--alert {
    background: rgba(191, 146, 91, 0.14);
    border-color: rgba(191, 146, 91, 0.26);
    color: #f1dfc0;
}

.proto-schedule-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.proto-schedule-column {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
}

.proto-schedule-column__head {
    display: grid;
    gap: 0.4rem;
}

.proto-schedule-column h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0;
}

.proto-schedule-slot {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.85rem;
    display: grid;
    gap: 0.25rem;
}

.proto-schedule-slot span {
    color: rgba(240, 236, 228, 0.54);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.proto-schedule-slot strong {
    color: var(--text-primary);
    font-size: 0.94rem;
}

.proto-schedule-slot--muted {
    opacity: 0.68;
}

.proto-schedule-slot--alert {
    border-color: rgba(191, 146, 91, 0.26);
    background: rgba(191, 146, 91, 0.08);
}

.proto-admin-list,
.proto-rule-list,
.proto-toggle-list {
    display: grid;
    gap: 0.75rem;
}

.proto-admin-list__item,
.proto-rule-row,
.proto-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proto-admin-list__item:last-child,
.proto-rule-row:last-child,
.proto-toggle-row:last-child {
    border-bottom: none;
}

.proto-admin-list__meta,
.proto-toggle-row div {
    display: grid;
    gap: 0.2rem;
}

.proto-admin-list__meta strong,
.proto-rule-row strong,
.proto-toggle-row strong {
    color: var(--text-primary);
}

.proto-admin-list__meta span,
.proto-rule-row span,
.proto-toggle-row span {
    color: var(--text-muted);
}

.proto-toggle.is-on {
    background: rgba(226, 197, 90, 0.16);
    color: var(--text-primary);
}

.proto-placeholder-list span {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(240, 236, 228, 0.8);
    font-size: 0.8rem;
}

.proto-email-preview__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.proto-email-preview__meta span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.proto-email-preview__body {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.proto-email-preview__body strong {
    color: var(--text-primary);
}

.proto-review-card {
    min-height: 100%;
}

.proto-review-card p {
    margin-bottom: 1rem;
}

@media (max-width: 1199px) {
    .proto-admin-shell {
        grid-template-columns: 1fr;
    }

    .proto-admin-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .proto-kpi-grid,
    .proto-schedule-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proto-panel-grid--primary,
    .proto-panel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .prototype-hero {
        padding-top: 1.2rem;
    }

    .proto-choice-grid,
    .proto-staff-grid,
    .proto-account-grid,
    .proto-email-layout,
    .proto-kpi-grid,
    .proto-date-row,
    .proto-slot-grid,
    .proto-schedule-board {
        grid-template-columns: 1fr;
    }

    .proto-summary-card--sticky {
        position: static;
    }

    .proto-bridge-card,
    .proto-admin-topbar,
    .proto-admin-topbar__cluster,
    .proto-side-head,
    .proto-section-head,
    .proto-admin-list__item,
    .proto-rule-row,
    .proto-toggle-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .prototype-page--booking .proto-step-head,
    .prototype-page--booking .proto-step-head__main,
    .prototype-page--booking .proto-step-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .proto-admin-topbar__actions,
    .prototype-hero-actions {
        width: 100%;
    }

    .proto-admin-topbar__cluster,
    .proto-admin-topbar__actions .proto-button,
    .prototype-hero-actions .proto-button,
    .proto-bridge-card .proto-button {
        width: 100%;
    }

    .proto-admin-user-chip,
    .proto-admin-icon-button {
        width: 100%;
    }

    .proto-admin-icon-button {
        justify-content: flex-start;
        padding-left: 1rem;
    }
}

@media (max-width: 575px) {
    .prototype-page {
        padding-top: calc(var(--navbar-h) + 1rem);
    }

    .prototype-switcher {
        width: 100%;
        border-radius: 26px;
    }

    .prototype-switcher__link {
        width: 100%;
        text-align: center;
    }

    .proto-section-card,
    .proto-summary-card,
    .proto-bridge-card,
    .proto-admin-sidebar,
    .proto-admin-main {
        padding: 1.1rem;
    }

    .proto-stat-grid {
        grid-template-columns: 1fr;
    }

    .proto-data-table {
        min-width: 38rem;
    }
}

/* ─── Public Auth Pages ─── */
.public-auth-page {
    background:
        radial-gradient(circle at top left, rgba(191, 146, 91, 0.16), transparent 34%),
        #0e0e0e;
    color: var(--text-primary);
}

.public-auth-navbar {
    background: rgba(14, 14, 14, 0.95);
}

.public-auth {
    overflow: hidden;
}

.public-auth__hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--navbar-h) + clamp(1.35rem, 2.6vw, 2.4rem)) 0 clamp(2rem, 3.2vw, 3rem);
    background:
        linear-gradient(90deg, rgba(14, 14, 14, 0.96) 0%, rgba(14, 14, 14, 0.84) 48%, rgba(14, 14, 14, 0.42) 100%),
        url('/assets/images/barber-haircut.webp') center right / cover no-repeat;
}

.public-auth__hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7rem;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, var(--bg-dark));
}

.public-auth__hero > .container {
    position: relative;
    z-index: 1;
}

.public-auth__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 0.64fr);
    gap: clamp(1.6rem, 4vw, 3.5rem);
    align-items: center;
}

.public-auth__copy {
    max-width: 34.5rem;
}

.public-auth__copy .label {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--bs-info);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.public-auth__copy h1 {
    max-width: 15ch;
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.55rem, 4.8vw, 4.2rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.public-auth__copy p {
    max-width: 34rem;
    color: rgba(240, 236, 228, 0.74);
    font-size: 0.94rem;
    line-height: 1.76;
}

.public-auth__lead {
    margin-top: 1rem;
    color: rgba(240, 236, 228, 0.9) !important;
    font-size: clamp(0.98rem, 1.2vw, 1.05rem) !important;
}

.public-auth__quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.35rem;
}

.public-auth__quick-actions .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.68rem 1.55rem;
}

.public-auth__text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.public-auth__text-link:hover {
    color: var(--text-primary);
}

.public-auth__button--ghost {
    background: rgba(14, 14, 14, 0.28);
    border: 1px solid rgba(226, 197, 90, 0.34);
    color: var(--gold-light);
}

.public-auth__button--ghost:hover {
    background: rgba(226, 197, 90, 0.12);
    color: var(--text-primary);
}

.public-auth__card {
    border: 1px solid rgba(226, 197, 90, 0.24);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        rgba(12, 12, 12, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    padding: clamp(1.2rem, 2.5vw, 1.9rem);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.public-auth__card-header {
    margin-bottom: 1.05rem;
}

.public-auth__card-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.1vw, 2.55rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.public-auth__card-header p {
    margin: 0.65rem 0 0;
    color: rgba(240, 236, 228, 0.72);
}

.public-auth__card .admin-auth__form {
    gap: 0.8rem;
}

.public-auth__card .admin-field {
    position: relative;
}

.public-auth__card .admin-field > span,
.public-auth__card .admin-field > label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.public-auth__card .admin-field input {
    min-height: 3.45rem;
}

.public-auth__card .admin-field input::placeholder {
    color: rgba(240, 236, 228, 0.46);
}

.public-auth__password-input {
    position: relative;
}

.public-auth__password-input input {
    padding-right: 3.25rem;
}

.public-auth__password-toggle {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(240, 236, 228, 0.7);
    transform: translateY(-50%);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.public-auth__password-toggle:hover,
.public-auth__password-toggle:focus-visible {
    border-color: rgba(226, 197, 90, 0.32);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    outline: none;
}

.public-auth__password-helper {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(135deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.03);
}

.public-auth__password-helper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.public-auth__password-helper-header strong {
    color: var(--text-primary);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-auth__password-label {
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.82rem;
    font-weight: 700;
}

.public-auth__password-meter {
    height: 0.38rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.09);
}

.public-auth__password-meter span {
    display: block;
    width: var(--password-meter, 0%);
    height: 100%;
    background: #7f1d2d;
    transition: width 0.22s ease, background-color 0.22s ease;
}

.public-auth__password-helper[data-strength="fair"] .public-auth__password-meter span {
    background: #bf925b;
}

.public-auth__password-helper[data-strength="good"] .public-auth__password-meter span {
    background: var(--gold-light);
}

.public-auth__password-helper[data-strength="strong"] .public-auth__password-meter span {
    background: #78b884;
}

.public-auth__password-rules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.9rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.public-auth__password-rules li {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.82rem;
    line-height: 1.35;
}

.public-auth__password-rules .bb-icon {
    color: rgba(240, 236, 228, 0.26);
}

.public-auth__password-rules li.is-met {
    color: rgba(240, 236, 228, 0.9);
}

.public-auth__password-rules li.is-met .bb-icon {
    color: var(--gold-light);
}

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

.public-auth__field-wide {
    grid-column: 1 / -1;
}

.public-auth__marketing-consent {
    position: relative;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background:
        linear-gradient(135deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.035));
}

.public-auth__marketing-consent span {
    display: grid;
    gap: 0.28rem;
}

.public-auth__marketing-consent em {
    color: var(--gold-light);
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.public-auth__marketing-consent strong {
    color: rgba(240, 236, 228, 0.94);
    line-height: 1.35;
}

.public-auth__marketing-consent small {
    color: rgba(240, 236, 228, 0.68);
    line-height: 1.55;
}

.public-auth__account-links {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.public-auth__account-links a {
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.public-auth__account-links a:hover {
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.08);
    transform: translateY(-1px);
}

.public-auth__account-links strong {
    color: var(--gold-light);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-auth__account-links span {
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.86rem;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .public-auth__hero {
        background:
            linear-gradient(180deg, rgba(14, 14, 14, 0.94) 0%, rgba(14, 14, 14, 0.84) 58%, rgba(14, 14, 14, 0.98) 100%),
            url('/assets/images/barber-haircut-800.webp') center / cover no-repeat;
    }

    .public-auth__grid {
        grid-template-columns: 1fr;
    }

    .public-auth__card {
        order: 1;
    }

    .public-auth__copy {
        order: 2;
    }

    .public-auth__copy h1 {
        max-width: 12ch;
        font-size: clamp(2.35rem, 10vw, 3.5rem);
    }
}

@media (max-width: 575px) {
    .public-auth__hero {
        padding-top: calc(var(--navbar-h) + 1.65rem);
    }

    .public-auth__form-grid {
        grid-template-columns: 1fr;
    }

    .public-auth__password-rules {
        grid-template-columns: 1fr;
    }

    .public-auth__quick-actions,
    .public-auth__quick-actions .btn-gold,
    .public-auth__text-link {
        width: 100%;
        justify-content: center;
    }
}

/* ─── Sunbed Client Kiosk ─── */
.sunbed-kiosk-page {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #080808;
    background:
        radial-gradient(circle at 12% 14%, rgba(226, 197, 90, 0.16), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(191, 146, 91, 0.18), transparent 30%),
        linear-gradient(145deg, #0b0b0b 0%, #17120d 52%, #080808 100%);
    color: var(--text-primary);
}

.sunbed-kiosk {
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    place-items: center;
    padding: clamp(0.75rem, 2vw, 1.5rem);
}

.sunbed-kiosk__panel {
    display: grid;
    align-content: center;
    gap: clamp(0.9rem, 1.8vw, 1.4rem);
    width: min(100%, 62rem);
    min-height: calc(100svh - clamp(1.5rem, 4vw, 3rem));
    padding: clamp(1.1rem, 2.4vw, 2.35rem);
    border: 1px solid rgba(226, 197, 90, 0.25);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(12, 12, 12, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.sunbed-kiosk__brand {
    display: flex;
    justify-content: center;
    padding-bottom: 0.35rem;
}

.sunbed-kiosk__brand img {
    width: min(100%, 21rem);
    height: auto;
}

.sunbed-kiosk__intro {
    display: grid;
    gap: 0.75rem;
    text-align: center;
}

.sunbed-kiosk__intro h1 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5.6vw, 4.6rem);
    font-weight: 700;
    line-height: 0.94;
    text-transform: uppercase;
}

.sunbed-kiosk__intro p,
.sunbed-kiosk__help {
    margin: 0;
    color: rgba(240, 236, 228, 0.72);
    font-size: clamp(1rem, 1.65vw, 1.25rem);
    line-height: 1.65;
}

.sunbed-kiosk__intro--found h1 {
    font-size: clamp(2.25rem, 7vw, 3.2rem);
}

.sunbed-kiosk__usage-grid {
    display: grid;
    gap: clamp(0.9rem, 2vw, 1.4rem);
    width: min(100%, 54rem);
    margin-inline: auto;
}

.sunbed-kiosk__form {
    display: grid;
    gap: clamp(0.8rem, 1.5vw, 1.15rem);
    width: min(100%, 42rem);
    margin-inline: auto;
}

.sunbed-kiosk__form .admin-field {
    text-align: left;
}

.sunbed-kiosk__form .admin-field span {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
}

.sunbed-kiosk__form .admin-field input {
    min-height: clamp(4.75rem, 8vw, 6.4rem);
    font-size: clamp(1.85rem, 4.4vw, 3.2rem);
    letter-spacing: 0.08em;
    text-align: center;
}

.sunbed-kiosk__form .admin-field input::placeholder {
    letter-spacing: 0;
}

.sunbed-kiosk__form .admin-field .sunbed-kiosk__prompt {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--gold-light);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .sunbed-kiosk__usage-grid {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        align-items: stretch;
    }

    .sunbed-kiosk__minutes-form {
        width: 100%;
    }

    .sunbed-kiosk__usage-grid .sunbed-kiosk__balance {
        min-height: 100%;
        align-content: center;
        padding: clamp(1rem, 2vw, 1.5rem);
    }

    .sunbed-kiosk__usage-grid .sunbed-kiosk__balance strong {
        font-size: clamp(4.4rem, 9vw, 6.8rem);
    }
}

.sunbed-kiosk__form .admin-button--primary {
    min-height: clamp(4rem, 6vw, 4.8rem);
    font-size: clamp(0.98rem, 1.8vw, 1.2rem);
}

.sunbed-kiosk-keypad {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.6rem, 1.6vw, 0.9rem);
}

.sunbed-kiosk-keypad button {
    min-height: clamp(3.65rem, 7vw, 5.15rem);
    border: 1px solid rgba(226, 197, 90, 0.3);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.15), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.04);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3.3vw, 2.35rem);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.sunbed-kiosk-keypad button:hover,
.sunbed-kiosk-keypad button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.62);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.28), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    outline: none;
}

.sunbed-kiosk-keypad button[data-kiosk-key="clear"],
.sunbed-kiosk-keypad button[data-kiosk-key="backspace"] {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 768px) and (max-height: 850px) {
    .sunbed-kiosk {
        padding: 0.6rem;
    }

    .sunbed-kiosk__panel {
        min-height: calc(100svh - 1.2rem);
        gap: 0.65rem;
        padding: 1rem clamp(1.2rem, 2vw, 2rem);
    }

    .sunbed-kiosk__brand img {
        width: min(100%, 18rem);
    }

    .sunbed-kiosk__intro {
        gap: 0.45rem;
    }

    .sunbed-kiosk__intro h1 {
        font-size: clamp(2.4rem, 4.9vw, 3.7rem);
    }

    .sunbed-kiosk__intro--found h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .sunbed-kiosk__intro p,
    .sunbed-kiosk__help {
        font-size: 1rem;
        line-height: 1.35;
    }

    .sunbed-kiosk__panel > .sunbed-kiosk__help {
        display: none;
    }

    .sunbed-kiosk__form {
        gap: 0.65rem;
    }

    .sunbed-kiosk__form .admin-field .sunbed-kiosk__prompt {
        margin-bottom: 0.4rem;
        font-size: 0.92rem;
    }

    .sunbed-kiosk__form .admin-field input {
        min-height: 4.1rem;
        font-size: clamp(2rem, 3.4vw, 2.55rem);
    }

    .sunbed-kiosk__form .admin-button--primary {
        min-height: 3.25rem;
    }

    .sunbed-kiosk-keypad {
        gap: 0.5rem;
    }

    .sunbed-kiosk-keypad button {
        min-height: 3.1rem;
        font-size: 1.7rem;
    }

    .sunbed-kiosk-keypad button[data-kiosk-key="clear"],
    .sunbed-kiosk-keypad button[data-kiosk-key="backspace"] {
        font-size: 0.9rem;
    }
}

.sunbed-kiosk__balance {
    display: grid;
    gap: 0.3rem;
    padding: 1.1rem;
    border: 1px solid rgba(226, 197, 90, 0.26);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.14), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.03);
    text-align: center;
}

.sunbed-kiosk__balance span {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sunbed-kiosk__balance strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 14vw, 5rem);
    line-height: 0.9;
}

.sunbed-kiosk__balance small {
    color: rgba(240, 236, 228, 0.7);
}

.sunbed-kiosk__reset {
    display: flex;
    justify-content: center;
}

.sunbed-kiosk__text-button {
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sunbed-kiosk__text-button:hover,
.sunbed-kiosk__text-button:focus-visible {
    color: var(--text-primary);
    outline: none;
}

.sunbed-kiosk-success-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2rem);
}

.sunbed-kiosk-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(226, 197, 90, 0.18), transparent 34%),
        rgba(0, 0, 0, 0.72);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.sunbed-kiosk-success-modal__panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    width: min(100%, 34rem);
    padding: clamp(1.3rem, 3vw, 2rem);
    border: 1px solid rgba(226, 197, 90, 0.32);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(226, 197, 90, 0.04)),
        rgba(12, 12, 12, 0.98);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    text-align: center;
}

.sunbed-kiosk-success-modal__panel h2 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 7vw, 3.4rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.sunbed-kiosk-success-modal__panel p {
    margin: 0;
    color: rgba(240, 236, 228, 0.7);
}

.sunbed-kiosk-success-modal__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.sunbed-kiosk-success-modal__stats article {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.12), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.03);
}

.sunbed-kiosk-success-modal__stats span {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sunbed-kiosk-success-modal__stats strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 4.6rem);
    line-height: 0.9;
}

.sunbed-kiosk-success-modal__stats small {
    color: rgba(240, 236, 228, 0.68);
}

@media (max-width: 575px) {
    .admin-confirm-modal__actions {
        grid-template-columns: 1fr;
    }

    .sunbed-kiosk {
        align-items: stretch;
    }

    .sunbed-kiosk__panel {
        min-height: calc(100svh - 1.5rem);
        align-content: center;
    }

    .sunbed-kiosk-success-modal__stats {
        grid-template-columns: 1fr;
    }
}

/* ─── Sunbed Consent Capture ─── */
.sunbed-consent-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(226, 197, 90, 0.13), transparent 30%),
        radial-gradient(circle at 90% 86%, rgba(191, 146, 91, 0.16), transparent 34%),
        #090909;
    color: var(--text-primary);
}

.sunbed-consent {
    min-height: 100vh;
    padding: clamp(1rem, 2vw, 1.6rem);
}

.sunbed-consent__shell {
    display: grid;
    gap: 1rem;
    max-width: 96rem;
    margin: 0 auto;
}

.sunbed-consent__header {
    display: grid;
    grid-template-columns: minmax(11rem, 18rem) 1fr;
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: center;
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid rgba(226, 197, 90, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(226, 197, 90, 0.04)),
        rgba(16, 16, 16, 0.92);
}

.sunbed-consent__header img {
    width: 100%;
    height: auto;
}

.sunbed-consent__header h1 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4.2vw, 3.8rem);
    font-weight: 700;
    line-height: 0.94;
    text-transform: uppercase;
}

.sunbed-consent__header p {
    max-width: 48rem;
    margin: 0.55rem 0 0;
    color: rgba(240, 236, 228, 0.72);
}

.sunbed-consent__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.72fr);
    gap: 1rem;
    align-items: start;
}

.sunbed-consent__document,
.sunbed-consent__card {
    border: 1px solid rgba(226, 197, 90, 0.2);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(12, 12, 12, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.sunbed-consent__document {
    overflow: hidden;
}

.sunbed-consent__document-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(226, 197, 90, 0.16);
}

.sunbed-consent__document-head strong {
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sunbed-consent__document-head a,
.sunbed-consent__clear {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sunbed-consent__document object {
    display: block;
    width: 100%;
    height: min(76vh, 56rem);
    background: #201f1d;
}

.sunbed-consent__card {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.sunbed-consent__form-head {
    display: grid;
    gap: 0.45rem;
}

.sunbed-consent__form-head small {
    color: rgba(240, 236, 228, 0.48);
    font-size: 0.72rem;
    line-height: 1.4;
    word-break: break-all;
}

.sunbed-consent__checks {
    display: grid;
    gap: 0.75rem;
    padding: 0.95rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background: rgba(255, 255, 255, 0.025);
}

.sunbed-consent__signature {
    display: grid;
    gap: 0.55rem;
}

.sunbed-consent__signature-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sunbed-consent__signature-head span {
    color: rgba(240, 236, 228, 0.84);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sunbed-consent__clear {
    border: 0;
    background: transparent;
}

.sunbed-consent__signature canvas {
    display: block;
    width: 100%;
    height: 12rem;
    border: 1px solid rgba(226, 197, 90, 0.32);
    background: rgba(255, 255, 255, 0.025);
    touch-action: none;
}

.sunbed-consent__signature p {
    margin: 0;
    color: #ffb4a8;
    font-size: 0.84rem;
}

.sunbed-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.admin-consent-summary {
    display: grid;
    gap: 1rem;
}

.admin-consent-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.admin-consent-history {
    display: grid;
    gap: 0.75rem;
}

.admin-consent-history article {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.15);
    background: rgba(255, 255, 255, 0.025);
}

.admin-consent-history small {
    color: rgba(240, 236, 228, 0.58);
}

@media (max-width: 991px) {
    .sunbed-consent__grid,
    .sunbed-consent__header {
        grid-template-columns: 1fr;
    }

    .sunbed-consent__header img {
        width: min(100%, 17rem);
    }

    .sunbed-consent__document object {
        height: 58vh;
    }
}

@media (max-width: 575px) {
    .sunbed-consent {
        padding: 0.75rem;
    }

    .sunbed-consent__document object {
        height: 46vh;
    }

    .sunbed-consent__actions,
    .sunbed-consent__actions .admin-button {
        width: 100%;
    }
}

/* ─── Laravel Admin App ─── */
.admin-auth-page,
.admin-app-page {
    background:
        radial-gradient(circle at top left, rgba(191, 146, 91, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(226, 197, 90, 0.12), transparent 26%),
        #090909;
    color: var(--text-primary);
}

.admin-app-page {
    --admin-dashboard-overlay-offset: 5.5rem;
    --admin-schedule-drawer-offset: 5.5rem;
}

.admin-auth-page a,
.admin-app-page a {
    color: inherit;
    text-decoration: none;
}

.admin-auth {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
}

.admin-auth__panel {
    padding: clamp(2rem, 4vw, 4rem);
}

.admin-auth__panel--brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(191, 146, 91, 0.03));
}

.admin-auth__panel--form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-auth__brandmark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.admin-auth__brandmark strong {
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-size: 1.5rem;
}

.admin-auth__brandmark small,
.admin-auth__copy p,
.admin-auth__feature-list p,
.admin-auth__header p,
.admin-auth__footer {
    color: rgba(240, 236, 228, 0.72);
}

.admin-auth__brandmark-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(226, 197, 90, 0.32);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-auth__eyebrow,
.admin-shell__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-auth__copy h1,
.admin-auth__header h2,
.admin-topbar h2,
.admin-section-head h3,
.admin-shell__brand h1,
.admin-template-card h4,
.admin-staff-card h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.admin-auth__copy h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 0.95;
}

.admin-auth__copy p {
    max-width: 40rem;
    margin-top: 1.2rem;
    font-size: 1.02rem;
}

.admin-auth__feature-list {
    display: grid;
    gap: 1rem;
}

.admin-auth__feature-list article,
.admin-empty-state {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.admin-auth__feature-list .bb-icon,
.admin-empty-state .bb-icon {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    color: var(--gold-light);
}

.admin-auth__feature-list strong,
.admin-empty-state strong,
.admin-section-head h3,
.admin-kpi-card strong {
    color: var(--text-primary);
}

.admin-auth__card,
.admin-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 14, 14, 0.88);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.admin-auth__card {
    width: min(32rem, 100%);
    padding: 2rem;
}

.admin-auth__header {
    margin-bottom: 1.5rem;
}

.admin-auth__header h2 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 0.94;
}

.admin-auth__form {
    display: grid;
    gap: 1rem;
}

.admin-field {
    display: grid;
    gap: 0.55rem;
    min-width: 0;
}

.admin-field span {
    color: rgba(240, 236, 228, 0.84);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.admin-field select {
    height: 3.5rem;
    padding-right: 2.85rem;
    appearance: none;
    color-scheme: dark;
    border-color: rgba(226, 197, 90, 0.28);
    background-color: rgba(255, 255, 255, 0.03);
    background-image:
        url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23d8c278' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03));
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: right 1rem center, center, center;
    background-size: 0.82rem auto, 100% 100%, 100% 100%;
    cursor: pointer;
}

.admin-field textarea {
    resize: vertical;
}

.admin-field input[readonly] {
    border-color: rgba(226, 197, 90, 0.16);
    background: rgba(226, 197, 90, 0.06);
    color: rgba(240, 236, 228, 0.82);
    cursor: default;
}

input[type="date"],
input[type="datetime-local"],
input[type="time"] {
    color-scheme: dark;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    filter:
        invert(81%)
        sepia(57%)
        saturate(564%)
        hue-rotate(5deg)
        brightness(95%)
        contrast(90%)
        drop-shadow(0 0 0.22rem rgba(226, 197, 90, 0.32));
    transition: filter 0.18s ease, opacity 0.18s ease;
}

input[type="date"]:hover::-webkit-calendar-picker-indicator,
input[type="datetime-local"]:hover::-webkit-calendar-picker-indicator,
input[type="time"]:hover::-webkit-calendar-picker-indicator,
input[type="date"]:focus::-webkit-calendar-picker-indicator,
input[type="datetime-local"]:focus::-webkit-calendar-picker-indicator,
input[type="time"]:focus::-webkit-calendar-picker-indicator {
    filter:
        invert(91%)
        sepia(39%)
        saturate(749%)
        hue-rotate(4deg)
        brightness(102%)
        contrast(92%)
        drop-shadow(0 0 0.3rem rgba(226, 197, 90, 0.48));
}

input[type="date"]:disabled::-webkit-calendar-picker-indicator,
input[type="datetime-local"]:disabled::-webkit-calendar-picker-indicator,
input[type="time"]:disabled::-webkit-calendar-picker-indicator {
    cursor: not-allowed;
    opacity: 0.38;
}

.admin-native-date-picker {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.admin-native-date-picker__source {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.admin-native-date-picker__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admin-native-date-picker__button:disabled {
    cursor: not-allowed;
    opacity: 0.56;
}

.admin-native-date-picker__button:focus-visible,
.admin-native-date-picker.is-open .admin-native-date-picker__button {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-native-date-picker__value {
    min-width: 0;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.admin-native-date-picker.is-placeholder .admin-native-date-picker__value {
    color: rgba(240, 236, 228, 0.44);
}

.admin-native-date-picker__button .bb-icon {
    width: 1rem;
    height: 1rem;
    color: var(--gold-light);
}

.admin-native-date-picker__panel {
    position: fixed;
    z-index: 1220;
    display: grid;
    gap: 0.75rem;
    width: min(22rem, calc(100vw - 2rem));
    padding: 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.3);
    background:
        radial-gradient(circle at 85% 0%, rgba(226, 197, 90, 0.13), transparent 11rem),
        #10100f;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.admin-native-date-picker__panel[hidden] {
    display: none;
}

.admin-native-date-picker__panel::after {
    content: "";
    position: absolute;
    left: var(--date-picker-arrow-left, 1.1rem);
    top: -0.42rem;
    width: 0.8rem;
    height: 0.8rem;
    border-left: 1px solid rgba(226, 197, 90, 0.3);
    border-top: 1px solid rgba(226, 197, 90, 0.3);
    background: #10100f;
    transform: rotate(45deg);
}

.admin-native-date-picker__panel.is-placement-top::after {
    top: auto;
    bottom: -0.42rem;
    border: 0;
    border-right: 1px solid rgba(226, 197, 90, 0.3);
    border-bottom: 1px solid rgba(226, 197, 90, 0.3);
}

.admin-native-date-picker__head,
.admin-native-date-picker__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.admin-native-date-picker__title {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 0.95;
    letter-spacing: 0.08em;
}

.admin-native-date-picker__nav {
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(255, 255, 255, 0.035);
    color: var(--gold-light);
}

.admin-native-date-picker__nav:hover,
.admin-native-date-picker__nav:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.58);
    background: rgba(226, 197, 90, 0.14);
}

.admin-native-date-picker__weekdays,
.admin-native-date-picker__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.28rem;
}

.admin-native-date-picker__weekdays span {
    color: rgba(240, 236, 228, 0.52);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;
}

.admin-native-date-picker__day {
    display: inline-grid;
    place-items: center;
    min-height: 2.35rem;
    border: 1px solid rgba(226, 197, 90, 0.12);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(240, 236, 228, 0.82);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.admin-native-date-picker__day.is-outside-month {
    color: rgba(240, 236, 228, 0.32);
}

.admin-native-date-picker__day.is-today {
    border-color: rgba(226, 197, 90, 0.44);
    color: var(--gold-light);
}

.admin-native-date-picker__day.is-selected {
    border-color: rgba(226, 197, 90, 0.68);
    background: rgba(226, 197, 90, 0.22);
    color: #fff;
}

.admin-native-date-picker__day:hover,
.admin-native-date-picker__day:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.58);
    background: rgba(226, 197, 90, 0.13);
    color: var(--gold-light);
}

.admin-native-date-picker__day:disabled {
    cursor: not-allowed;
    opacity: 0.28;
}

.admin-native-date-picker__foot {
    padding-top: 0.1rem;
}

.admin-datetime-select {
    display: grid;
    grid-template-columns: minmax(9.5rem, 0.95fr) minmax(0, 1.05fr);
    gap: 0.55rem;
}

.admin-clockpicker {
    position: relative;
    min-width: 0;
}

.admin-clockpicker__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admin-clockpicker__trigger span:first-child {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.admin-clockpicker__trigger .bb-icon {
    width: 0.82rem;
    height: 0.82rem;
    color: var(--gold-light);
    transition: transform 0.2s ease;
}

.admin-clockpicker.is-open .admin-clockpicker__trigger,
.admin-clockpicker__trigger:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-clockpicker.is-open .admin-clockpicker__trigger .bb-icon {
    transform: rotate(180deg);
}

.admin-clockpicker__popover {
    position: fixed;
    inset: auto auto auto auto;
    z-index: 1200;
    display: grid;
    gap: 0.75rem;
    width: min(21rem, calc(100vw - 2rem));
    padding: 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.3);
    background:
        radial-gradient(circle at 85% 0%, rgba(226, 197, 90, 0.12), transparent 11rem),
        #10100f;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.admin-clockpicker__popover[hidden] {
    display: none;
}

.admin-clockpicker__popover::after {
    content: "";
    position: absolute;
    left: var(--clockpicker-arrow-left, 1.1rem);
    bottom: -0.42rem;
    width: 0.8rem;
    height: 0.8rem;
    border-right: 1px solid rgba(226, 197, 90, 0.3);
    border-bottom: 1px solid rgba(226, 197, 90, 0.3);
    background: #10100f;
    transform: rotate(45deg);
}

.admin-clockpicker.is-placement-bottom .admin-clockpicker__popover::after,
.admin-clockpicker__popover.is-placement-bottom::after {
    top: -0.42rem;
    bottom: auto;
    border: 0;
    border-left: 1px solid rgba(226, 197, 90, 0.3);
    border-top: 1px solid rgba(226, 197, 90, 0.3);
}

.admin-clockpicker__head,
.admin-clockpicker__foot,
.admin-clockpicker__tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-clockpicker__head > div {
    display: grid;
    gap: 0.22rem;
}

.admin-clockpicker__head span,
.admin-clockpicker__foot span {
    color: rgba(240, 236, 228, 0.6);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.admin-clockpicker__head strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 2.25rem;
    line-height: 0.9;
}

.admin-clockpicker__close {
    display: inline-grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1;
}

.admin-clockpicker__tabs {
    justify-content: stretch;
    padding: 0.22rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background: rgba(0, 0, 0, 0.18);
}

.admin-clockpicker__tabs button {
    flex: 1 1 0;
    min-height: 2.25rem;
    border: 0;
    background: transparent;
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-clockpicker__tabs button[aria-selected="true"] {
    background: rgba(226, 197, 90, 0.14);
    color: var(--gold-light);
}

.admin-clockpicker__dial {
    position: relative;
    width: 14rem;
    height: 14rem;
    margin: 0.35rem auto;
    border: 1px solid rgba(226, 197, 90, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(226, 197, 90, 0.14) 0 0.22rem, transparent 0.23rem),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015) 62%, rgba(0, 0, 0, 0.22) 100%);
}

.admin-clockpicker__dial[hidden] {
    display: none;
}

.admin-clockpicker__pin {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--gold-light);
    transform: translate(-50%, -50%);
}

.admin-clockpicker__tick {
    position: absolute;
    inset: 50% auto auto 50%;
    display: inline-grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: rgba(240, 236, 228, 0.74);
    font-size: 0.78rem;
    font-weight: 900;
    transform:
        translate(-50%, -50%)
        rotate(var(--clock-angle))
        translateY(calc(var(--clock-radius) * -1))
        rotate(calc(var(--clock-angle) * -1));
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.admin-clockpicker__tick--inner {
    width: 2rem;
    height: 2rem;
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.7rem;
}

.admin-clockpicker__tick--minute {
    width: 2.8rem;
    height: 2.8rem;
}

.admin-clockpicker__tick:hover,
.admin-clockpicker__tick:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.11);
    color: var(--gold-light);
}

.admin-clockpicker__tick.is-selected {
    border-color: rgba(226, 197, 90, 0.58);
    background: rgba(226, 197, 90, 0.22);
    color: #fff;
}

.admin-clockpicker__foot {
    padding-top: 0.15rem;
}

.admin-field select option {
    background: #151515 !important;
    color: var(--text-primary) !important;
}

.admin-field select option:checked {
    background: #3a321b !important;
    color: #fff !important;
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-themed-select {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.admin-themed-select__native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.admin-themed-select__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    cursor: pointer;
}

.admin-themed-select__button:focus-visible,
.admin-themed-select.is-open .admin-themed-select__button {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-themed-select.is-invalid .admin-themed-select__button {
    border-color: rgba(220, 78, 78, 0.72);
    box-shadow: 0 0 0 3px rgba(220, 78, 78, 0.12);
}

.admin-themed-select.is-disabled .admin-themed-select__button {
    cursor: not-allowed;
    opacity: 0.62;
}

.admin-themed-select.is-placeholder .admin-themed-select__value {
    color: rgba(240, 236, 228, 0.56);
}

.admin-themed-select__value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-themed-select__chevron {
    flex: 0 0 auto;
    width: 0.82rem;
    height: 0.55rem;
    background: var(--gold-light);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.22s ease;
}

.admin-themed-select.is-open .admin-themed-select__chevron {
    transform: rotate(180deg);
}

.admin-themed-select__menu {
    position: fixed;
    z-index: 1160;
    display: grid;
    gap: 0.18rem;
    max-height: min(18rem, 48vh);
    padding: 0.38rem;
    overflow: auto;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background-color: #111;
    background-image:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.admin-themed-select__menu[hidden] {
    display: none;
}

.admin-themed-select__option {
    width: 100%;
    min-height: 2.55rem;
    padding: 0.68rem 0.78rem;
    border: 0;
    background: #151515;
    color: rgba(240, 236, 228, 0.82);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    cursor: pointer;
}

.admin-themed-select__option:hover,
.admin-themed-select__option:focus-visible,
.admin-themed-select__option[aria-selected="true"] {
    outline: none;
    background: #2a2418;
    color: #fff;
}

.admin-themed-select__option[aria-selected="true"] {
    box-shadow: inset 3px 0 0 var(--gold-light);
}

.admin-themed-select__option:disabled {
    color: rgba(240, 236, 228, 0.42);
    cursor: not-allowed;
}

.admin-themed-select__group {
    padding: 0.65rem 0.78rem 0.25rem;
    color: rgba(226, 197, 90, 0.74);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-check-field {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(240, 236, 228, 0.76);
    font-size: 0.94rem;
}

.admin-check-field input {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    margin-top: 0.32rem;
    accent-color: var(--gold-light);
}

.admin-check-field--compact {
    align-items: center;
}

.admin-check-field--compact input {
    margin-top: 0;
}

.admin-check-field a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.admin-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.15rem;
    border: 1px solid transparent;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.admin-button--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.admin-button--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #111;
}

.admin-button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.admin-button--ghost:hover {
    border-color: rgba(226, 197, 90, 0.48);
    color: var(--gold-light);
}

.admin-button--danger {
    background: rgba(170, 42, 32, 0.26);
    border-color: rgba(255, 132, 118, 0.48);
    color: #ffd9d9;
}

.admin-button--danger:hover {
    background: rgba(170, 42, 32, 0.42);
    border-color: rgba(255, 132, 118, 0.74);
    color: #fff2f2;
}

.admin-button--compact {
    min-height: 2.3rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
}

.admin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.admin-mobile-inline-action {
    display: none !important;
}

.admin-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.96rem;
}

.admin-alert--success {
    background: rgba(58, 130, 92, 0.14);
    border-color: rgba(58, 130, 92, 0.38);
    color: #d7f6e2;
}

.admin-alert--error {
    background: rgba(155, 51, 51, 0.14);
    border-color: rgba(196, 83, 83, 0.34);
    color: #ffd9d9;
}

.admin-auth__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.35rem;
    font-size: 0.92rem;
}

.admin-auth__footer a {
    color: var(--gold-light);
}

.admin-shell {
    --admin-mobile-topbar-height: 3.75rem;
    --admin-dashboard-bg:
        radial-gradient(circle at 14% 0%, rgba(191, 146, 91, 0.16), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(226, 197, 90, 0.1), transparent 26%),
        #0e0e0e;
    --admin-dashboard-chrome:
        linear-gradient(180deg, rgba(191, 146, 91, 0.12), rgba(255, 255, 255, 0.015)),
        #0a0a0a;
    --admin-dashboard-card:
        linear-gradient(145deg, rgba(191, 146, 91, 0.12), rgba(255, 255, 255, 0.025) 46%, rgba(226, 197, 90, 0.05)),
        var(--bg-card);
    --admin-dashboard-card-alt:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025) 48%, rgba(191, 146, 91, 0.1)),
        var(--bg-card);
    --admin-dashboard-card-border: rgba(226, 197, 90, 0.22);
    --admin-dashboard-card-border-alt: rgba(191, 146, 91, 0.28);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 19.5rem minmax(0, 1fr);
    min-width: 0;
    background: var(--admin-dashboard-bg);
}

.admin-menu-toggle,
.admin-menu-close,
.admin-menu-backdrop {
    display: none;
}

.admin-shell__sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.35rem;
    border-right: 1px solid rgba(226, 197, 90, 0.14);
    background: var(--admin-dashboard-chrome);
}

.admin-sidebar__logo {
    display: inline-flex;
    width: min(17.4rem, 100%);
    margin-bottom: 1.2rem;
}

.admin-sidebar__logo img {
    width: 100%;
    height: auto;
}

.admin-shell__brand h1 {
    font-size: 2.2rem;
    line-height: 0.95;
}

.admin-shell__brand p,
.admin-topbar p,
.admin-kpi-card small,
.admin-definition-list dd,
.admin-template-card p,
.admin-template-card small,
.admin-staff-card p,
.admin-table td span {
    color: rgba(240, 236, 228, 0.68);
}

.admin-shell__nav {
    display: grid;
    gap: 0.4rem;
}

.admin-shell__nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 3rem;
    padding: 0.75rem 0.95rem;
    border: 1px solid transparent;
    color: rgba(240, 236, 228, 0.74);
}

.admin-shell__nav-label {
    display: block;
    margin: 0.95rem 0 0.2rem;
    padding: 0 0.95rem;
    color: rgba(226, 197, 90, 0.66);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.admin-shell__nav a .bb-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: rgba(240, 236, 228, 0.54);
}

.admin-shell__nav a small {
    margin-left: auto;
    color: rgba(226, 197, 90, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-shell__nav a:hover,
.admin-shell__nav a.is-active {
    border-color: rgba(226, 197, 90, 0.2);
    background: rgba(226, 197, 90, 0.08);
    color: var(--text-primary);
}

.admin-shell__nav a:hover .bb-icon,
.admin-shell__nav a.is-active .bb-icon {
    color: var(--gold-light);
}

.admin-shell__sidebar-note {
    margin-top: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.admin-shell__sidebar-actions {
    display: none;
    gap: 0.65rem;
}

.admin-shell__sidebar-actions form,
.admin-shell__sidebar-actions .admin-button {
    width: 100%;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(240, 236, 228, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-badge--gold {
    border-color: rgba(226, 197, 90, 0.3);
    background: rgba(226, 197, 90, 0.1);
    color: var(--gold-light);
}

.admin-badge--danger {
    border-color: rgba(255, 132, 118, 0.38);
    background: rgba(170, 42, 32, 0.16);
    color: #ffd9d9;
}

.admin-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.9rem;
    padding: 0.36rem 0.66rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(240, 236, 228, 0.74);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-status-pill--gold {
    border-color: rgba(226, 197, 90, 0.3);
    background: rgba(226, 197, 90, 0.1);
    color: var(--gold-light);
}

.admin-status-pill--danger {
    border-color: rgba(255, 132, 118, 0.38);
    background: rgba(170, 42, 32, 0.16);
    color: #ffd9d9;
}

.admin-toggle-card {
    margin-top: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.03)),
        rgba(0, 0, 0, 0.14);
}

.admin-toggle-card summary {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    min-height: 3.5rem;
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.admin-toggle-card summary::-webkit-details-marker {
    display: none;
}

.admin-toggle-card summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    color: var(--gold-light);
    font-weight: 900;
}

.admin-toggle-card[open] summary::after {
    content: "-";
}

.admin-toggle-card summary strong,
.admin-toggle-card summary small {
    display: block;
}

.admin-toggle-card summary small {
    margin-top: 0.1rem;
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.76rem;
}

.admin-toggle-card > .admin-table-wrap {
    max-height: 20rem;
    overflow: auto;
    border-top: 1px solid rgba(226, 197, 90, 0.14);
}

.admin-toggle-card--compact summary {
    min-height: 3.1rem;
    padding: 0.72rem 0.85rem;
}

.admin-table-open-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.62rem 0.95rem;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    background: var(--bs-info-dim);
    color: var(--bs-info);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-table-open-button:hover,
.admin-table-open-button:focus-visible {
    outline: none;
    border-color: var(--bs-info);
    background: var(--bs-info);
    color: #0e0e0e;
    transform: translateY(-1px);
}

.admin-shell__main {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1rem;
    min-width: 0;
}

.admin-card {
    padding: 1.15rem;
    min-width: 0;
    overflow: hidden;
    border-color: var(--admin-dashboard-card-border);
    background: var(--admin-dashboard-card);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.admin-card:nth-of-type(even) {
    border-color: var(--admin-dashboard-card-border-alt);
    background: var(--admin-dashboard-card-alt);
}

.admin-shell .admin-empty-state {
    border-color: rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin: -1rem -1rem 0;
    padding: 0.62rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(226, 197, 90, 0.14);
    background: var(--admin-dashboard-chrome);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: none;
    min-width: 0;
}

.admin-topbar__left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1 1 auto;
    min-width: 0;
}

.admin-topbar__brandmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.15rem;
    min-width: 4.15rem;
    height: 2.45rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.admin-topbar__brandmark img {
    max-width: 100%;
    max-height: 100%;
}

.admin-topbar__mobile-logo {
    display: none;
    align-items: center;
    justify-content: center;
    width: 8.25rem;
    min-width: 8.25rem;
    height: 2.75rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.admin-topbar__mobile-logo img {
    width: 100%;
    height: auto;
}

.admin-topbar__title {
    min-width: 0;
}

.admin-menu-toggle {
    align-items: center;
    gap: 0.55rem;
    min-height: 2.75rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-menu-toggle__hamburger {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.45rem;
    height: 1.05rem;
}

.admin-menu-toggle__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__hamburger span:nth-child(1) {
    transform: translateY(0.47rem) rotate(45deg);
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-0.85rem);
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__hamburger span:nth-child(3) {
    transform: translateY(-0.47rem) rotate(-45deg);
}

.admin-topbar h2 {
    font-size: clamp(1.18rem, 1.7vw, 1.55rem);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(34vw, 34rem);
}

.admin-topbar .admin-shell__eyebrow {
    margin-bottom: 0.28rem;
    font-size: 0.66rem;
}

.admin-topbar p {
    margin: 0.25rem 0 0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(34vw, 36rem);
}

.admin-topbar p span {
    color: rgba(240, 236, 228, 0.3);
}

.admin-topbar__actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.55rem;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.admin-topbar__actions form {
    margin: 0;
}

.admin-topbar__actions .admin-button {
    min-height: 2.65rem;
    padding: 0.62rem 0.8rem;
    font-size: 0.72rem;
}

.admin-topbar__mobile-primary-action {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    min-height: 2.85rem;
    border: 0;
    background: transparent;
    color: var(--gold-light);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-topbar__mobile-primary-action .bb-icon {
    width: 1.24rem;
    height: 1.24rem;
    color: currentColor;
}

.admin-topbar__mobile-primary-action--plus::after {
    content: "+";
    position: absolute;
    right: 0.52rem;
    bottom: 0.52rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.82rem;
    height: 0.82rem;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 2px #0a0a0a;
    color: #111;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.admin-topbar__mobile-primary-action:hover,
.admin-topbar__mobile-primary-action:focus-visible {
    outline: none;
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
}

.admin-customer-search {
    position: relative;
    flex: 1 1 min(28rem, 100%);
    max-width: min(34rem, 42vw);
    min-width: 12rem;
    z-index: 960;
}

.admin-customer-search-toggle,
.admin-customer-search__mobile-head {
    display: none;
}

.admin-customer-search--booking {
    flex: none;
    max-width: none;
    min-width: 0;
    z-index: 1010;
}

.admin-customer-search__field {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 2.75rem;
    margin: 0;
    padding: 0 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.025);
}

.admin-customer-search__field .bb-icon {
    width: 1rem;
    height: 1rem;
    color: var(--gold-light);
    flex: 0 0 auto;
}

.admin-customer-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
    font-size: 0.86rem;
}

.admin-customer-search input::placeholder {
    color: rgba(240, 236, 228, 0.48);
}

.admin-customer-search__results {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    max-height: min(26rem, 70vh);
    overflow-y: auto;
    padding: 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-customer-search__item,
.admin-customer-search__empty {
    display: grid;
    gap: 0.25rem;
    width: 100%;
    padding: 0.8rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    font: inherit;
    text-align: left;
}

.admin-customer-search__item:last-child,
.admin-customer-search__empty:last-child {
    border-bottom: 0;
}

.admin-customer-search__item {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.admin-customer-search__item:hover,
.admin-customer-search__item:focus-visible {
    outline: none;
    background: rgba(226, 197, 90, 0.08);
}

.admin-customer-search__item--split {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    cursor: default;
}

.admin-customer-search__main-link {
    display: grid;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.admin-customer-search__main-link:hover strong,
.admin-customer-search__main-link:focus-visible strong {
    color: var(--gold-light);
}

.admin-customer-search__balance-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    padding: 0.28rem 0.52rem;
    border: 1px solid rgba(226, 197, 90, 0.3);
    background: rgba(226, 197, 90, 0.1);
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-customer-search__balance-link:hover,
.admin-customer-search__balance-link:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.58);
    background: rgba(226, 197, 90, 0.18);
    color: #fff;
}

.admin-customer-search__item strong {
    color: var(--text-primary);
    line-height: 1.2;
}

.admin-customer-search__item span,
.admin-customer-search__item small,
.admin-customer-search__empty {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.78rem;
    line-height: 1.35;
}

.admin-notifications {
    position: relative;
}

.admin-notifications summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 2.85rem;
    min-height: 2.85rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-notifications summary > span:not(.bb-icon) {
    display: none;
}

.admin-notifications summary::-webkit-details-marker {
    display: none;
}

.admin-notifications summary .bb-icon {
    width: 1.24rem;
    height: 1.24rem;
    color: var(--gold-light);
}

.admin-notifications summary strong {
    position: absolute;
    top: 0.32rem;
    right: 0.32rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.02rem;
    height: 1.02rem;
    padding: 0 0.26rem;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 2px #0a0a0a;
    color: #111;
    font-size: 0.6rem;
    letter-spacing: 0;
    line-height: 1;
    transform: translate(28%, -24%);
}

.admin-user-menu {
    position: relative;
}

.admin-user-menu summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    min-height: 2.85rem;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-notifications summary:hover,
.admin-notifications[open] summary,
.admin-user-menu summary:hover,
.admin-user-menu[open] summary {
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
}

.admin-notifications summary:focus-visible,
.admin-user-menu summary:focus-visible {
    outline: 2px solid rgba(226, 197, 90, 0.55);
    outline-offset: 0.12rem;
}

.admin-user-menu summary::-webkit-details-marker {
    display: none;
}

.admin-user-menu summary .bb-icon {
    width: 1.28rem;
    height: 1.28rem;
    color: var(--gold-light);
}

.admin-user-menu__panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 950;
    width: min(17rem, 86vw);
    padding: 0.55rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-user-menu__meta {
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem 0.85rem 0.85rem;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user-menu__meta strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.25;
}

.admin-user-menu__meta small {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.76rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.admin-user-menu__divider {
    height: 1px;
    margin: 0.35rem 0;
    background: rgba(255, 255, 255, 0.08);
}

.admin-user-menu__panel a,
.admin-user-menu__panel button {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.75rem 0.85rem;
    border: 0;
    background: transparent;
    color: rgba(240, 236, 228, 0.78);
    font: inherit;
    font-size: 0.86rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.admin-user-menu__panel a:hover,
.admin-user-menu__panel button:hover {
    background: rgba(226, 197, 90, 0.08);
    color: var(--text-primary);
}

.admin-user-menu__panel .bb-icon {
    color: var(--gold-light);
}

.admin-user-menu__panel form {
    margin: 0;
}

.admin-notifications__panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 950;
    width: min(24rem, 86vw);
    padding: 0.8rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-notifications__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0 0 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-notifications__head-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-notifications__head-actions form {
    margin: 0;
}

.admin-notifications__head a,
.admin-notifications__head button {
    color: var(--gold-light);
}

.admin-notifications__head button {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.admin-notification-item,
.admin-notification-empty {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-notification-item:last-child,
.admin-notification-empty:last-child {
    border-bottom: 0;
}

.admin-notification-item strong,
.admin-notification-empty strong {
    color: var(--text-primary);
}

.admin-notification-item span,
.admin-notification-empty span,
.admin-notification-item small {
    color: rgba(240, 236, 228, 0.64);
}

.admin-notification-item--cancellation strong {
    color: #ffd9d9;
}

.admin-grid {
    display: grid;
    gap: 1.3rem;
    min-width: 0;
}

.admin-grid--kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-grid--split {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

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

.admin-kpi-card {
    display: grid;
    gap: 0.55rem;
}

.admin-kpi-card span {
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-kpi-card strong {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.88;
    color: var(--gold-light);
}

.admin-dashboard-kpis {
    gap: 0.75rem;
}

.admin-dashboard-kpis .admin-kpi-card {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.15rem 0.85rem;
    min-height: 4.9rem;
    padding: 0.78rem 0.9rem;
}

.admin-dashboard-kpis .admin-kpi-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.18rem;
    background: linear-gradient(180deg, rgba(226, 197, 90, 0.84), rgba(191, 146, 91, 0.28));
}

.admin-dashboard-kpis .admin-kpi-card span,
.admin-dashboard-kpis .admin-kpi-card small {
    grid-column: 1;
    min-width: 0;
}

.admin-dashboard-kpis .admin-kpi-card span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    line-height: 1.15;
}

.admin-dashboard-kpis .admin-kpi-card strong {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
    padding: 0.35rem 0.55rem;
    min-width: 3.1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        radial-gradient(circle at 82% 18%, rgba(226, 197, 90, 0.17), transparent 44%),
        rgba(0, 0, 0, 0.14);
    color: var(--gold-light);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    line-height: 0.9;
    text-align: right;
}

.admin-dashboard-kpis .admin-kpi-card small {
    color: rgba(240, 236, 228, 0.56);
    font-size: 0.72rem;
    line-height: 1.2;
}

.admin-section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 42rem;
}

.admin-table th,
.admin-table td {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-table tbody tr[data-admin-row-link] {
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-table tbody tr[data-admin-row-link]:hover,
.admin-table tbody tr[data-admin-row-link]:focus-visible {
    outline: none;
    background-color: rgba(226, 197, 90, 0.075);
    box-shadow: inset 3px 0 0 rgba(226, 197, 90, 0.72);
}

.admin-table--compact th,
.admin-table--compact td {
    padding: 0.72rem 0.65rem;
}

.admin-table td strong {
    display: block;
    color: var(--text-primary);
}

.admin-table-client-link {
    display: inline-flex;
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    text-underline-offset: 0.18em;
    transition: color 0.2s ease;
}

.admin-table-client-link:hover,
.admin-table-client-link:focus-visible {
    outline: none;
    color: var(--gold-light);
    text-decoration: underline;
}

.admin-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    color: var(--gold-light);
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
    text-underline-offset: 0.18em;
}

.admin-whatsapp-link:hover,
.admin-whatsapp-link:focus-visible {
    outline: none;
    color: var(--gold);
    text-decoration: underline;
}

.admin-whatsapp-link .bb-icon {
    font-size: 0.95em;
}

.admin-whatsapp-link span,
.admin-table td .admin-whatsapp-link span {
    color: inherit;
}

.admin-contact-separator {
    display: inline-block;
    margin: 0 0.35rem;
    color: rgba(240, 236, 228, 0.44);
}

.admin-table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.admin-table-actions form {
    margin: 0;
}

.admin-definition-list {
    display: grid;
    gap: 0.9rem;
}

.admin-definition-list div {
    display: grid;
    gap: 0.28rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-definition-list dt {
    color: rgba(240, 236, 228, 0.6);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-definition-list dd {
    margin: 0;
}

.admin-muted-copy {
    color: rgba(240, 236, 228, 0.68);
}

.admin-account-notice {
    border-color: rgba(226, 197, 90, 0.28);
    background: linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025));
}

.admin-account-notice p {
    color: rgba(240, 236, 228, 0.74);
}

.admin-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-inline-actions form {
    margin: 0;
}

.admin-filter-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 0.75rem;
    align-items: end;
    margin-bottom: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-filter-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-filter-bar__actions .admin-button {
    min-height: 3.5rem;
    white-space: nowrap;
}

.admin-filter-bar--audit {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr) auto;
}

.admin-filter-bar--bookings {
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(10rem, 0.75fr) auto;
}

.admin-filter-bar--sunbed-report {
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
}

.admin-booking-history-filter .admin-themed-select__button,
.admin-booking-history-filter select {
    border-color: rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
}

.admin-compact-filter {
    margin: 0;
}

.admin-compact-filter .admin-field {
    min-width: min(14rem, 100%);
}

.admin-compact-filter .admin-field select {
    min-height: 2.65rem;
    height: 2.65rem;
    padding-block: 0.45rem;
}

.admin-compact-filter .admin-themed-select__button {
    min-height: 2.65rem;
    height: 2.65rem;
    padding-block: 0.45rem;
}

.admin-sunbed-card {
    display: grid;
    gap: 1.2rem;
}

.admin-sunbed-status-panel {
    display: grid;
    gap: 1rem;
}

.admin-sunbed-status-panel--collapsed {
    gap: 0;
}

.admin-sunbed-status-panel__summary {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
}

.admin-sunbed-status-panel__summary::-webkit-details-marker {
    display: none;
}

.admin-sunbed-status-panel__summary > span:first-child {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.admin-sunbed-status-panel__summary strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-sunbed-status-panel__summary small {
    color: rgba(240, 236, 228, 0.62);
    line-height: 1.45;
}

.admin-sunbed-status-panel__summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-sunbed-status-panel__summary-action {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.admin-sunbed-status-panel__body {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 197, 90, 0.16);
}

.admin-sunbed-status-toggle {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.2);
}

.admin-sunbed-status-toggle.is-saving {
    opacity: 0.72;
}

.admin-sunbed-status-toggle__control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
}

.admin-sunbed-status-toggle__copy {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.admin-sunbed-status-toggle__copy strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.admin-sunbed-status-toggle__copy small,
.admin-sunbed-status-toggle__message {
    color: rgba(240, 236, 228, 0.64);
    line-height: 1.45;
}

.admin-sunbed-status-toggle__message {
    margin: 0;
    font-size: 0.86rem;
}

.admin-sunbed-status-toggle__control input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.admin-sunbed-status-toggle__switch {
    position: relative;
    display: inline-flex;
    width: 3.5rem;
    height: 1.85rem;
    flex: 0 0 auto;
    border: 1px solid rgba(240, 236, 228, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-sunbed-status-toggle__switch::after {
    content: "";
    position: absolute;
    top: 0.22rem;
    left: 0.22rem;
    width: 1.32rem;
    height: 1.32rem;
    background: rgba(240, 236, 228, 0.72);
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.admin-sunbed-status-toggle__control input:focus-visible + .admin-sunbed-status-toggle__switch {
    border-color: rgba(226, 197, 90, 0.68);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.13);
}

.admin-sunbed-status-toggle__control input:checked + .admin-sunbed-status-toggle__switch {
    border-color: rgba(226, 197, 90, 0.5);
    background: rgba(226, 197, 90, 0.22);
}

.admin-sunbed-status-toggle__control input:checked + .admin-sunbed-status-toggle__switch::after {
    transform: translateX(1.65rem);
    background: var(--gold-light);
}

.admin-sunbed-status-toggle__control input:disabled + .admin-sunbed-status-toggle__switch {
    cursor: wait;
}

.admin-sunbed-consent-panel {
    display: grid;
    gap: 1rem;
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 197, 90, 0.18);
}

.admin-sunbed-consent-panel[hidden] {
    display: none;
}

.admin-sunbed-consent-panel__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}

.admin-sunbed-consent-panel__head h4 {
    margin: 0.2rem 0 0.35rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 0.95;
}

.admin-sunbed-consent-summary {
    display: grid;
    gap: 1rem;
    padding: 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.14);
    background: rgba(255, 255, 255, 0.025);
}

.admin-sunbed-consent-summary__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.admin-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 197, 90, 0.14);
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.82rem;
}

.admin-pagination__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    align-items: center;
}

.admin-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    min-height: 2.35rem;
    padding: 0.55rem 0.72rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-pagination__link:hover,
.admin-pagination__link:focus-visible,
.admin-pagination__link.is-active {
    border-color: rgba(226, 197, 90, 0.5);
    background: rgba(226, 197, 90, 0.14);
    color: var(--gold-light);
}

.admin-pagination__link.is-disabled {
    color: rgba(240, 236, 228, 0.36);
    pointer-events: none;
}

.admin-sunbed-summary .admin-kpi-card,
.admin-sunbed-form {
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-sunbed-summary .admin-kpi-card strong {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.admin-sunbed-summary .admin-kpi-card small {
    color: rgba(240, 236, 228, 0.6);
}

.admin-sunbed-forms {
    align-items: start;
}

.admin-sunbed-form .admin-section-head {
    margin-bottom: 0;
}

.admin-sunbed-ledger {
    display: grid;
    gap: 1rem;
}

.admin-sunbed-ledger-card {
    display: grid;
    gap: 0;
}

.admin-sunbed-ledger-summary {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
}

.admin-sunbed-ledger-summary::-webkit-details-marker {
    display: none;
}

.admin-sunbed-ledger-summary > span:first-child {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.admin-sunbed-ledger-summary strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-sunbed-ledger-summary small {
    color: rgba(240, 236, 228, 0.62);
    line-height: 1.45;
}

.admin-sunbed-ledger-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-sunbed-ledger-summary__action {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.admin-sunbed-ledger-card[open] .admin-sunbed-ledger-summary {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 197, 90, 0.16);
}

.admin-sunbed-ledger-card[open] .admin-sunbed-ledger-summary__action {
    color: rgba(240, 236, 228, 0.78);
}

.admin-sunbed-ledger-scroll {
    max-height: clamp(22rem, 56vh, 34rem);
    overflow: auto;
    overscroll-behavior: contain;
    padding-right: 0.2rem;
    scrollbar-width: thin;
}

.admin-sunbed-table {
    min-width: 54rem;
}

.admin-sunbed-table form {
    margin: 0;
}

.admin-booking-form {
    display: grid;
    gap: 1.4rem;
    min-width: 0;
}

.admin-form-section {
    display: grid;
    gap: 1rem;
}

.admin-choice-grid,
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.admin-choice-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.admin-form-grid--booking-details {
    align-items: start;
}

.admin-duration-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.9rem;
    align-items: start;
}

.admin-duration-fields__note {
    grid-column: 1 / -1;
    line-height: 1.45;
}

.admin-form-grid--booking-details .admin-field {
    align-content: start;
}

.admin-form-grid--booking-details .admin-field input,
.admin-form-grid--booking-details .admin-field select,
.admin-form-grid--booking-details .admin-slot-picker__button {
    display: block;
    height: 3.6rem;
    min-height: 3.6rem;
    line-height: 1.2;
}

.admin-form-grid--booking-details .admin-field input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
}

.admin-slot-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    margin-top: -0.25rem;
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(226, 197, 90, 0.05);
    text-align: center;
}

.admin-slot-status .bb-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--gold-light);
    flex: 0 0 auto;
}

.admin-slot-status .admin-muted-copy {
    line-height: 1.35;
}

.admin-slot-picker {
    position: relative;
    min-width: 0;
}

.admin-slot-picker__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.94rem;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admin-slot-picker__button .bb-icon {
    width: 0.82rem;
    height: 0.82rem;
    color: var(--gold-light);
    transition: transform 0.2s ease;
}

.admin-slot-picker__button:disabled {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(240, 236, 228, 0.46);
    cursor: not-allowed;
}

.admin-slot-picker.is-open .admin-slot-picker__button,
.admin-slot-picker__button:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-slot-picker.is-open .admin-slot-picker__button .bb-icon {
    transform: rotate(180deg);
}

.admin-slot-picker.has-error .admin-slot-picker__button {
    border-color: rgba(196, 83, 83, 0.64);
    box-shadow: 0 0 0 3px rgba(196, 83, 83, 0.12);
}

.admin-slot-picker__menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    z-index: 980;
    display: grid;
    gap: 0.35rem;
    max-height: min(20rem, 52vh);
    overflow-y: auto;
    padding: 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-slot-picker__menu[hidden] {
    display: none;
}

.admin-slot-picker__option {
    display: grid;
    gap: 0.18rem;
    width: 100%;
    min-height: 3.15rem;
    padding: 0.72rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.035)),
        rgba(255, 255, 255, 0.02);
    color: rgba(240, 236, 228, 0.78);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-slot-picker__option strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.15;
}

.admin-slot-picker__option small {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.74rem;
    line-height: 1.2;
}

.admin-slot-picker__option:hover,
.admin-slot-picker__option:focus-visible,
.admin-slot-picker__option.is-selected {
    outline: none;
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.1);
    color: var(--text-primary);
}

.admin-slot-picker__option:hover {
    transform: translateY(-1px);
}

.admin-slot-picker__option.is-selected {
    box-shadow: inset 0 0 0 1px rgba(226, 197, 90, 0.2);
}

.admin-date-picker__button .bb-icon {
    width: 1rem;
    height: 1rem;
}

.admin-date-picker__menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: min(22rem, 56vh);
}

.admin-date-picker__option {
    min-height: 4rem;
    align-content: center;
    text-align: center;
}

.admin-date-picker__option strong {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.admin-date-picker__option small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-choice-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-choice-card:hover {
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.4);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.025);
}

.admin-choice-card input {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    margin-top: 0.25rem;
    accent-color: var(--gold-light);
}

.admin-choice-card input:checked + span strong {
    color: var(--gold-light);
}

.admin-choice-card strong,
.admin-choice-card small,
.admin-choice-card em {
    display: block;
}

.admin-choice-card strong {
    color: var(--text-primary);
}

.admin-choice-card small,
.admin-choice-card em {
    color: rgba(240, 236, 228, 0.68);
}

.admin-choice-card em {
    margin-top: 0.35rem;
    font-style: normal;
}

.admin-choice-grid--compact .admin-choice-card {
    padding: 0.75rem;
}

.admin-choice-grid--compact .admin-choice-card strong {
    font-size: 0.92rem;
}

.admin-service-line {
    display: block;
    color: rgba(240, 236, 228, 0.8);
    line-height: 1.45;
}

.admin-choice-card--stacked {
    grid-template-columns: auto minmax(0, 1fr);
}

.admin-choice-card__controls {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.admin-choice-card__controls > span {
    display: grid;
    gap: 0.35rem;
}

.admin-choice-card__controls span span {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.admin-choice-card__controls input[type="text"] {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text-primary);
}

.admin-choice-card__controls select {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.7rem 2.4rem 0.7rem 0.8rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background:
        url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23d8c278' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 0.8rem center / 0.82rem auto no-repeat,
        rgba(0, 0, 0, 0.18);
    color: var(--text-primary);
    color-scheme: dark;
    appearance: none;
}

.admin-choice-card:has(.admin-themed-select.is-open) {
    position: relative;
    z-index: 25;
}

.admin-choice-card__controls .admin-themed-select.is-open {
    z-index: 30;
}

.admin-choice-card__controls .admin-themed-select__menu {
    background-color: #111;
    background-image:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.035));
}

.admin-choice-card__controls .admin-themed-select__option,
.admin-choice-card__controls select option {
    background: #151515 !important;
    color: var(--text-primary) !important;
}

.admin-shell select option,
.admin-shell select optgroup,
.admin-choice-card__controls select option {
    background: #151515 !important;
    color: var(--text-primary) !important;
}

.admin-shell select option:checked,
.admin-choice-card__controls select option:checked {
    background: #3a321b !important;
    color: #fff !important;
}

.admin-shell select option:disabled,
.admin-choice-card__controls select option:disabled {
    color: rgba(240, 236, 228, 0.46);
}

.admin-choice-card__controls select:focus {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-choice-card__controls .admin-themed-select__button {
    min-height: 2.8rem;
    padding: 0.7rem 0.8rem;
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(0, 0, 0, 0.18);
}

.admin-field--wide {
    grid-column: 1 / -1;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    align-self: end;
    justify-content: flex-end;
    gap: 0.75rem;
}

.admin-action-stack,
.admin-note-list,
.admin-timeline {
    display: grid;
    gap: 1rem;
}

.admin-action-stack form {
    margin: 0;
}

.admin-danger-zone {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 132, 118, 0.36);
    background:
        linear-gradient(145deg, rgba(170, 42, 32, 0.18), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.18);
}

.admin-danger-zone > div {
    display: grid;
    gap: 0.18rem;
}

.admin-danger-zone strong {
    color: #ffd9d9;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-danger-zone p {
    margin: 0;
    color: rgba(240, 236, 228, 0.68);
    line-height: 1.45;
}

.admin-note-list {
    margin-top: 1rem;
}

.admin-note-list article,
.admin-note-list__link,
.admin-timeline li {
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-note-list__link {
    color: inherit;
    text-decoration: none;
    scroll-margin-top: 5.5rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-note-list__link:hover,
.admin-note-list__link:focus-visible,
.admin-note-list__link:target {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.42);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.025);
}

.admin-note-list__link.is-unread {
    border-color: rgba(226, 197, 90, 0.36);
    box-shadow: inset 0 0 0 1px rgba(226, 197, 90, 0.12);
}

.admin-note-list strong,
.admin-note-list small,
.admin-note-list p,
.admin-timeline strong,
.admin-timeline span,
.admin-timeline p,
.admin-timeline small {
    display: block;
}

.admin-note-list small,
.admin-timeline span,
.admin-timeline small {
    color: rgba(240, 236, 228, 0.6);
}

.admin-note-list p,
.admin-timeline p {
    margin: 0.45rem 0 0;
    color: rgba(240, 236, 228, 0.74);
}

.admin-note-list__action-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.9rem;
}

.admin-note-list__content {
    min-width: 0;
}

.admin-note-list__action-row form {
    margin: 0;
}

.admin-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.admin-staff-list,
.admin-template-grid {
    display: grid;
    gap: 0.9rem;
}

.admin-staff-card,
.admin-template-card {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-staff-card-tile {
    display: flex;
    flex-direction: column;
}

.admin-staff-card__meta,
.admin-template-card__head,
.admin-template-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: space-between;
}

.admin-staff-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: auto;
}

.admin-staff-card-actions form {
    margin: 0;
}

.admin-staff-card-actions .admin-button {
    width: 100%;
    min-width: 0;
}

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

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

.admin-placeholder-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-placeholder-groups {
    display: grid;
    gap: 1rem;
}

.admin-placeholder-groups > div {
    display: grid;
    gap: 0.55rem;
}

.admin-placeholder-groups strong {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-resource-list {
    display: grid;
    gap: 0.35rem;
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.86rem;
}

.admin-resource-list__item,
.admin-resource-list a {
    display: grid;
    gap: 0.2rem;
    padding: 0.7rem 0.75rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
    color: inherit;
    text-decoration: none;
}

.admin-resource-list__item .admin-resource-list__main {
    padding: 0;
    border: 0;
    background: transparent;
}

.admin-resource-list a:hover {
    border-color: rgba(226, 197, 90, 0.24);
    background: rgba(226, 197, 90, 0.06);
}

.admin-resource-list__item .admin-resource-list__main:hover,
.admin-resource-list__item .admin-resource-list__main:focus-visible {
    background: transparent;
}

.admin-resource-list a strong {
    color: var(--text-primary);
}

.admin-stat-list {
    display: grid;
    gap: 0.85rem;
}

.admin-stat-row {
    display: grid;
    gap: 0.55rem;
}

.admin-stat-row > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(240, 236, 228, 0.7);
    font-size: 0.86rem;
}

.admin-stat-row strong {
    color: var(--text-primary);
}

.admin-stat-meter {
    height: 0.6rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.admin-stat-meter span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.admin-hours-grid,
.admin-schedule-staff-list {
    display: grid;
    gap: 0.8rem;
}

.admin-schedule-editor {
    gap: 1rem;
}

.admin-schedule-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.admin-schedule-launch-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    min-height: 5.2rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.025);
    color: var(--text-primary);
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-schedule-launch-card:hover,
.admin-schedule-launch-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.42);
    outline: none;
}

.admin-schedule-launch-card--shop {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 5.8rem;
}

.admin-schedule-launch-card__icon {
    display: inline-grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
}

.admin-schedule-launch-card__icon .bb-icon,
.admin-schedule-launch-card > .bb-icon {
    width: 1rem;
    height: 1rem;
}

.admin-schedule-launch-card__copy {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.admin-schedule-launch-card__copy > span {
    color: rgba(226, 197, 90, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-schedule-launch-card__copy strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-schedule-launch-card__copy small,
.admin-schedule-staff-summary span,
.admin-schedule-drawer__head p {
    color: rgba(240, 236, 228, 0.68);
}

.admin-schedule-drawer {
    position: fixed;
    inset: var(--admin-dashboard-overlay-offset, var(--admin-schedule-drawer-offset, 5.5rem)) 0 0;
    z-index: 850;
    visibility: hidden;
    pointer-events: none;
}

.admin-schedule-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.admin-schedule-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    transition: background-color 0.22s ease;
}

.admin-schedule-drawer.is-open .admin-schedule-drawer__backdrop {
    background: rgba(0, 0, 0, 0.62);
}

.admin-schedule-drawer__panel {
    position: absolute;
    inset: 0 0 0 auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(37rem, calc(100vw - 2rem));
    border-left: 1px solid rgba(226, 197, 90, 0.28);
    background:
        radial-gradient(circle at 100% 0%, rgba(226, 197, 90, 0.1), transparent 32rem),
        #10100f;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
    transform: translateX(104%);
    transition: transform 0.24s ease;
}

.admin-schedule-drawer.is-open .admin-schedule-drawer__panel {
    transform: translateX(0);
}

.admin-schedule-drawer__head,
.admin-schedule-drawer__foot {
    padding: 1.25rem;
    border-color: rgba(255, 255, 255, 0.08);
}

.admin-schedule-drawer__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-schedule-drawer__head h3 {
    margin: 0.35rem 0 0;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 0.9;
}

.admin-schedule-drawer__head p {
    margin: 0.6rem 0 0;
}

.admin-schedule-drawer__close {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 1.45rem;
    line-height: 1;
}

.admin-schedule-drawer__body {
    min-height: 0;
    overflow-y: auto;
    padding: 1rem 1.25rem;
}

.admin-schedule-drawer__foot {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.admin-hours-row.admin-hours-row--drawer {
    grid-template-columns: minmax(5.8rem, 1fr) auto minmax(6.4rem, 0.7fr) minmax(6.4rem, 0.7fr);
    padding: 0.72rem;
}

.admin-schedule-staff-summary {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding: 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background: rgba(226, 197, 90, 0.045);
}

.admin-schedule-staff-summary strong {
    display: block;
    color: var(--text-primary);
}

body.is-schedule-drawer-open {
    overflow: hidden;
}

.admin-hours-row {
    display: grid;
    grid-template-columns: minmax(7rem, 1fr) auto minmax(8rem, 0.75fr) minmax(8rem, 0.75fr);
    gap: 0.75rem;
    align-items: end;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-hours-row--compact {
    grid-template-columns: minmax(6rem, 1fr) auto minmax(7rem, 0.65fr) minmax(7rem, 0.65fr);
    padding: 0.7rem;
}

.admin-hours-row > strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-schedule-staff-card,
.admin-note-list__item {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-note-list__item + .admin-note-list__item {
    margin-top: 0.8rem;
}

.admin-note-list__item strong,
.admin-note-list__item span,
.admin-note-list__item p {
    display: block;
}

.admin-note-list__item strong {
    color: var(--text-primary);
}

.admin-note-list__item span,
.admin-note-list__item p {
    margin: 0;
    color: rgba(240, 236, 228, 0.68);
}

.admin-placeholder-list code {
    display: inline-flex;
    padding: 0.28rem 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.07);
    color: var(--gold-light);
    font-size: 0.78rem;
}

.admin-grid--email-editor {
    grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
}

.admin-grid--campaign-builder {
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.75fr);
    align-items: start;
}

.admin-campaign-kpis {
    margin-bottom: 1.25rem;
}

.admin-campaign-window-fields {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.admin-campaign-window-fields > small {
    grid-column: 1 / -1;
    color: rgba(240, 236, 228, 0.58);
}

.admin-campaign-purpose-note {
    display: block;
    margin-top: 0.35rem;
    color: rgba(226, 197, 90, 0.76);
}

.admin-campaign-confirm {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.07);
}

.admin-campaign-confirm strong,
.admin-campaign-confirm small {
    display: block;
}

.admin-campaign-confirm strong {
    color: rgba(255, 255, 255, 0.88);
}

.admin-campaign-confirm small {
    margin-top: 0.18rem;
    color: rgba(240, 236, 228, 0.62);
}

.admin-campaign-side,
.admin-campaign-template-card,
.admin-campaign-scenarios {
    display: grid;
    gap: 1rem;
}

.admin-campaign-template-card {
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.02);
}

.admin-campaign-template-card strong,
.admin-campaign-scenarios strong {
    color: var(--text-primary);
}

.admin-campaign-template-card p,
.admin-campaign-scenarios p {
    margin: 0;
    color: rgba(240, 236, 228, 0.66);
}

.admin-campaign-scenarios {
    gap: 0.55rem;
}

.admin-campaign-scenarios article {
    padding: 0.82rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.admin-campaign-scenarios article.is-active {
    border-color: rgba(226, 197, 90, 0.28);
    background: rgba(226, 197, 90, 0.08);
}

.admin-campaign-preview {
    margin-top: 1.25rem;
}

.admin-email-preview,
.admin-email-preview > div {
    display: grid;
    gap: 0.65rem;
}

.admin-email-preview {
    gap: 1rem;
}

.admin-email-preview__frame {
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: #f3efe6;
}

.admin-email-preview__frame iframe {
    display: block;
    width: 100%;
    height: 42rem;
    border: 0;
    background: #f3efe6;
}

.admin-email-preview strong {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-email-preview p {
    margin: 0;
    color: var(--text-primary);
}

.admin-email-preview__html,
.admin-email-preview pre {
    max-height: 20rem;
    overflow: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(240, 236, 228, 0.8);
}

.admin-email-preview__details summary {
    cursor: pointer;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-email-preview__html p:last-child {
    margin-bottom: 0;
}

.admin-email-preview pre {
    white-space: pre-wrap;
    font-size: 0.84rem;
}

.admin-test-email-form {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-customer-picker {
    display: grid;
    gap: 0.45rem;
    max-height: 18rem;
    overflow-y: auto;
    padding: 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(0, 0, 0, 0.18);
}

.admin-customer-picker[hidden] {
    display: none;
}

.admin-customer-picker__item {
    display: grid;
    gap: 0.22rem;
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(240, 236, 228, 0.74);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-customer-picker__item:hover,
.admin-customer-picker__item:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.38);
    background: rgba(226, 197, 90, 0.08);
}

.admin-customer-picker__item strong {
    color: var(--text-primary);
}

.admin-customer-picker__item span,
.admin-customer-picker__item small {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.78rem;
}

.admin-day-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.85rem;
}

.admin-day-column {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 18rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-day-column__head {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-day-column__head strong {
    color: var(--text-primary);
}

.admin-day-column__head span {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-day-column__body {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    padding: 0.75rem;
}

.admin-flag-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-flag-list article {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.95rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-flag-list article > div {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.admin-flag-list strong {
    color: var(--text-primary);
}

.admin-flag-list small,
.admin-flag-list p {
    margin: 0;
    color: rgba(240, 236, 228, 0.64);
}

.admin-flag-list__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem 0.7rem;
}

.admin-flag-list__meta span {
    display: inline-flex;
}

.admin-flag-list__meta .is-overdue {
    color: #ffd9d9;
    font-weight: 800;
}

.admin-flag-list__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.admin-flag-list__actions form {
    margin: 0;
}

.admin-flag-form {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-dashboard-todo-list {
    display: grid;
    gap: 0.65rem;
}

.admin-dashboard-todo-list__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-dashboard-todo-list__item:hover,
.admin-dashboard-todo-list__item:focus-visible {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.42);
}

.admin-dashboard-todo-list__item > span:first-child {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.admin-dashboard-todo-list__item strong {
    color: var(--text-primary);
}

.admin-dashboard-todo-list__item small {
    overflow: hidden;
    color: rgba(240, 236, 228, 0.64);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-audit-list {
    display: grid;
    gap: 0.75rem;
}

.admin-audit-item {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-audit-item > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-audit-item strong {
    color: var(--text-primary);
}

.admin-audit-item p,
.admin-audit-item small {
    margin: 0;
    color: rgba(240, 236, 228, 0.62);
}

.admin-audit-item details summary {
    cursor: pointer;
    color: var(--gold-light);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-audit-item pre {
    max-height: 16rem;
    overflow: auto;
    margin: 0.55rem 0 0;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(240, 236, 228, 0.78);
    font-size: 0.78rem;
    white-space: pre-wrap;
}

.admin-preset-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.admin-week-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-week-toolbar__label {
    flex: 1 1 auto;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-week-toolbar__actions {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.38rem;
    margin-left: auto;
    max-width: 100%;
}

.admin-view-toggle {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(0, 0, 0, 0.18);
}

.admin-view-toggle a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.72rem;
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-view-toggle a + a {
    border-left: 1px solid rgba(226, 197, 90, 0.16);
}

.admin-view-toggle__short,
.admin-week-toolbar__current-short {
    display: none;
}

.admin-view-toggle a:hover,
.admin-view-toggle a:focus-visible,
.admin-view-toggle a.is-active {
    outline: none;
    background: rgba(226, 197, 90, 0.16);
    color: var(--gold-light);
}

.admin-week-toolbar__arrow {
    width: 2.45rem;
    padding-inline: 0.65rem;
}

.admin-week-toolbar__arrow .bb-icon {
    width: 0.9rem;
    height: 0.9rem;
}

.admin-calendar-staff-strip {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: -0.15rem 0 0.75rem;
    overflow-x: auto;
    padding: 0.2rem 0 0.3rem;
    scrollbar-width: thin;
}

.admin-calendar-staff-strip span {
    flex: 0 0 auto;
    color: rgba(240, 236, 228, 0.56);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-calendar-staff-strip button {
    flex: 0 0 auto;
    min-height: 2.15rem;
    padding: 0.42rem 0.68rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-calendar-staff-strip button:hover,
.admin-calendar-staff-strip button:focus-visible,
.admin-calendar-staff-strip button.is-active {
    outline: none;
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.11);
    color: var(--gold-light);
}

.admin-day-calendar {
    --admin-day-row-height: 1.28rem;
    overflow: auto;
    max-height: min(76vh, 54rem);
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(0, 0, 0, 0.16);
    scroll-padding-left: 4.8rem;
    scroll-snap-type: x proximity;
}

.admin-day-calendar__grid {
    display: grid;
    grid-template-columns: 4.4rem repeat(var(--admin-day-staff-count), minmax(13rem, 1fr));
    grid-template-rows: minmax(4.25rem, auto) repeat(var(--admin-day-row-count, 56), var(--admin-day-row-height, 1.65rem));
    min-width: 60rem;
    isolation: isolate;
}

.admin-day-calendar__corner,
.admin-day-calendar__staff,
.admin-day-calendar__time,
.admin-day-calendar__slot {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-day-calendar__corner,
.admin-day-calendar__staff {
    position: sticky;
    top: 0;
    z-index: 3;
    min-height: 4.25rem;
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.12), rgba(255, 255, 255, 0.035)),
        #10100f;
    box-shadow: 0 0.65rem 1.2rem rgba(0, 0, 0, 0.18);
}

.admin-day-calendar__corner {
    grid-column: 1;
    grid-row: 1;
    left: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-day-calendar__staff {
    display: grid;
    align-content: center;
    gap: 0.18rem;
    padding: 0.7rem 0.75rem;
    scroll-snap-align: start;
}

.admin-day-calendar__staff strong {
    overflow: hidden;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-day-calendar__staff span {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-day-calendar__time {
    position: sticky;
    left: 0;
    z-index: 2;
    display: grid;
    place-items: start center;
    min-height: 0;
    padding-top: 0.35rem;
    background: #0d0d0c;
    box-shadow: 0.55rem 0 1rem rgba(0, 0, 0, 0.16);
}

.admin-day-calendar__time time {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.admin-day-calendar__slot {
    display: grid;
    align-content: start;
    gap: 0.34rem;
    min-height: 0;
    max-height: none;
    overflow: visible;
    padding: 0;
}

.admin-day-calendar__slot.is-hour-start {
    box-shadow: inset 0 1px 0 rgba(226, 197, 90, 0.12);
}

.admin-day-calendar__slot.is-open {
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.055), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.018);
}

.admin-day-calendar__slot.is-closed {
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 0.35rem, transparent 0.35rem 0.7rem),
        rgba(0, 0, 0, 0.2);
}

.admin-day-calendar-job {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 0.12rem;
    align-self: stretch;
    min-height: 0;
    margin: 0.1rem 0.3rem;
    overflow: hidden;
    padding: 0.22rem 0.38rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    border-left: 3px solid rgba(226, 197, 90, 0.72);
    background: rgba(0, 0, 0, 0.34);
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-day-calendar-job[style*="--calendar-lane-count"] {
    width: calc((100% - 0.8rem) / var(--calendar-lane-count));
    margin-right: 0;
    margin-left: calc(0.3rem + (var(--calendar-lane-index) * ((100% - 0.8rem) / var(--calendar-lane-count))));
}

.admin-day-calendar-job:hover,
.admin-day-calendar-job:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.08);
}

.admin-day-calendar-job:active,
.admin-week-calendar-job:active {
    cursor: grabbing;
}

.admin-day-calendar-job__body {
    display: grid;
    grid-template-columns: minmax(4.7rem, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.12rem 0.5rem;
    min-height: 0;
}

.admin-day-calendar-job--preliminary {
    border-left-color: #f0d37a;
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(0, 0, 0, 0.3);
}

.admin-day-calendar-job time {
    color: var(--gold-light);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
}

.admin-day-calendar-job strong,
.admin-day-calendar-job span,
.admin-day-calendar-job small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-day-calendar-job strong {
    color: var(--text-primary);
    font-size: 0.78rem;
    line-height: 1.05;
}

.admin-day-calendar-job span,
.admin-day-calendar-job small {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.62rem;
    line-height: 1.08;
}

.admin-day-calendar-job__summary {
    display: grid;
    gap: 0.03rem;
    min-width: 0;
}

.admin-day-calendar-job__status {
    justify-self: end;
    padding: 0.12rem 0.28rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(226, 197, 90, 0.08);
    color: rgba(226, 197, 90, 0.86) !important;
    font-size: 0.52rem !important;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-day-calendar-job.has-buffer-before,
.admin-day-calendar-job.has-buffer-after,
.admin-week-calendar-job.has-buffer-before,
.admin-week-calendar-job.has-buffer-after {
    background:
        linear-gradient(180deg, rgba(226, 197, 90, 0.055), transparent 35%, transparent 65%, rgba(226, 197, 90, 0.045)),
        rgba(0, 0, 0, 0.34);
}

.admin-calendar-buffer {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0.18rem 0.34rem;
    border: 1px dashed rgba(226, 197, 90, 0.28);
    background: rgba(226, 197, 90, 0.075);
    color: rgba(226, 197, 90, 0.78) !important;
    font-size: 0.56rem !important;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-calendar-buffer--before {
    margin: -0.18rem -0.24rem 0.04rem;
}

.admin-calendar-buffer--after {
    margin: 0.04rem -0.24rem -0.18rem;
}

.admin-calendar-now-line {
    position: relative;
    z-index: 7;
    align-self: start;
    height: 0;
    margin-top: var(--admin-now-offset-size, 0);
    border-top: 2px solid rgba(226, 197, 90, 0.86);
    pointer-events: none;
}

.admin-calendar-now-line::before {
    content: "";
    position: absolute;
    top: -0.28rem;
    left: -0.32rem;
    width: 0.58rem;
    height: 0.58rem;
    background: var(--gold-light);
    box-shadow: 0 0 0 0.18rem rgba(226, 197, 90, 0.18);
}

.admin-calendar-now-line span {
    position: absolute;
    top: -0.72rem;
    left: 0.5rem;
    padding: 0.15rem 0.38rem;
    border: 1px solid rgba(226, 197, 90, 0.32);
    background: #10100f;
    color: var(--gold-light);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-week-calendar {
    overflow: auto;
    max-height: min(76vh, 54rem);
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(0, 0, 0, 0.16);
    scroll-padding-left: 4.8rem;
    scroll-snap-type: x proximity;
}

.admin-week-calendar__grid {
    display: grid;
    grid-template-columns: 4.4rem repeat(7, minmax(13rem, 1fr));
    min-width: 96rem;
    isolation: isolate;
}

.admin-week-calendar__corner,
.admin-week-calendar__day,
.admin-week-calendar__time,
.admin-week-calendar__slot {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-week-calendar__corner,
.admin-week-calendar__day {
    position: sticky;
    top: 0;
    z-index: 3;
    min-height: 4.25rem;
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.12), rgba(255, 255, 255, 0.035)),
        #10100f;
    box-shadow: 0 0.65rem 1.2rem rgba(0, 0, 0, 0.18);
}

.admin-week-calendar__corner {
    left: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-week-calendar__day {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.12rem 0.6rem;
    align-items: center;
    padding: 0.7rem 0.75rem;
    scroll-snap-align: start;
}

.admin-week-calendar__day span,
.admin-week-calendar__day small {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-week-calendar__day strong {
    grid-column: 1;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 0.9;
}

.admin-week-calendar__day small {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
    padding: 0.28rem 0.42rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background: rgba(0, 0, 0, 0.18);
}

.admin-week-calendar__day.is-today {
    box-shadow: inset 0 -2px 0 rgba(226, 197, 90, 0.72);
}

.admin-week-calendar__time {
    position: sticky;
    left: 0;
    z-index: 2;
    display: grid;
    place-items: start center;
    min-height: 4.9rem;
    padding-top: 0.62rem;
    background: #0d0d0c;
    box-shadow: 0.55rem 0 1rem rgba(0, 0, 0, 0.16);
}

.admin-week-calendar__time time {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.admin-week-calendar__slot {
    display: grid;
    align-content: start;
    gap: 0.32rem;
    min-height: 4.9rem;
    max-height: 10rem;
    overflow-y: auto;
    padding: 0.38rem;
}

.admin-week-calendar__slot.is-open {
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.055), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.018);
}

.admin-week-calendar__slot.is-closed {
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 0.35rem, transparent 0.35rem 0.7rem),
        rgba(0, 0, 0, 0.2);
}

.admin-week-calendar__slot.is-today {
    border-left-color: rgba(226, 197, 90, 0.24);
    border-right-color: rgba(226, 197, 90, 0.24);
}

.admin-week-calendar-job {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.4rem;
    align-items: start;
    padding: 0.42rem 0.48rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    border-left: 3px solid rgba(226, 197, 90, 0.72);
    background: rgba(0, 0, 0, 0.34);
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-week-calendar-job:hover,
.admin-week-calendar-job:focus-visible {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.08);
}

.admin-week-calendar-job--preliminary {
    border-left-color: #f0d37a;
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(0, 0, 0, 0.3);
}

.admin-week-calendar-job-group {
    display: grid;
    gap: 0.32rem;
    padding: 0.34rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.02)),
        rgba(0, 0, 0, 0.26);
}

.admin-week-calendar-job-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    min-width: 0;
}

.admin-week-calendar-job-group__head time {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.admin-week-calendar-job-group__head span {
    overflow: hidden;
    max-width: 6.5rem;
    padding: 0.16rem 0.34rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(240, 236, 228, 0.64);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-week-calendar-job-group__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(5.85rem, 1fr));
    gap: 0.3rem;
}

.admin-week-calendar-job--compact {
    grid-template-columns: 1fr;
    gap: 0.22rem;
    min-width: 0;
    padding: 0.38rem 0.4rem;
}

.admin-week-calendar-job time {
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
}

.admin-week-calendar-job--compact time {
    color: rgba(226, 197, 90, 0.78);
    font-size: 0.6rem;
}

.admin-week-calendar-job span {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.admin-week-calendar-job strong {
    overflow: hidden;
    color: var(--text-primary);
    font-size: 0.82rem;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-week-calendar-job small {
    overflow: hidden;
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.68rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-week-calendar-job--compact .admin-calendar-buffer {
    justify-content: flex-start;
    font-size: 0.52rem !important;
}

.admin-calendar-quicklook[hidden] {
    display: none;
}

.admin-calendar-quicklook {
    position: fixed;
    inset: var(--admin-dashboard-overlay-offset, 0) 0 0;
    z-index: 90;
    display: grid;
    justify-items: end;
    pointer-events: none;
}

.admin-calendar-quicklook__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: background-color 0.18s ease, opacity 0.18s ease;
}

.admin-calendar-quicklook__panel {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 1rem;
    width: min(27rem, calc(100vw - 1.4rem));
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding: 1.45rem;
    border-left: 1px solid rgba(226, 197, 90, 0.24);
    background:
        radial-gradient(circle at top right, rgba(226, 197, 90, 0.14), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(226, 197, 90, 0.04)),
        #10100f;
    box-shadow: -1.2rem 0 2.4rem rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: auto;
    transform: translateX(100%);
    transition: opacity 0.18s ease, transform 0.2s ease;
}

.admin-calendar-quicklook.is-open {
    pointer-events: auto;
}

.admin-calendar-quicklook.is-open .admin-calendar-quicklook__backdrop {
    background: rgba(0, 0, 0, 0.46);
    opacity: 1;
}

.admin-calendar-quicklook.is-open .admin-calendar-quicklook__panel {
    opacity: 1;
    transform: translateX(0);
}

.admin-calendar-quicklook__handle {
    display: none;
}

.admin-calendar-quicklook__close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-size: 1.35rem;
    line-height: 1;
}

.admin-calendar-quicklook__panel h3 {
    max-width: calc(100% - 2.8rem);
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 3.1rem);
    letter-spacing: 0.04em;
    line-height: 0.92;
    text-transform: uppercase;
}

.admin-calendar-quicklook__details {
    display: grid;
    gap: 0.55rem;
    margin: 0;
}

.admin-calendar-quicklook__details div {
    display: grid;
    grid-template-columns: 5.2rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.62rem 0;
    border-bottom: 1px solid rgba(226, 197, 90, 0.12);
}

.admin-calendar-quicklook__details dt {
    color: rgba(240, 236, 228, 0.5);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-calendar-quicklook__details dd {
    margin: 0;
    color: rgba(240, 236, 228, 0.84);
    font-size: 0.9rem;
    font-weight: 700;
}

.admin-calendar-quicklook__actions {
    display: grid;
    gap: 0.6rem;
}

.admin-confirm-modal[hidden] {
    display: none;
}

.admin-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2rem);
    pointer-events: none;
}

.admin-confirm-modal.is-open {
    pointer-events: auto;
}

.admin-confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.18s ease;
}

.admin-confirm-modal.is-open .admin-confirm-modal__backdrop {
    opacity: 1;
}

.admin-confirm-modal__panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    width: min(30rem, calc(100vw - 2rem));
    padding: clamp(1.2rem, 3vw, 1.6rem);
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        radial-gradient(circle at top right, rgba(226, 197, 90, 0.16), transparent 15rem),
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.025)),
        #101010;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
    opacity: 0;
    outline: none;
    transform: translateY(0.85rem) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.admin-confirm-modal.is-open .admin-confirm-modal__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.admin-confirm-modal__close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-size: 1.35rem;
    line-height: 1;
}

.admin-confirm-modal__panel h3 {
    max-width: calc(100% - 2.8rem);
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 3.1rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.admin-confirm-modal__panel p {
    margin: 0;
    color: rgba(240, 236, 228, 0.72);
    line-height: 1.6;
}

.admin-confirm-modal__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.2rem;
}

.admin-confirm-modal__actions .admin-button {
    width: 100%;
}

body.has-admin-confirm-modal {
    overflow: hidden;
}

.admin-week-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(10rem, 1fr));
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.admin-week-day {
    display: grid;
    grid-template-rows: auto minmax(12rem, 1fr);
    min-width: 10rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-week-day.is-today {
    border-color: rgba(226, 197, 90, 0.42);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.025);
}

.admin-week-day__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-week-day__head div {
    display: grid;
    gap: 0.2rem;
}

.admin-week-day__head span,
.admin-week-day__head small {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-week-day__head strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 0.9;
}

.admin-week-day__body {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    padding: 0.75rem;
}

.admin-week-day__body > .admin-muted-copy {
    margin: 0;
    font-size: 0.82rem;
}

.admin-week-appointment {
    display: grid;
    gap: 0.22rem;
    padding: 0.75rem;
    border: 1px solid rgba(226, 197, 90, 0.14);
    background: rgba(0, 0, 0, 0.18);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-week-appointment:hover {
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.38);
    background: rgba(226, 197, 90, 0.06);
}

.admin-week-appointment--preliminary {
    border-color: rgba(226, 197, 90, 0.34);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.18);
}

.admin-week-appointment--preliminary time {
    color: var(--gold);
}

.admin-week-appointment--confirmed {
    border-color: rgba(226, 197, 90, 0.18);
}

.admin-week-appointment time {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.admin-week-appointment strong {
    color: var(--text-primary);
    line-height: 1.2;
}

.admin-week-appointment span,
.admin-week-appointment small {
    color: rgba(240, 236, 228, 0.64);
    font-size: 0.78rem;
    line-height: 1.35;
}

/* ─── Customer Booking Area ─── */
.customer-sidebar__logo {
    display: inline-flex;
    width: min(17.4rem, 100%);
    margin-bottom: 1.1rem;
}

.customer-sidebar__logo img {
    width: 100%;
    height: auto;
}

.customer-topbar .admin-topbar__brandmark {
    border-color: transparent;
    background: transparent;
}

.customer-profile-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: center;
}

.customer-profile-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.customer-profile-card p {
    max-width: 45rem;
    margin: 0.75rem 0 0;
    color: rgba(240, 236, 228, 0.72);
}

.customer-profile-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
    align-items: center;
}

.customer-profile-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    min-width: min(19rem, 100%);
}

.customer-profile-card__actions .admin-button {
    width: 100%;
    gap: 0.45rem;
    white-space: nowrap;
}

.admin-shell--customer .admin-choice-card > span,
.admin-shell--customer .admin-card,
.admin-shell--customer .admin-section-head,
.admin-shell--customer .admin-empty-state,
.admin-shell--customer .customer-profile-card {
    min-width: 0;
}

.admin-shell--customer .admin-card p,
.admin-shell--customer .admin-choice-card em,
.admin-shell--customer .admin-choice-card small,
.admin-shell--customer .admin-section-head h3,
.admin-shell--customer .customer-profile-card h3 {
    overflow-wrap: anywhere;
}

.customer-sidebar {
    gap: 0;
    padding-top: 1.35rem;
}

.customer-sidebar__logo {
    margin-bottom: 1.35rem;
}

.customer-sidebar__nav {
    align-content: start;
}

.customer-topbar {
    justify-content: flex-end;
}

.customer-topbar .admin-topbar__left {
    flex: 0 0 auto;
}

.customer-topbar .admin-topbar__actions {
    width: 100%;
}

.customer-topbar .admin-notifications summary {
    justify-content: center;
    width: 2.85rem;
    padding-inline: 0;
}

.customer-topbar .admin-notifications summary > span:not(.bb-icon) {
    display: none;
}

.admin-shell--customer .admin-topbar {
    margin-bottom: 0.85rem;
}

.customer-booking-rows {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.015);
}

.customer-booking-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 10rem;
    gap: 0.9rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--border-subtle);
    background: transparent;
    transition: background-color 0.2s ease;
}

.customer-booking-row:nth-child(odd) {
    background: rgba(201, 162, 39, 0.03);
}

.customer-booking-row:nth-child(even) {
    background: transparent;
}

.customer-booking-row:last-child {
    border-bottom: 0;
}

.customer-booking-row:hover {
    background: rgba(201, 162, 39, 0.075);
}

.customer-booking-row__main {
    display: grid;
    grid-template-columns: minmax(5.2rem, 0.16fr) minmax(0, 1fr) 9rem;
    gap: 1rem;
    align-items: center;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.customer-booking-row__main time {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
    padding: 0.08rem 0 0.08rem 0.78rem;
    border-left: 2px solid var(--bs-info);
    background: transparent;
}

.customer-booking-row__main time strong {
    color: var(--bs-info);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.customer-booking-row__details {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.customer-booking-row__details strong {
    color: var(--text-primary);
}

.customer-booking-row__details small {
    color: rgba(240, 236, 228, 0.64);
    font-size: 0.8rem;
}

.customer-booking-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 2rem;
    padding: 0.38rem 0.68rem;
    border: 1px solid rgba(226, 197, 90, 0.3);
    border-radius: 999px;
    background: rgba(226, 197, 90, 0.1);
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.customer-booking-row__main time span {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.customer-booking-row__actions {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.customer-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.62rem;
    min-width: 2.62rem;
    height: 2.62rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(226, 197, 90, 0.07);
    color: var(--gold-light);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.customer-booking-row__actions .customer-icon-button {
    width: 2.9rem;
    min-width: 2.9rem;
    height: 2.72rem;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(240, 236, 228, 0.78);
    box-shadow: none;
}

.customer-booking-row__actions .customer-icon-button:hover,
.customer-booking-row__actions .customer-icon-button:focus-visible {
    border-color: rgba(226, 197, 90, 0.38);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    transform: translateY(-1px);
}

.customer-booking-row__actions [data-booking-drawer-open].customer-icon-button {
    border-color: var(--border-subtle);
    background: var(--bs-info-dim);
    color: var(--bs-info);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.12);
}

.customer-booking-row__actions [data-booking-drawer-open].customer-icon-button:hover,
.customer-booking-row__actions [data-booking-drawer-open].customer-icon-button:focus-visible {
    border-color: var(--bs-info);
    background: var(--bs-info);
    color: #0e0e0e;
}

.customer-history-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.72rem;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    background: var(--bs-info-dim);
    color: var(--bs-info);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.12);
}

.customer-history-view-button:hover,
.customer-history-view-button:focus-visible {
    outline: none;
    border-color: var(--bs-info);
    background: var(--bs-info);
    color: #0e0e0e;
    transform: translateY(-1px);
}

.customer-history-view-button .bb-icon {
    width: 0.95rem;
    height: 0.95rem;
}

.customer-icon-button:hover,
.customer-icon-button:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.48);
    background: rgba(226, 197, 90, 0.14);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.customer-icon-button .bb-icon {
    width: 1rem;
    height: 1rem;
}

.customer-icon-button__label {
    display: none;
}

.customer-icon-button--danger,
.customer-button--danger {
    color: #ffd9d9;
}

.customer-booking-drawer,
.customer-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}

@media (min-width: 769px) {
    .customer-booking-drawer {
        inset: var(--admin-dashboard-overlay-offset, var(--admin-schedule-drawer-offset, 5.5rem)) 0 0;
    }
}

.customer-booking-drawer.is-open,
.customer-confirm-modal.is-open {
    pointer-events: auto;
}

.customer-booking-drawer__backdrop,
.customer-confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.64);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.22s ease;
}

.customer-booking-drawer.is-open .customer-booking-drawer__backdrop,
.customer-confirm-modal.is-open .customer-confirm-modal__backdrop {
    opacity: 1;
}

.customer-booking-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 0.85rem;
    width: min(30rem, 92vw);
    height: 100%;
    overflow-y: auto;
    padding: 1.2rem;
    border-left: 1px solid rgba(226, 197, 90, 0.24);
    background:
        linear-gradient(155deg, rgba(226, 197, 90, 0.11), rgba(255, 255, 255, 0.025) 42%, rgba(191, 146, 91, 0.08)),
        #101010;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.44);
    transform: translateX(104%);
    transition: transform 0.28s ease;
}

.customer-booking-drawer.is-open .customer-booking-drawer__panel {
    transform: translateX(0);
}

.customer-booking-drawer__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.customer-booking-drawer__panel .admin-definition-list {
    align-content: start;
    gap: 0.45rem;
}

.customer-booking-drawer__panel .admin-definition-list div {
    gap: 0.12rem;
    padding-bottom: 0.55rem;
}

.customer-booking-drawer__panel .admin-definition-list dt {
    font-size: 0.68rem;
}

.customer-booking-drawer__panel .admin-definition-list dd {
    line-height: 1.35;
}

.customer-booking-drawer__head h3,
.customer-confirm-modal__panel h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.customer-booking-drawer__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: 0.55rem;
    align-items: stretch;
}

.customer-booking-drawer__actions .admin-button,
.customer-booking-drawer__actions form {
    width: 100%;
}

.customer-booking-drawer__actions .admin-button {
    gap: 0.55rem;
}

.customer-confirm-modal__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    gap: 0.85rem;
    width: min(28rem, calc(100vw - 2rem));
    padding: 1.3rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.025)),
        #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    transform: translate(-50%, -46%) scale(0.98);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.customer-confirm-modal.is-open .customer-confirm-modal__panel {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

body.has-customer-overlay {
    overflow: hidden;
}

.customer-status-text {
    color: var(--gold-light);
    font-weight: 800;
}

.customer-booking-actions {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.customer-booking-actions--split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
}

.customer-booking-actions--split form,
.customer-booking-actions--split .admin-button {
    display: grid;
    width: 100%;
}

.customer-booking-actions--single {
    display: flex;
    justify-content: flex-end;
}

.customer-booking-actions--single form,
.customer-booking-actions--single .admin-button {
    width: min(18rem, 100%);
}

.customer-booking-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    align-items: center;
}

.customer-booking-stepper__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.9rem;
    padding: 0.58rem 0.72rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.03)),
        rgba(255, 255, 255, 0.02);
    color: rgba(240, 236, 228, 0.68);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.customer-booking-stepper__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 0.06rem);
    width: 0.32rem;
    height: 1px;
    background: rgba(226, 197, 90, 0.24);
    transform: translateY(-50%);
}

.customer-booking-stepper__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: rgba(226, 197, 90, 0.07);
    color: var(--gold-light);
    font-size: 0.73rem;
    font-weight: 800;
}

.customer-booking-stepper__item strong {
    color: inherit;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.customer-booking-stepper__item.is-active {
    border-color: rgba(226, 197, 90, 0.44);
    background: rgba(226, 197, 90, 0.12);
    color: var(--text-primary);
}

.customer-booking-stepper__item.is-complete {
    color: var(--gold-light);
}

.customer-booking-stepper__item.is-complete::after,
.customer-booking-stepper__item.is-active::after {
    background: rgba(226, 197, 90, 0.52);
}

.customer-booking-stepper__item:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.customer-booking-step[hidden],
.customer-real-client-field.is-hidden {
    display: none;
}

.customer-booking-step.is-active {
    animation: customerStepReveal 0.22s ease both;
}

.customer-booking-step-actions {
    align-items: center;
}

@keyframes customerStepReveal {
    from {
        opacity: 0;
        transform: translateY(0.35rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-bookings-table {
    min-width: 48rem;
}

.customer-sunbed-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.customer-sunbed-stat,
.customer-sunbed-ledger {
    border-color: rgba(226, 197, 90, 0.22);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.09), rgba(255, 255, 255, 0.025) 46%, rgba(191, 146, 91, 0.1)),
        rgba(16, 16, 16, 0.92);
}

.customer-sunbed-stat {
    position: relative;
    grid-template-columns: minmax(0, 1fr) minmax(5.8rem, auto);
    grid-template-rows: auto 1fr;
    align-items: stretch;
    gap: 0.55rem 1rem;
    min-height: 8.1rem;
    overflow: hidden;
    padding: 1.05rem;
}

.customer-sunbed-stat::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.22rem;
    background: linear-gradient(180deg, rgba(226, 197, 90, 0.92), rgba(191, 146, 91, 0.38));
}

.customer-sunbed-stat span,
.customer-sunbed-stat small {
    position: relative;
    z-index: 1;
    grid-column: 1;
}

.customer-sunbed-stat span {
    align-self: start;
    max-width: 9rem;
}

.customer-sunbed-stat strong {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 5.8rem;
    min-height: 5.95rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background:
        radial-gradient(circle at 78% 22%, rgba(226, 197, 90, 0.2), transparent 42%),
        linear-gradient(145deg, rgba(226, 197, 90, 0.11), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.18);
    color: var(--gold-light);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    text-align: right;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.customer-sunbed-stat small {
    align-self: end;
    max-width: 10.5rem;
    color: rgba(240, 236, 228, 0.64);
    line-height: 1.35;
}

.customer-sunbed-table {
    min-width: 34rem;
}

.customer-review-card {
    max-width: none;
}

.customer-review-hero,
.customer-review-copy {
    border-color: rgba(226, 197, 90, 0.24);
}

.customer-review-guide .admin-kpi-card strong {
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
}

.customer-review-tips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-customer-sunbed-hub {
    overflow: visible;
}

.admin-customer-record {
    display: grid;
    gap: 1.25rem;
}

.admin-customer-focus-bar {
    position: sticky;
    top: var(--admin-dashboard-overlay-offset, var(--admin-schedule-drawer-offset, 5.5rem));
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.8rem;
    align-items: center;
    overflow: visible;
    padding: 0.82rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(20, 20, 16, 0.98), rgba(31, 30, 23, 0.98)),
        rgba(8, 8, 7, 0.98);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.admin-customer-focus-bar__identity {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.admin-customer-focus-bar__name-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    min-width: 0;
}

.admin-customer-focus-bar__identity strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-customer-focus-bar__identity > span:last-child,
.admin-customer-focus-bar__identity a {
    color: rgba(240, 236, 228, 0.66);
    font-size: 0.78rem;
    overflow-wrap: anywhere;
}

.admin-customer-focus-bar__identity a:hover {
    color: var(--gold-light);
}

.admin-customer-focus-bar__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-width: 0;
    overflow: visible;
}

.admin-customer-focus-bar__nav a {
    flex: 0 0 auto;
    padding: 0.65rem 0.78rem;
    border: 1px solid transparent;
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-customer-focus-bar__nav a:hover,
.admin-customer-focus-bar__nav a:focus-visible,
.admin-customer-focus-bar__nav a.is-active {
    outline: none;
    border-color: rgba(226, 197, 90, 0.28);
    background: rgba(226, 197, 90, 0.1);
    color: var(--gold-light);
}

.admin-customer-focus-bar__badges {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-end;
    min-width: 0;
}

.admin-customer-focus-bar__actions {
    grid-column: 3;
    grid-row: 1;
    position: relative;
    justify-self: end;
}

.admin-customer-focus-bar__actions summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background: var(--gold-light);
    color: #111;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    list-style: none;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-customer-focus-bar__actions summary::-webkit-details-marker {
    display: none;
}

.admin-customer-focus-bar__actions div {
    position: absolute;
    right: 0;
    top: calc(100% + 0.45rem);
    z-index: 70;
    display: grid;
    min-width: 14rem;
    padding: 0.35rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: #141411;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

.admin-customer-focus-bar__actions:not([open]) div {
    display: none;
}

.admin-customer-focus-bar__actions a {
    padding: 0.7rem 0.75rem;
    color: rgba(240, 236, 228, 0.78);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-customer-focus-bar__actions a:hover,
.admin-customer-focus-bar__actions a:focus-visible {
    outline: none;
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
}

.admin-customer-mini-kpis {
    margin-bottom: 0.25rem;
}

.admin-customer-overview-grid {
    align-items: start;
}

.admin-customer-profile-card,
.admin-customer-action-card,
.admin-customer-workspace {
    align-self: start;
}

.admin-customer-action-list {
    display: grid;
    gap: 0.7rem;
}

.admin-customer-followup-panel {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.16);
}

.admin-customer-followup-panel__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-customer-followup-panel__head > div {
    display: grid;
    gap: 0.14rem;
    min-width: 0;
}

.admin-customer-followup-panel__head strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-customer-followup-panel form {
    margin: 0;
}

.admin-form-grid--single {
    grid-template-columns: 1fr;
}

.admin-customer-message-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
    gap: 1rem;
    align-items: start;
}

.admin-customer-message-recipient {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.18);
}

.admin-customer-message-recipient > .bb-icon {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.18rem;
    color: var(--gold-light);
}

.admin-customer-message-recipient div {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.admin-customer-message-recipient span:not(.bb-icon),
.admin-customer-message-recipient small {
    color: rgba(240, 236, 228, 0.64);
    font-size: 0.75rem;
}

.admin-customer-message-recipient span:not(.bb-icon) {
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-customer-message-recipient strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-customer-message-recipient a {
    color: var(--gold-light);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.admin-customer-email-preview {
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: #f3efe6;
    color: #1f1b17;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.admin-customer-email-preview__header {
    padding: 1.25rem 1.45rem;
    border-bottom: 1px solid rgba(216, 194, 120, 0.42);
    background: #090909;
    text-align: center;
}

.admin-customer-email-preview__header img {
    display: block;
    width: min(13rem, 70%);
    height: auto;
    margin: 0 auto;
}

.admin-customer-email-preview__body {
    display: grid;
    gap: 0.75rem;
    padding: 1.35rem;
    background: #fff;
}

.admin-customer-email-preview__body .admin-shell__eyebrow {
    color: #9d7b18;
}

.admin-customer-email-preview__body > strong {
    color: #1f1b17;
    font-size: 1.05rem;
    line-height: 1.25;
}

.admin-customer-email-preview__body p {
    margin: 0;
    color: #1f1b17;
}

.admin-customer-email-preview__placeholder {
    color: #817666 !important;
    font-style: italic;
}

.admin-customer-email-preview__footer {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(216, 194, 120, 0.32);
    background: #121212;
    color: #e8dfcc;
    font-size: 0.78rem;
    text-align: center;
}

.admin-customer-email-preview__footer strong {
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-customer-email-history-card {
    display: grid;
    gap: 0;
}

.admin-customer-email-history-summary {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
}

.admin-customer-email-history-summary::-webkit-details-marker {
    display: none;
}

.admin-customer-email-history-summary > span:first-child {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.admin-customer-email-history-summary strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-customer-email-history-summary small {
    color: rgba(240, 236, 228, 0.62);
    line-height: 1.45;
}

.admin-customer-email-history-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-customer-email-history-summary__action {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.admin-customer-email-history-card[open] .admin-customer-email-history-summary {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 197, 90, 0.16);
}

.admin-customer-email-history-card[open] .admin-customer-email-history-summary__action {
    color: rgba(240, 236, 228, 0.78);
}

.admin-customer-email-history-card[open] .admin-empty-state,
.admin-customer-email-history-scroll {
    margin-top: 1rem;
}

.admin-customer-email-history-scroll {
    max-height: clamp(22rem, 56vh, 34rem);
    overflow: auto;
    overscroll-behavior: contain;
    padding-right: 0.2rem;
    scrollbar-width: thin;
}

.admin-customer-login-history-card {
    display: grid;
    gap: 0;
}

.admin-customer-login-history-summary {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
}

.admin-customer-login-history-summary::-webkit-details-marker {
    display: none;
}

.admin-customer-login-history-summary > span:first-child {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.admin-customer-login-history-summary strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-customer-login-history-summary small {
    color: rgba(240, 236, 228, 0.62);
    line-height: 1.45;
}

.admin-customer-login-history-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-customer-login-history-summary__action {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.admin-customer-login-history-card[open] .admin-customer-login-history-summary {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 197, 90, 0.16);
}

.admin-customer-login-history-card[open] .admin-customer-login-history-summary__action {
    color: rgba(240, 236, 228, 0.78);
}

.admin-customer-login-history-card[open] .admin-empty-state,
.admin-customer-login-history-scroll {
    margin-top: 1rem;
}

.admin-customer-login-history-scroll {
    max-height: clamp(22rem, 56vh, 34rem);
    overflow: auto;
    overscroll-behavior: contain;
    padding-right: 0.2rem;
    scrollbar-width: thin;
}

:is(
    .admin-sunbed-status-panel__summary,
    .admin-sunbed-ledger-summary,
    .admin-customer-email-history-summary,
    .admin-customer-login-history-summary
) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 2.35rem;
    column-gap: 0.85rem;
    row-gap: 0.65rem;
    align-items: center;
}

:is(
    .admin-sunbed-status-panel__summary,
    .admin-sunbed-ledger-summary,
    .admin-customer-email-history-summary,
    .admin-customer-login-history-summary
)::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.11), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.035);
    color: var(--gold-light);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.admin-sunbed-status-panel[open] > .admin-sunbed-status-panel__summary::after,
.admin-sunbed-ledger-card[open] > .admin-sunbed-ledger-summary::after,
.admin-customer-email-history-card[open] > .admin-customer-email-history-summary::after,
.admin-customer-login-history-card[open] > .admin-customer-login-history-summary::after {
    content: "-";
    border-color: rgba(226, 197, 90, 0.48);
    background: rgba(226, 197, 90, 0.16);
    color: var(--text-primary);
}

:is(
    .admin-sunbed-status-panel__summary,
    .admin-sunbed-ledger-summary,
    .admin-customer-email-history-summary,
    .admin-customer-login-history-summary
):hover::after,
:is(
    .admin-sunbed-status-panel__summary,
    .admin-sunbed-ledger-summary,
    .admin-customer-email-history-summary,
    .admin-customer-login-history-summary
):focus-visible::after {
    border-color: rgba(226, 197, 90, 0.68);
    background: rgba(226, 197, 90, 0.2);
    transform: translateY(-1px);
}

:is(
    .admin-sunbed-status-panel__summary,
    .admin-sunbed-ledger-summary,
    .admin-customer-email-history-summary,
    .admin-customer-login-history-summary
):focus-visible {
    outline: 2px solid rgba(226, 197, 90, 0.42);
    outline-offset: 0.35rem;
}

:is(
    .admin-sunbed-status-panel__summary-action,
    .admin-sunbed-ledger-summary__action,
    .admin-customer-email-history-summary__action,
    .admin-customer-login-history-summary__action
) {
    display: inline-flex;
    align-items: center;
    min-height: 2.05rem;
    padding: 0.46rem 0.68rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.08);
}

.admin-customer-action-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-customer-action-item:hover,
.admin-customer-action-item:focus-visible {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.42);
}

.admin-customer-action-item--danger {
    border-color: rgba(255, 132, 118, 0.48);
    background:
        linear-gradient(145deg, rgba(170, 42, 32, 0.24), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.02);
}

.admin-customer-action-item--danger:hover,
.admin-customer-action-item--danger:focus-visible {
    border-color: rgba(255, 132, 118, 0.72);
}

.admin-customer-action-item--warning,
.admin-customer-action-item--flag {
    border-color: rgba(226, 197, 90, 0.28);
}

.admin-customer-action-item__icon {
    display: inline-grid;
    place-items: center;
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
}

.admin-customer-action-item--danger .admin-customer-action-item__icon {
    border-color: rgba(255, 132, 118, 0.36);
    background: rgba(170, 42, 32, 0.18);
    color: #ffd9d9;
}

.admin-customer-action-item > span:not(.admin-badge):not(.admin-customer-action-item__icon) {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.admin-customer-action-item strong {
    color: var(--text-primary);
}

.admin-customer-action-item small {
    color: rgba(240, 236, 228, 0.66);
    line-height: 1.35;
}

.admin-empty-state--compact {
    padding: 0.85rem;
}

.admin-customer-workspace-grid {
    grid-template-columns: 1fr;
}

.admin-customer-workspace-grid .admin-schedule-launch-card {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    min-height: 4.25rem;
    padding: 0.78rem 0.9rem;
}

.admin-customer-workspace-grid .admin-schedule-launch-card > .bb-icon {
    grid-column: 4;
}

.admin-customer-workspace-grid .admin-schedule-launch-card .admin-badge {
    grid-column: 3;
    justify-self: end;
    width: fit-content;
}

.admin-customer-workspace-grid .admin-schedule-launch-card__icon {
    width: 2.35rem;
    height: 2.35rem;
}

.admin-customer-workspace-grid .admin-schedule-launch-card__copy strong {
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.admin-customer-workspace-grid .admin-schedule-launch-card__copy small {
    line-height: 1.35;
}

.admin-schedule-launch-card--attention {
    border-color: rgba(255, 132, 118, 0.36);
    background:
        linear-gradient(145deg, rgba(170, 42, 32, 0.14), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-schedule-drawer__panel--wide {
    width: min(56rem, calc(100vw - 2rem));
}

.admin-customer-history-table {
    min-width: 48rem;
}

.admin-customer-sunbed-kpis {
    margin-bottom: 1.65rem;
}

.admin-customer-sunbed-actions {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.admin-customer-sunbed-actions .admin-schedule-launch-card {
    min-height: 5.1rem;
}

.admin-schedule-drawer__panel.admin-booking-form {
    gap: 0;
}

@media (max-width: 1199px) {
    .admin-auth {
        grid-template-columns: 1fr;
    }

    .admin-auth__panel--brand {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .admin-grid--kpis,
    .admin-grid--split,
    .admin-grid--thirds,
    .admin-template-grid,
    .admin-template-grid--wide,
    .admin-grid--email-editor,
    .admin-grid--campaign-builder,
    .admin-filter-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-review-tips {
        grid-template-columns: 1fr;
    }

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

    .pos-cash-open-card,
    .pos-chart-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .admin-app-page {
        overflow-x: hidden;
    }

    .admin-shell {
        grid-template-columns: 1fr;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .admin-menu-toggle,
    .admin-topbar__mobile-logo {
        display: inline-flex;
    }

    .admin-menu-backdrop {
        position: fixed;
        inset: var(--admin-mobile-topbar-height) 0 0;
        z-index: 1020;
        border: 0;
        background: rgba(0, 0, 0, 0.64);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .admin-shell.is-admin-menu-open .admin-menu-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .admin-shell__sidebar {
        position: fixed;
        inset: var(--admin-mobile-topbar-height) auto 0 0;
        z-index: 1030;
        width: min(21rem, 88vw);
        max-height: calc(100dvh - var(--admin-mobile-topbar-height));
        overflow-y: auto;
        border-right: 1px solid rgba(226, 197, 90, 0.14);
        border-bottom: 0;
        background: var(--admin-dashboard-chrome);
        transform: translateX(-105%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .admin-shell.is-admin-menu-open .admin-shell__sidebar {
        transform: translateX(0);
    }

    .admin-shell__brand {
        padding-right: 2.5rem;
    }

    .admin-shell__main {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .admin-topbar {
        top: 0;
        z-index: 1040;
        align-items: center;
        min-height: var(--admin-mobile-topbar-height);
        padding-block: 0.42rem;
    }

    .admin-app-page {
        --admin-dashboard-overlay-offset: 5rem;
        --admin-schedule-drawer-offset: 5rem;
    }

    .admin-topbar__left {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }

    .admin-topbar__actions {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
        width: auto;
    }

    .customer-topbar {
        justify-content: space-between;
    }

    .customer-topbar .admin-topbar__left {
        flex: 1 1 auto;
    }

    .customer-topbar .admin-topbar__actions {
        width: auto;
        flex: 0 0 auto;
    }

    .admin-sidebar__logo,
    .customer-sidebar__logo {
        display: none;
    }

    .admin-topbar h2,
    .admin-topbar p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .admin-app-page {
        margin: 0;
        padding: 0;
    }

    .admin-auth__panel,
    .admin-shell__sidebar,
    .admin-shell__main,
    .admin-topbar,
    .admin-card {
        padding: 1rem;
    }

    .admin-auth__card {
        padding: 1.4rem;
    }

    .admin-auth__footer,
    .admin-topbar__actions,
    .admin-section-head,
    .admin-staff-card__meta,
    .admin-template-card__head,
    .admin-template-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-shell__nav,
    .admin-grid--kpis,
    .admin-grid--split,
    .admin-grid--thirds,
    .admin-template-grid,
    .admin-template-grid--wide,
    .admin-schedule-card-grid,
    .admin-grid--email-editor,
    .admin-grid--campaign-builder,
    .admin-choice-grid,
    .admin-form-grid,
    .admin-duration-fields,
    .admin-filter-bar,
    .admin-hours-row,
    .admin-hours-row--drawer,
    .admin-hours-row--compact {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .admin-grid--kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .admin-grid--kpis .admin-kpi-card,
    .admin-dashboard-kpis .admin-kpi-card {
        min-height: 4.25rem;
        padding: 0.62rem 0.68rem;
        gap: 0.12rem 0.45rem;
    }

    .admin-grid--kpis .admin-kpi-card span,
    .admin-dashboard-kpis .admin-kpi-card span {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .admin-grid--kpis .admin-kpi-card strong,
    .admin-dashboard-kpis .admin-kpi-card strong {
        min-width: 2.45rem;
        padding: 0.3rem 0.42rem;
        font-size: clamp(1.35rem, 8vw, 1.8rem);
    }

    .admin-grid--kpis .admin-kpi-card small,
    .admin-dashboard-kpis .admin-kpi-card small {
        font-size: 0.64rem;
        overflow-wrap: anywhere;
    }

    .admin-section-head h3 {
        overflow-wrap: anywhere;
    }

    .admin-stat-row > div:first-child {
        display: grid;
        gap: 0.25rem;
    }

    .admin-stat-row > div:first-child span {
        overflow-wrap: anywhere;
    }

    .admin-datetime-select {
        grid-template-columns: 1fr;
    }

    .admin-campaign-window-fields {
        grid-template-columns: 1fr;
    }

    .admin-native-date-picker__panel,
    .admin-clockpicker__popover {
        width: min(20rem, calc(100vw - 1rem));
    }

    .admin-clockpicker__dial {
        width: 13.2rem;
        height: 13.2rem;
    }

    .admin-note-list__action-row {
        grid-template-columns: 1fr;
    }

    .admin-note-list__action-row .admin-button {
        width: 100%;
    }

    .admin-customer-action-item {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.7rem;
        padding: 0.78rem;
    }

    .admin-customer-followup-panel__head {
        flex-direction: column;
    }

    .admin-customer-message-grid {
        grid-template-columns: 1fr;
    }

    .admin-sunbed-status-toggle,
    .admin-sunbed-consent-summary {
        padding: 0.78rem;
    }

    .admin-sunbed-status-toggle__control,
    .admin-sunbed-consent-panel__head,
    .admin-sunbed-consent-summary__actions,
    .admin-sunbed-status-panel__summary {
        align-items: stretch;
    }

    .admin-sunbed-status-panel__summary {
        flex-direction: column;
    }

    .admin-sunbed-status-panel__summary-meta {
        justify-content: flex-start;
    }

    .admin-sunbed-consent-panel__head {
        flex-direction: column;
    }

    .admin-sunbed-consent-summary__actions .admin-button {
        width: 100%;
    }

    .admin-customer-action-item .admin-badge {
        grid-column: 2;
        width: fit-content;
    }

    .admin-customer-workspace-grid .admin-schedule-launch-card {
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 4.65rem;
    }

    .admin-customer-workspace-grid .admin-schedule-launch-card > .bb-icon {
        grid-column: 3;
    }

    .admin-customer-workspace-grid .admin-schedule-launch-card .admin-badge {
        grid-column: 2;
        justify-self: start;
    }

    .admin-week-toolbar {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 0.72rem;
        padding: 0.72rem;
    }

    .admin-week-toolbar__label {
        display: block;
        width: 100%;
        min-width: 0;
        padding-bottom: 0.2rem;
        border-bottom: 1px solid rgba(226, 197, 90, 0.12);
        font-size: clamp(1.18rem, 7vw, 1.45rem);
        line-height: 1.05;
        text-align: left;
        white-space: normal;
        overflow-wrap: normal;
    }

    .admin-week-toolbar__actions {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "toggle toggle toggle"
            "previous current next";
        gap: 0.45rem;
        width: 100%;
        margin-left: 0;
        overflow: visible;
    }

    .admin-view-toggle {
        grid-area: toggle;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .admin-view-toggle a {
        width: 100%;
    }

    .admin-week-toolbar__arrow:first-of-type {
        grid-area: previous;
    }

    .admin-week-toolbar__arrow:last-of-type {
        grid-area: next;
    }

    .admin-week-toolbar__current {
        grid-area: current;
        width: 100%;
        min-width: 0;
    }

    .admin-week-toolbar__actions .admin-button {
        width: 100%;
        min-height: 2.45rem;
    }

    .admin-view-toggle a {
        min-height: 2.25rem;
        padding-inline: 0.62rem;
        font-size: 0.62rem;
    }

    .admin-view-toggle__full,
    .admin-week-toolbar__current-full {
        display: none;
    }

    .admin-view-toggle__short,
    .admin-week-toolbar__current-short {
        display: inline;
    }

    .admin-day-calendar {
        --admin-day-row-height: 1.18rem;
        max-height: 68vh;
    }

    .admin-calendar-staff-strip {
        margin-top: 0;
        padding-bottom: 0.45rem;
    }

    .admin-day-calendar__grid {
        grid-template-columns: 3.8rem repeat(var(--admin-day-staff-count), minmax(11.5rem, 1fr));
        grid-template-rows: minmax(3.8rem, auto) repeat(var(--admin-day-row-count, 56), var(--admin-day-row-height, 1.55rem));
        min-width: 40rem;
    }

    .admin-day-calendar__corner,
    .admin-day-calendar__staff {
        min-height: 3.8rem;
    }

    .admin-day-calendar__time,
    .admin-day-calendar__slot {
        min-height: 0;
    }

    .admin-week-calendar {
        max-height: 68vh;
    }

    .admin-week-calendar__grid {
        grid-template-columns: 3.8rem repeat(7, minmax(12rem, 1fr));
        min-width: 87.8rem;
    }

    .admin-week-calendar__corner,
    .admin-week-calendar__day {
        min-height: 3.8rem;
    }

    .admin-week-calendar__time,
    .admin-week-calendar__slot {
        min-height: 4.45rem;
    }

    .admin-week-calendar-job {
        grid-template-columns: 3.55rem minmax(0, 1fr);
        padding: 0.38rem 0.42rem;
    }

    .admin-week-calendar-job-group__items,
    .admin-week-calendar-job--compact {
        grid-template-columns: 1fr;
    }

    .admin-calendar-quicklook {
        align-items: end;
        justify-items: stretch;
    }

    .admin-calendar-quicklook__panel {
        width: 100%;
        height: auto;
        max-height: min(78vh, 42rem);
        padding: 1.25rem 1rem 1rem;
        border-top: 1px solid rgba(226, 197, 90, 0.24);
        border-left: 0;
        box-shadow: 0 -1.2rem 2.4rem rgba(0, 0, 0, 0.38);
        transform: translateY(100%);
    }

    .admin-calendar-quicklook__handle {
        display: block;
        justify-self: center;
        width: 3.2rem;
        height: 0.24rem;
        margin-top: -0.45rem;
        background: rgba(226, 197, 90, 0.34);
    }

    .admin-calendar-quicklook.is-open .admin-calendar-quicklook__panel {
        transform: translateY(0);
    }

    .admin-week-grid {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    .admin-week-day {
        min-width: 0;
        grid-template-rows: auto auto;
    }

    .admin-filter-bar__actions,
    .admin-filter-bar__actions .admin-button {
        width: 100%;
    }

    .admin-customer-focus-bar {
        top: var(--admin-dashboard-overlay-offset, 5rem);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        overflow: visible;
        padding: 0.72rem;
    }

    .admin-customer-focus-bar__identity {
        min-width: 0;
    }

    .admin-customer-focus-bar__identity > span:last-child {
        display: none;
    }

    .admin-customer-focus-bar__actions {
        order: 2;
        justify-self: start;
        align-self: flex-start;
    }

    .admin-customer-focus-bar__nav {
        order: 3;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 0.1rem;
        scrollbar-width: thin;
    }

    .admin-customer-focus-bar__nav a {
        flex: 0 0 auto;
        padding: 0.6rem 0.68rem;
    }

    .admin-customer-focus-bar__badges {
        justify-content: flex-start;
        order: 1;
    }

    .admin-customer-focus-bar__actions div {
        left: 0;
        right: auto;
        width: min(18rem, calc(100vw - 2rem));
    }

    .admin-flag-list article {
        flex-direction: column;
    }

    .admin-flag-list__actions,
    .admin-flag-list__actions .admin-button {
        width: 100%;
    }

    .admin-dashboard-todo-list__item {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .admin-dashboard-todo-list__item .admin-badge {
        justify-self: start;
    }

    .admin-schedule-launch-card,
    .admin-schedule-launch-card--shop {
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 4.8rem;
    }

    .admin-schedule-launch-card .admin-badge {
        grid-column: 2 / 3;
        width: fit-content;
    }

    .admin-schedule-drawer__panel {
        inset: auto 0 0;
        width: 100%;
        max-height: min(88vh, calc(100dvh - var(--admin-dashboard-overlay-offset, var(--admin-schedule-drawer-offset, 5rem))));
        border-top: 1px solid rgba(226, 197, 90, 0.28);
        border-left: 0;
        box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.46);
        transform: translateY(104%);
    }

    .admin-schedule-drawer.is-open .admin-schedule-drawer__panel {
        transform: translateY(0);
    }

    .admin-schedule-drawer__head,
    .admin-schedule-drawer__body,
    .admin-schedule-drawer__foot {
        padding-inline: 1rem;
    }

    .admin-schedule-drawer__foot,
    .admin-schedule-drawer__foot .admin-button {
        width: 100%;
    }

    .admin-schedule-drawer__foot {
        flex-direction: column;
    }

    .admin-schedule-staff-summary {
        flex-direction: column;
    }

    .admin-topbar__left {
        flex: 1 1 auto;
        width: auto;
        flex-wrap: nowrap;
        gap: 0.45rem;
    }

    .admin-customer-search {
        flex: 1 1 auto;
        max-width: none;
        min-width: 0;
    }

    .admin-customer-search-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.7rem;
        min-width: 2.7rem;
        min-height: 2.7rem;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--gold-light);
        cursor: pointer;
    }

    .admin-customer-search-toggle:hover,
    .admin-customer-search-toggle:focus-visible,
    .admin-customer-search-toggle[aria-expanded="true"] {
        outline: none;
        background: rgba(226, 197, 90, 0.08);
        color: var(--gold-light);
    }

    .admin-customer-search-toggle .bb-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .admin-customer-search--topbar {
        position: fixed;
        top: var(--admin-mobile-topbar-height);
        left: 0;
        right: 0;
        z-index: 1038;
        display: grid;
        gap: 0.75rem;
        max-width: none;
        min-width: 0;
        padding: 0.9rem 0.85rem 1rem;
        border-bottom: 1px solid rgba(226, 197, 90, 0.18);
        background: var(--admin-dashboard-chrome);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.7rem);
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
    }

    .admin-customer-search--topbar.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .admin-customer-search__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        color: var(--gold-light);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .admin-customer-search__mobile-head button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.45rem;
        min-height: 2.45rem;
        border: 1px solid rgba(226, 197, 90, 0.22);
        background: rgba(226, 197, 90, 0.06);
        color: var(--text-primary);
        font: inherit;
        font-size: 1.35rem;
        line-height: 1;
        cursor: pointer;
    }

    .admin-customer-search__field {
        min-height: 3rem;
        padding-inline: 0.7rem;
    }

    .admin-customer-search input {
        font-size: 0.8rem;
    }

    .admin-customer-search__results {
        position: static;
        max-height: min(24rem, calc(100vh - 5.2rem));
    }

    .admin-customer-search--booking .admin-customer-search__results {
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 0;
        right: 0;
        max-height: min(24rem, 62vh);
    }

    .admin-topbar__title {
        display: none;
    }

    .admin-topbar__brandmark {
        display: none;
    }

    .admin-topbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.45rem;
        margin: 0 -1rem 0;
        padding: 0.38rem 0.55rem;
    }

    .admin-shell__main {
        padding-top: 0;
    }

    .admin-topbar h2 {
        max-width: 46vw;
        font-size: 1.08rem;
    }

    .admin-topbar p,
    .admin-topbar .admin-shell__eyebrow {
        display: none;
    }

    .admin-topbar__actions {
        width: auto;
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
        gap: 0.35rem;
    }

    .admin-topbar__actions > .admin-button,
    .admin-topbar__actions > form {
        display: none;
    }

    .admin-form-actions,
    .admin-form-actions .admin-button {
        width: 100%;
    }

    .admin-mobile-inline-action {
        display: inline-flex !important;
    }

    .admin-form-actions.admin-mobile-inline-action {
        display: flex !important;
    }

    .admin-notifications {
        width: auto;
    }

    .admin-topbar__mobile-primary-action {
        display: inline-flex;
    }

    .admin-notifications summary,
    .admin-user-menu summary,
    .admin-topbar__mobile-primary-action {
        width: 2.7rem;
        min-height: 2.7rem;
        justify-content: center;
        padding: 0;
    }

    .admin-notifications summary > span:not(.bb-icon) {
        display: none;
    }

    .admin-notifications__panel {
        position: fixed;
        top: calc(var(--admin-mobile-topbar-height) + 0.35rem);
        left: 50%;
        right: auto;
        width: min(22rem, calc(100vw - 1.25rem));
        margin-top: 0;
        transform: translateX(-50%);
    }

    .admin-user-menu__panel {
        right: 0;
        width: min(17rem, calc(100vw - 2rem));
    }

    .admin-shell__sidebar-actions {
        display: grid;
    }

    .admin-form-actions {
        flex-direction: column;
    }

    .pos-category-guide {
        grid-template-columns: 1fr;
    }

    .pos-category-row,
    .pos-category-row--child {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.65rem;
        margin-left: 0;
        padding: 0.75rem;
    }

    .pos-category-row__accent {
        height: 2.7rem;
    }

    .pos-category-row__main small {
        display: none;
    }

    .pos-category-row__meta {
        grid-column: 2 / 4;
        justify-self: start;
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
    }

    .pos-category-row .admin-table-open-button {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
    }

    .pos-cash-open-card,
    .pos-cash-inline-form {
        grid-template-columns: 1fr;
    }

    .pos-cash-open-card .admin-button,
    .pos-cash-inline-form .admin-button {
        width: 100%;
    }

    .pos-cash-session-actions {
        grid-template-columns: 1fr;
    }

    .pos-cash-movement-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .pos-cash-movement-row__amount {
        justify-self: start;
    }

    .pos-cash-movement-row form,
    .pos-cash-movement-row .admin-button {
        width: 100%;
    }

    .admin-menu-toggle {
        width: auto;
        justify-content: center;
        padding-inline: 0.85rem;
    }

    .admin-menu-toggle__label {
        display: none;
    }

    .admin-shell--customer,
    .admin-shell--customer .admin-shell__main {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .admin-topbar__mobile-logo {
        width: clamp(5.6rem, 28vw, 7.35rem);
        min-width: clamp(5.6rem, 28vw, 7.35rem);
        height: 2.65rem;
    }

    .admin-menu-toggle {
        width: 2.7rem;
        min-width: 2.7rem;
        padding-inline: 0;
    }

    .admin-shell__sidebar {
        padding-top: 1rem;
    }

    .admin-shell--customer .admin-card,
    .admin-shell--customer .admin-choice-card {
        width: 100%;
    }

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

    .customer-profile-card__meta {
        justify-content: flex-start;
        width: 100%;
    }

    .customer-profile-card__actions {
        width: 100%;
    }

    @media (max-width: 420px) {
        .admin-topbar {
            gap: 0.3rem;
            padding-inline: 0.4rem;
        }

        .admin-topbar__left {
            gap: 0.3rem;
        }

        .admin-topbar__actions {
            gap: 0.25rem;
        }

        .admin-menu-toggle,
        .admin-customer-search-toggle,
        .admin-notifications summary,
        .admin-user-menu summary,
        .admin-topbar__mobile-primary-action {
            width: 2.4rem;
            min-width: 2.4rem;
            min-height: 2.4rem;
        }

        .admin-topbar__mobile-logo {
            width: clamp(4.9rem, 26vw, 6.25rem);
            min-width: clamp(4.9rem, 26vw, 6.25rem);
            height: 2.35rem;
        }
    }

    .customer-booking-stepper {
        grid-template-columns: 1fr;
    }

    .customer-booking-stepper__item {
        min-height: 3rem;
    }

    .customer-booking-stepper__item::after {
        display: none;
    }

    .admin-date-picker__menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: min(24rem, 62vh);
    }

    .customer-booking-row {
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 0.95rem;
    }

    .customer-booking-row__main {
        grid-template-columns: 1fr;
    }

    .customer-booking-row__main time {
        grid-template-columns: auto auto;
        justify-content: start;
        gap: 0.55rem;
        padding-left: 0.72rem;
    }

    .customer-booking-status-pill {
        justify-self: start;
    }

    .customer-booking-row__actions {
        justify-content: stretch;
        width: 100%;
    }

    .customer-booking-row__actions .customer-icon-button {
        flex: 1 1 0;
    }

    .customer-booking-row__actions [data-booking-drawer-open].customer-icon-button {
        gap: 0.5rem;
    }

    .customer-booking-row__actions [data-booking-drawer-open] .customer-icon-button__label {
        display: inline-flex;
        color: inherit;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        line-height: 1;
        text-transform: uppercase;
    }

    .customer-booking-drawer__panel {
        top: auto;
        bottom: 0;
        width: 100%;
        height: auto;
        max-height: min(86vh, calc(100dvh - var(--admin-mobile-topbar-height)));
        padding-top: 2rem;
        border-top: 1px solid rgba(226, 197, 90, 0.28);
        border-left: 0;
        box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.46);
        transform: translateY(104%);
    }

    .customer-booking-drawer__panel::before {
        content: "";
        position: absolute;
        top: 0.65rem;
        left: 50%;
        width: 3.2rem;
        height: 0.28rem;
        border-radius: 999px;
        background: rgba(226, 197, 90, 0.46);
        transform: translateX(-50%);
    }

    .customer-booking-drawer__head {
        align-items: center;
    }

    .customer-booking-drawer.is-open .customer-booking-drawer__panel {
        transform: translateY(0);
    }

    .customer-booking-drawer__actions:not(.customer-booking-drawer__actions--single) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-booking-drawer__primary-action {
        grid-column: 1 / -1;
    }

    .customer-booking-actions--split,
    .customer-booking-actions--single {
        grid-template-columns: 1fr;
        display: grid;
        justify-content: stretch;
    }

    .customer-booking-actions--single form,
    .customer-booking-actions--single .admin-button {
        width: 100%;
    }

    .customer-sunbed-summary {
        grid-template-columns: repeat(3, minmax(6.7rem, 1fr));
        gap: 0.55rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .customer-sunbed-stat {
        min-width: 0;
        min-height: 6.8rem;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto 1fr auto;
        gap: 0.35rem;
        padding: 0.8rem;
    }

    .customer-sunbed-stat span {
        max-width: 5.8rem;
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    .customer-sunbed-stat strong {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
        min-width: 3.85rem;
        min-height: 2.9rem;
        padding: 0.4rem 0.55rem;
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .customer-sunbed-stat small {
        max-width: 6.4rem;
        font-size: 0.7rem;
        line-height: 1.25;
    }

    .admin-app-page .admin-table-wrap {
        overflow: visible;
    }

    .admin-app-page .admin-table,
    .admin-app-page .admin-table thead,
    .admin-app-page .admin-table tbody,
    .admin-app-page .admin-table tr,
    .admin-app-page .admin-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .admin-app-page .admin-table thead {
        display: none;
    }

    .admin-app-page .admin-table tbody {
        display: grid;
        gap: 0.9rem;
    }

    .admin-app-page .admin-table tr {
        padding: 1rem;
        border: 1px solid rgba(226, 197, 90, 0.2);
        background:
            linear-gradient(145deg, rgba(191, 146, 91, 0.1), rgba(255, 255, 255, 0.025)),
            rgba(255, 255, 255, 0.02);
    }

    .admin-app-page .admin-table td {
        display: grid;
        grid-template-columns: minmax(6.5rem, 0.42fr) minmax(0, 1fr);
        gap: 0.7rem;
        padding: 0.45rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .admin-app-page .admin-table td:last-child {
        border-bottom: 0;
    }

    .admin-app-page .admin-table td > * {
        min-width: 0;
    }

    .admin-app-page .admin-table td strong,
    .admin-app-page .admin-table td span,
    .admin-app-page .admin-table td a:not(.admin-button):not(.admin-table-open-button) {
        overflow-wrap: anywhere;
    }

    .admin-app-page .admin-table td::before {
        content: attr(data-label);
        color: var(--gold-light);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .admin-app-page .admin-table td:not([data-label])::before {
        content: none;
    }

    .admin-app-page .admin-table td[data-label="Action"],
    .admin-app-page .admin-table td[data-label="Actions"] {
        grid-template-columns: 1fr;
    }

    .admin-app-page .admin-table td[data-label="Contact"],
    .admin-app-page .admin-table td[data-label="Recipient"],
    .admin-app-page .admin-table td[data-label="Subject"] {
        grid-template-columns: 1fr;
        gap: 0.38rem;
    }

    .admin-app-page .admin-table td[data-label="Action"]::before,
    .admin-app-page .admin-table td[data-label="Actions"]::before {
        content: none;
    }

    .admin-app-page .admin-table td[data-label="Action"] .admin-button,
    .admin-app-page .admin-table td[data-label="Actions"] .admin-button,
    .admin-app-page .admin-table td[data-label="Action"] .admin-table-open-button,
    .admin-app-page .admin-table td[data-label="Actions"] .admin-table-open-button {
        width: 100%;
    }

    .admin-app-page :is(
        .admin-sunbed-status-panel__summary,
        .admin-sunbed-ledger-summary,
        .admin-customer-email-history-summary,
        .admin-customer-login-history-summary
    ) {
        grid-template-columns: minmax(0, 1fr) 2.35rem;
        align-items: flex-start;
    }

    .admin-app-page :is(
        .admin-sunbed-status-panel__summary-meta,
        .admin-sunbed-ledger-summary__meta,
        .admin-customer-email-history-summary__meta,
        .admin-customer-login-history-summary__meta
    ) {
        grid-column: 1 / -1;
        justify-content: flex-start;
        width: 100%;
    }

    .admin-app-page :is(
        .admin-sunbed-status-panel__summary,
        .admin-sunbed-ledger-summary,
        .admin-customer-email-history-summary,
        .admin-customer-login-history-summary
    )::after {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .admin-app-page .admin-customer-login-history-scroll {
        max-height: min(28rem, 62vh);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-app-page .admin-customer-email-history-scroll {
        max-height: min(28rem, 62vh);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-app-page .admin-sunbed-ledger-scroll {
        max-height: min(28rem, 62vh);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media print {
    .pos-receipt-page .admin-shell {
        display: block;
        min-height: auto;
        background: #fff;
    }

    .pos-receipt-page .admin-shell__sidebar,
    .pos-receipt-page .admin-topbar,
    .pos-receipt-page .admin-card {
        display: none !important;
    }

    .pos-receipt-page .admin-shell__main {
        padding: 0;
        background: #fff;
    }

    .pos-receipt {
        width: 80mm;
        margin: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: #fff;
        color: #111;
    }

    .pos-receipt * {
        color: #111 !important;
    }
}
