* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #e9ecf1;
    background: #0b0f1c
}

a {
    color: inherit;
    text-decoration: none
}

.app-shell {
    min-height: 100vh;
    background: radial-gradient(1200px 800px at 15% 25%, rgba(255, 42, 120, .75), transparent 60%), radial-gradient(1100px 700px at 75% 20%, rgba(90, 60, 255, .55), transparent 55%), linear-gradient(135deg, #121638 0%, #0b0f1c 45%, #121638 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px
}

.app-frame {
    width: min(100%, 97vw);
    min-height: min(100vh, 92vh);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    position: relative
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
}

.brand {
    display: flex;
    align-items: flex-end;
    gap: 10px
}

.brand .logo {
    font-weight: 800;
    letter-spacing: .8px;
    font-size: 30px
}

.brand .logo span {
    font-weight: 500;
    opacity: .85;
    font-style: italic
}

.top-back {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px
}

.top-title {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .85;
    margin-bottom: 6px
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 18px
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: .85
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08)
}

.pill .t {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.pill .t b {
    font-size: 12px
}

.pill .t small {
    font-size: 10px;
    opacity: .75
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 10px
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff2a78, #5a3cff)
}

.content {
    flex: 1;
    padding: 16px 18px 18px
}

.page-stocks .content {
    padding: 0;
}

.page-customers .content {
    padding: 0;
}

.grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 26px;
    align-items: start
}

@media (max-width: 980px) {
    .grid {
        grid-template-columns: 1fr
    }

    .left-panel {
        order: 2
    }
}

body.page-dashboard .content {
    display: flex;
    align-items: center
}

body.page-dashboard .grid {
    width: 100%;
    align-items: center
}

body.page-dashboard .tile-grid {
    margin-top: 0
}

.left-panel {
    padding: 18px 18px 16px;
    border-radius: 22px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px)
}

.big-time {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 4px
}

.date-line {
    opacity: .85;
    font-size: 14px
}

.weather {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    opacity: .9
}

.weather .temp {
    font-size: 22px;
    font-weight: 700
}

.weather .desc {
    font-size: 12px;
    opacity: .75
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 12px;
    opacity: .8;
    letter-spacing: .6px
}

.noti-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px
}

.noti {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08)
}

.badge {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800
}

.noti .meta {
    display: flex;
    flex-direction: column
}

.noti .meta b {
    font-size: 13px
}

.noti .meta small {
    font-size: 11px;
    opacity: .7
}

.noti-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 12px;
    opacity: .9
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 56px
}

@media (max-width: 1180px) {
    .tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px
    }
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 200px;
    border-radius: 24px;
    background: rgba(20, 24, 54, .34);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    transition: transform .12s ease, background .12s ease
}

.tile:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .07)
}

.tile .icon {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent
}

.tile .icon i {
    font-size: 28px;
    color: rgba(255, 255, 255, .92)
}

body.page-dashboard .tile {
    gap: 14px
}

body.page-dashboard .tile .icon {
    width: 78px;
    height: 78px;
    border-radius: 26px
}

body.page-dashboard .tile .icon i {
    font-size: 44px
}

body.page-dashboard .tile .label {
    font-size: 16px;
    font-weight: 800
}

.tile .label {
    font-size: 14px;
    font-weight: 600
}

.tile .hint {
    font-size: 11px;
    opacity: .65
}

.footerbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px
}

.settings-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 10px 14px;
    border-radius: 14px
}

body.page-pos .footerbar {
    display: none
}

body.page-pos .content {
    padding: 14px
}

body.page-reports .footerbar {
    display: none
}

body.page-products .footerbar,
body.page-stocks .footerbar,
body.page-customers .footerbar,
body.page-kitchen .footerbar,
body.page-takeaway .footerbar {
    display: none
}

body.page-settings .footerbar {
    display: none
}

body.page-products .content,
body.page-stocks .content,
body.page-customers .content,
body.page-kitchen .content {
    padding: 14px
}

body.page-settings .content {
    padding: 14px;
    overflow: hidden
}

.set-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 14px;
    align-items: stretch
}

@media (max-width: 980px) {
    .set-shell {
        grid-template-columns: 1fr
    }

    .set-left {
        display: none
    }
}

.set-left {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 42, 120, .22), rgba(20, 24, 54, .35));
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

 

.set-item.active {
    background: rgba(255, 255, 255, .16)
}

.set-main {
    border-radius: 22px;
    background: rgba(240, 240, 246, .94);
    border: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(10px);
    padding: 18px;
    color: #1b1d2a
}

.set-title {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 900;
    color: rgba(27, 29, 42, .65);
    margin-bottom: 10px
}

.set-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 10px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .92);
    margin-bottom: 10px
}

.set-l {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.set-l b {
    font-size: 14px
}

.set-l small {
    font-size: 12px;
    opacity: .65
}

.set-r {
    display: flex;
    align-items: center;
    gap: 10px
}

.set-input {
    min-width: 260px;
    border-radius: 16px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a;
    outline: 0
}

.set-blank {
    padding: 22px;
    border-radius: 22px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    opacity: .8
}

body.page-settings .set-shell {
    height: calc(88vh - 80px);
    grid-template-columns: 320px 1fr;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 42, 120, .22), rgba(20, 24, 54, .35));
    backdrop-filter: blur(10px)
}

body.page-settings .set-left {
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 40px 0;
    gap: 0;
    height: 100%;
    overflow: hidden
}

body.page-settings .set-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
    text-decoration: none;
    position: relative
}

body.page-settings .set-item i {
    width: 24px;
    text-align: center;
    font-size: 20px
}

body.page-settings .set-item.active {
    background: #f4f4f9;
    color: #ff2a78;
    border-radius: 40px 0 0 40px;
    margin-left: 20px;
    box-shadow: -10px 5px 20px rgba(0,0,0,0.2);
}

body.page-settings .set-item:hover {
    color: #fff;
	background: rgba(255, 255, 255, 0.04);
    color: #ff2a78;
    border-radius: 40px 0 0 40px;
    margin-left: 20px;
    box-shadow: -10px 5px 20px rgba(0,0,0,0.2);
}

body.page-settings .set-main {
    border-radius: 0;
    border: 0;
    background: #f4f4f9;
    border-radius: 0 22px 22px 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    overscroll-behavior: contain
}

body.page-settings #colsModal .sm-content {
    border-radius: 18px;
}

body.page-settings #colsModal .sm-body {
    padding: 0;
}

body.page-settings #colsModal .pedit-page-body {
    padding: 10px 40px 40px;
}

body.page-settings .set-title {
    padding: 18px 22px 10px;
    margin: 0;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 900;
    color: rgba(27, 29, 42, .60)
}

body.page-settings .set-row {
    border: 0;
    border-radius: 0;
    background: transparent;
    margin: 0;
    padding: 16px 22px;
    border-top: 1px solid rgba(0, 0, 0, .06)
}

body.page-settings form .set-row:first-child {
    border-top: 0
}

body.page-settings .set-input {
    min-width: 220px;
    border-radius: 18px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .10)
}

.switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 32px
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    transition: .15s;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10)
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    top: 2px;
    background: #fff;
    transition: .15s;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18)
}

.switch input:checked+.slider {
    background: rgba(47, 143, 78, .35)
}

.switch input:checked+.slider:before {
    transform: translateX(26px)
}

.ft-shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 14px;
    align-items: start;
    margin-top: 14px
}

@media (max-width: 980px) {
    .ft-shell {
        grid-template-columns: 1fr
    }
}

.ft-left {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 14px
}

.ft-head {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 900;
    color: rgba(27, 29, 42, .65);
    margin-bottom: 10px
}

.ft-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ft-item {
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(0, 0, 0, .02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.ft-item b {
    font-size: 13px
}

.ft-item small {
    opacity: .65
}

.ft-item.active {
    background: rgba(255, 42, 120, .08);
    border-color: rgba(255, 42, 120, .16)
}

.ft-box {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, .08)
}

.ft-cap {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 900;
    color: rgba(27, 29, 42, .65);
    margin-bottom: 10px
}

.ft-main {
    border-radius: 22px;
    background: rgba(240, 240, 246, .94);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 14px
}

.ft-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px
}

.ft-title {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ft-title b {
    letter-spacing: .4px
}

.ft-title small {
    opacity: .65
}

.ft-pill {
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900
}

.ft-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 14px
}

.page-settings .ft-shell .label {
    color: rgba(27, 29, 42, .75);
    opacity: 1
}

.page-settings .ft-shell .input,
.page-settings .ft-shell .select,
.page-settings .ft-shell .textarea {
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

.page-settings .ft-shell .input::placeholder,
.page-settings .ft-shell .textarea::placeholder {
    color: rgba(27, 29, 42, .45)
}

.page-settings .ft-shell .table th {
    color: rgba(27, 29, 42, .75);
    opacity: 1
}

.page-settings .ft-shell .table td {
    background: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    color: #1b1d2a
}

.page-settings .ft-shell .table tr td:first-child {
    border-left: 1px solid rgba(0, 0, 0, .08)
}

.page-settings .ft-shell .table tr td:last-child {
    border-right: 1px solid rgba(0, 0, 0, .08)
}

.page-settings .ft-shell .btn:not(.btn-primary):not(.btn-danger) {
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

.take-shell {
    display: grid;
    grid-template-columns: 420px 1fr 260px;
    gap: 0px;
    align-items: stretch;
    height: 80vh;
}

@media (max-width: 1180px) {
    .take-shell {
        grid-template-columns: 420px 1fr
    }

    .take-right {
        display: none
    }
}

@media (max-width: 920px) {
    .take-shell {
        grid-template-columns: 1fr
    }

    .take-right {
        display: none
    }
}

.take-left {
    border-radius: 22px 0 0 22px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.take-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.take-tab {
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #1b1d2a;
    font-weight: 900
}

.take-tab.active {
    background: #fff
}

.take-pill {
    background: rgba(255, 42, 120, .12);
    border: 1px solid rgba(255, 42, 120, .22);
    padding: 4px 10px;
    border-radius: 999px;
    color: #ff2a78;
    font-weight: 900;
    font-variant-numeric: tabular-nums
}

.take-list {
    flex: 1;
    overflow: auto
}

.take-row {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a
}

.take-row.active {
    background: rgba(255, 42, 120, .06)
}

.take-badge {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff
}

.take-badge.b-getir {
    background: #6a50ff
}

.take-badge.b-trendyol {
    background: #ff8f2a
}

.take-badge.b-y {
    background: #ff2a78
}

.take-badge.b-manual {
    background: #2f8f4e
}

.take-meta {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.take-meta b {
    font-size: 13px
}

.take-meta small {
    opacity: .65
}

.take-amt {
    font-weight: 900
}

.take-leftbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    background: #fff
}

.take-new {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 900;
    letter-spacing: .6px;
    border: none;
}

.take-total {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    color: #1b1d2a
}

.take-total div {
    opacity: .7;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px
}

.take-total b {
    font-size: 18px
}

.take-empty {
    padding: 22px;
    color: rgba(27, 29, 42, .75)
}

.take-main {
    border-radius: 0;
    background: rgba(240, 240, 246, .94);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 16px;
    color: #1b1d2a;
    display: flex;
    flex-direction: column;
    min-height: 620px
}

.take-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.take-hmeta {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.take-hname {
    font-size: 18px;
    font-weight: 900
}

.take-hsub {
    opacity: .7
}

.take-hinfo {
    display: flex;
    align-items: center;
    gap: 10px
}

.take-hchip {
    max-width: 260px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    font-size: 12px;
    opacity: .9
}

.take-x {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900
}

.take-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px
}

.take-steps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.take-step {
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900
}

.take-step.active {
    background: rgba(90, 60, 255, .18);
    border-color: rgba(90, 60, 255, .25)
}

.take-kurye {
    height: 44px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);
    font-weight: 900
}

.take-lines {
    margin-top: 14px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff
}

.take-line {
    display: grid;
    grid-template-columns: 60px 1fr 120px;
    gap: 12px;
    align-items: center;
    padding: 14px 14px;
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.take-line:first-child {
    border-top: 0
}

.take-note {
    margin-top: 14px;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10)
}

.take-note b {
    display: block;
    margin-bottom: 6px
}

.take-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px
}

.take-btn {
    height: 52px;
    border-radius: 18px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900;
    letter-spacing: .6px
}

.take-btn.red {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    border: 0;
    color: #fff
}

.take-btn.green {
    background: linear-gradient(135deg, #2f8f4e, #35b46a);
    border: 0;
    color: #fff
}

.take-foot-right {
    display: flex;
    gap: 10px;
    align-items: center
}

.take-center-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: .85;
    text-align: center
}

.take-new2 {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    border-radius: 18px;
    padding: 12px 18px;
    font-weight: 900;
    letter-spacing: .6px
}

.take-right {
    border-radius: 0 22px 22px 0;
    background: linear-gradient(180deg, rgba(20, 24, 54, .72), rgba(20, 24, 54, .48));
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    padding: 14px
}

.take-rtitle {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .75;
    margin-bottom: 12px
}

.take-rlist {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.take-rlist a {
    padding: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    font-weight: 900;
    letter-spacing: .4px
}

.take-rlist a.active {
    background: rgba(255, 255, 255, .18)
}

.rep-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 14px;
    align-items: stretch
}

@media (max-width: 980px) {
    .rep-shell {
        grid-template-columns: 1fr
    }

    .rep-left {
        display: none
    }
}

.rep-left {
    border-radius: 22px;
    background: linear-gradient(180deg, #ff2a78, #2b2358);
    border: 0;
    backdrop-filter: blur(10px);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.rep-item {
    padding: 12px 14px;
    border-radius: 18px;
    background: transparent;
    border: 0;
    font-weight: 900;
    letter-spacing: .4px;
    color: rgba(255, 255, 255, .94);
    display: flex;
    align-items: center;
    gap: 12px
}

.rep-item i {
    width: 18px;
    text-align: center;
    opacity: .95
}

.rep-item.active {
    background: rgba(255, 255, 255, .92);
    color: #1b1d2a
}

.rep-item.active i {
    color: #ff2a78
}

.rep-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 35px;
}

.rep-content {
    flex: 1 1 auto;
    min-height: 0
}

.rep-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 14px
}

.rep-foot-btn {
    height: 44px;
    border-radius: 12px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.rep-foot-primary {
    background: #ff2a78;
    border: 0;
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 42, 120, 0.22)
}

@media (max-width: 820px) {
    body.page-reports .rep-main {
        padding: 22px 18px 18px;
    }
}

body.page-reports .rep-main {
    position: relative;
}

body.page-reports .rep-cash-new-btn {
    position: absolute;
    right: 35px;
    top: 15px;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    border: 0;
    height: 36px;
    padding: 0 25px;
    border-radius: 9px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: none;
}

body.page-reports .rep-cash-new-btn:hover {
    filter: brightness(0.97);
}

body.page-reports .rep-cash-card {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

body.page-reports .rep-cash-group-title {
    padding: 0 0 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
    color: #ff2a78;
    text-transform: uppercase;
    font-size: 12px;
}

body.page-reports .rep-cash-group-spaced {
    margin-top: 26px;
}

body.page-reports .rep-cash-list {
    display: flex;
    flex-direction: column;
}

body.page-reports .rep-cash-row {
    display: grid;
    grid-template-columns: 1fr 140px 30px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

body.page-reports .rep-cash-row:first-child {
    border-top: 0;
}

body.page-reports .rep-cash-list .rep-cash-row:last-child {
    border-bottom: 0;
}

body.page-reports .rep-cash-name {
    font-weight: 700;
    color: rgba(27, 29, 42, 0.78);
}

body.page-reports .rep-cash-amt {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.85);
}

body.page-reports .rep-cash-row-total .rep-cash-amt {
    color: #1b1d2a;
}

body.page-reports .rep-cash-open {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: transparent;
    border: 0;
    color: #ff2a78;
}

body.page-reports .rep-cash-open:hover {
    filter: brightness(0.95);
}

body.page-reports .rep-footer .rep-foot-btn {
    background: #ff2a78;
    border: 0;
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 42, 120, 0.22);
}

body.page-reports .rep-footer .rep-foot-btn:hover {
    filter: brightness(0.97);
}

body.page-reports .cash-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

body.page-reports .cash-modal-title i {
    color: #ff2a78;
}

body.page-reports .cash-modal-title span {
    margin-left: 10px;
    color: rgba(27, 29, 42, 0.7);
    font-weight: 900;
}

body.page-reports .cash-type-selector {
    margin-bottom: 30px;
}

body.page-reports #cashTxForm {
    display: flex;
    flex-direction: column;
    min-height: 440px;
}

body.page-reports .cash-pay-title {
    margin-top: 30px;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.65);
}

body.page-reports .cash-pay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

body.page-reports .cash-pay-tile {
    border: 0;
    border-radius: 10px;
    padding: 25px 10px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.55);
}

body.page-reports .cash-pay-tile i {
    font-size: 26px;
}

body.page-reports .cash-pay-tile.is-active {
    background: rgba(27, 29, 42, 0.65);
    border-color: rgba(27, 29, 42, 0.18);
    color: #fff;
}

body.page-reports .cash-modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 18px;
}

body.page-reports .cash-modal-submit {
    background: #ff2a78;
    color: #fff;
    border: 0;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 900;
    min-width: 150px;
    box-shadow: 0 14px 28px rgba(255, 42, 120, 0.22);
}

body.page-reports .cash-modal-submit:active {
    transform: scale(0.99);
}

body.page-reports .cash-modal-submit:hover {
    filter: brightness(0.97);
}

body.page-reports .cash-pages.is-success {
    transform: translateX(-50%);
}

body.page-reports .cash-success {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 10px 18px;
}

body.page-reports .cash-success-ic {
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: #7cc043;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 44px;
}

body.page-reports .cash-success-text {
    font-weight: 900;
    color: rgba(27, 29, 42, 0.75);
    font-size: 18px;
}

body.page-reports .cash-success-btn {
    margin-top: 24px;
    width: 100%;
    max-width: 420px;
    height: 54px;
    border-radius: 14px;
    background: #ff2a78;
    color: #fff;
    border: 0;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(255, 42, 120, 0.22);
}

body.page-reports .cash-success-btn:hover {
    filter: brightness(0.97);
}

body.page-reports .rep-orders-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

body.page-reports .rep-orders-title {
    font-weight: 900;
    letter-spacing: 0.6px;
    color: #ff2a78;
    font-size: 12px;
}

body.page-reports .rep-orders-tabs {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    padding: 4px;
    gap: 6px;
}

body.page-reports .rep-orders-tab {
    border: 0;
    background: transparent;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.55);
}

body.page-reports .rep-orders-tab.is-active {
    background: #ff2a78;
    color: #fff;
}

body.page-reports .rep-orders-list {
    display: none;
}

body.page-reports .rep-orders-list.is-active {
    display: block;
}

body.page-reports .rep-orders-row {
    display: grid;
    grid-template-columns: 90px 1fr 140px 170px 120px 30px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    cursor: pointer;
}

body.page-reports .rep-orders-row:last-child {
    border-bottom: 0;
}

body.page-reports .rep-orders-code {
    color: rgba(27, 29, 42, 0.70);
    font-weight: 900;
}

body.page-reports .rep-orders-table {
    font-weight: 700;
    color: rgba(27, 29, 42, 0.78);
}

body.page-reports .rep-orders-user {
    color: rgba(27, 29, 42, 0.60);
    font-weight: 800;
}

body.page-reports .rep-orders-dt {
    color: rgba(27, 29, 42, 0.60);
    font-weight: 800;
}

body.page-reports .rep-orders-total {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.85);
}

body.page-reports .rep-orders-open {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #ff2a78;
}

body.page-reports .rep-orders-empty {
    padding: 18px 0;
    color: rgba(27, 29, 42, 0.55);
    font-weight: 800;
}

body.page-reports .rep-order-lines {
    max-height: 420px;
    overflow: auto;
    padding-right: 6px;
}

body.page-reports .rep-order-line {
    display: grid;
    grid-template-columns: 1fr 70px 90px;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.page-reports .rep-order-line:last-child {
    border-bottom: 0;
}

body.page-reports .rep-order-name {
    font-weight: 800;
    color: rgba(27, 29, 42, 0.78);
}

body.page-reports .rep-order-qty {
    text-align: center;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.70);
}

body.page-reports .rep-order-amt {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.85);
}

body.page-reports .rep-order-empty {
    padding: 18px 0;
    color: rgba(27, 29, 42, 0.55);
    font-weight: 800;
}

body.page-reports .rep-order-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 16px;
}

body.page-reports .rep-order-btn {
    height: 44px;
    border-radius: 12px;
    padding: 0 16px;
    border: 0;
    background: #ff2a78;
    color: #fff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
}

body.page-reports .rep-order-btn-outline {
    background: #fff;
    border: 2px solid #ff2a78;
    color: #ff2a78;
}

body.page-reports .rep-order-btn:hover {
    filter: brightness(0.97);
}

@media (max-width: 980px) {
    body.page-reports .rep-orders-row {
        grid-template-columns: 90px 1fr 120px;
        grid-template-areas:
            "code table open"
            "user dt total";
        row-gap: 6px;
    }
    body.page-reports .rep-orders-code { grid-area: code; }
    body.page-reports .rep-orders-table { grid-area: table; }
    body.page-reports .rep-orders-open { grid-area: open; justify-self: end; }
    body.page-reports .rep-orders-user { grid-area: user; }
    body.page-reports .rep-orders-dt { grid-area: dt; }
    body.page-reports .rep-orders-total { grid-area: total; }
}

.rep-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px
}

.rep-filter {
    display: flex;
    align-items: center;
    gap: 10px
}

.rep-date {
    width: 160px;
    border-radius: 16px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

.rep-sep {
    opacity: .6;
    font-weight: 900
}

.rep-actions {
    display: flex;
    gap: 10px
}

.rep-btn {
    height: 44px;
    border-radius: 16px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900;
    letter-spacing: .6px
}

.rep-primary {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    border: 0;
    color: #fff
}

.rep-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px
}

@media (max-width: 1180px) {
    .rep-grid {
        grid-template-columns: 1fr
    }
}

.rep-card {
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 16px
}

.rep-card-wide {
    min-height: 220px;
    display: flex;
    align-items: center
}

.rep-card-wide .rep-donut {
    width: 100%
}

.rep-donut {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 16px;
    align-items: center
}

@media (max-width: 820px) {
    .rep-donut {
        grid-template-columns: 1fr
    }
}

.donut {
    width: 190px;
    height: 190px;
    border-radius: 999px;
    position: relative;
    margin: 6px
}

.donut-hole {
    position: absolute;
    inset: 44px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06)
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.leg-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.leg-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px
}

.leg-text {
    display: flex;
    align-items: center;
    gap: 10px
}

.leg-text b {
    width: 44px
}

.rep-pay {
    display: flex;
    flex-direction: column
}

.pay-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 25px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.pay-row:last-of-type {
    border-bottom: 0
}

.pay-l {
    display: flex;
    align-items: center;
    gap: 10px
}

.pay-r {
    font-weight: 900
}

.pay-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 10px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: 6px
}

.pay-total div {
    opacity: .7;
    font-weight: 900
}

.rep-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
    grid-column: 1 / -1
}

@media (max-width: 980px) {
    .rep-mini {
        grid-template-columns: 1fr
    }
}

.mini-card {
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px
}

.mini-ic {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, .45);
    flex: 0 0 auto
}

.mini-title {
    opacity: 1;
    font-weight: 900;
    color: #ff2a78;
    font-size: 12px;
    letter-spacing: .3px
}

.mini-val {
    font-size: 18px;
    font-weight: 900
}

.pay-total b {
    color: #ff2a78
}

body.page-reports .rep-card,
body.page-reports .mini-card {
    color: #1b1d2a;
}

body.page-reports .leg-text span {
    color: rgba(27, 29, 42, 0.78);
    font-weight: 700;
}

body.page-reports .leg-text b {
    color: #1b1d2a;
}

body.page-reports .mini-title {
    color: #d81b60;
}

body.page-reports .mini-ic {
    color: rgba(27, 29, 42, 0.55);
    background: rgba(0, 0, 0, 0.03);
}

body.page-reports .pay-l i {
    color: rgba(27, 29, 42, 0.55);
}

body.page-reports .pay-total div {
    opacity: 1;
    color: rgba(27, 29, 42, 0.65);
}

.rep-placeholder {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: .85
}

.page-card {
    background: rgba(20, 24, 54, .34);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 16px 16px 14px;
    backdrop-filter: blur(10px)
}

.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px
}

.page-head h2 {
    margin: 0;
    font-size: 18px
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.btn {
    border: 0;
    border-radius: 14px;
    padding: 10px 12px;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12);
    cursor: pointer
}

.btn-primary {
    background: linear-gradient(135deg, #ff2a78, #5a3cff);
    border: 0
}

.btn-danger {
    background: rgba(255, 88, 88, .18);
    border: 1px solid rgba(255, 88, 88, .35)
}

.btn:disabled {
    opacity: .55;
    cursor: not-allowed
}

.input,
.select,
.textarea {
    width: 100%;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    outline: none
}

.textarea {
    min-height: 90px;
    resize: vertical
}

.label {
    font-size: 12px;
    opacity: .8;
    margin: 10px 0 6px;
    display: block
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

@media (max-width: 900px) {
    .row {
        grid-template-columns: 1fr
    }
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px
}

.table th {
    font-size: 12px;
    opacity: .75;
    text-align: left;
    padding: 0 10px
}

.table td {
    padding: 12px 10px;
    background: rgba(255, 255, 255, .06);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.table tr td:first-child {
    border-left: 1px solid rgba(255, 255, 255, .08);
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px
}

.table tr td:last-child {
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px
}

.alert {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06)
}

.alert-danger {
    border-color: rgba(255, 88, 88, .35);
    background: rgba(255, 88, 88, .12)
}

.alert-success {
    border-color: rgba(143, 255, 187, .35);
    background: rgba(143, 255, 187, .12)
}

.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(1000px 700px at 15% 20%, rgba(255, 42, 120, .75), transparent 62%), radial-gradient(900px 600px at 80% 20%, rgba(90, 60, 255, .55), transparent 58%), linear-gradient(135deg, #121638 0%, #0b0f1c 45%, #121638 100%)
}

.login-body .modal {
    position: fixed
}

.login-body.login-v2 {
    justify-content: stretch;
    align-items: stretch;
    min-height: 100vh;
    background: linear-gradient(90deg, rgba(255, 48, 70, .55) 0%, rgba(36, 54, 255, .45) 100%),
        radial-gradient(1200px 700px at 15% 30%, rgba(255, 48, 70, .55), transparent 60%),
        radial-gradient(1100px 700px at 85% 55%, rgba(36, 54, 255, .45), transparent 60%),
        linear-gradient(135deg, #0b0f1c 0%, #0b0f1c 100%);
    overflow: hidden
}

.login-card {
    width: min(420px, 92vw);
    background: rgba(20, 24, 54, .34);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 18px 18px 16px;
    backdrop-filter: blur(10px)
}

.login-brand {
    font-weight: 800;
    letter-spacing: .8px;
    font-size: 22px
}

.login-brand span {
    font-weight: 500;
    opacity: .85;
    font-style: italic
}

.login-sub {
    opacity: .7;
    margin-top: 4px;
    margin-bottom: 14px
}

.login-help {
    margin-top: 12px;
    font-size: 12px;
    opacity: .8
}

.login-shell {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 320px 1fr
}

.login-left {
    padding: 26px 22px;
    display: flex;
    flex-direction: column
}

.login-users {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    margin-bottom: auto
}

.login-user {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .92);
    font-weight: 900;
    letter-spacing: .3px;
    padding: 10px 10px;
    border-radius: 18px;
    cursor: pointer
}

.login-user:hover {
    background: rgba(255, 255, 255, .10)
}

.login-user.active {
    background: rgba(255, 255, 255, .16)
}

.login-user-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px
}

.login-user-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.login-left-foot {
    margin-top: 22px;
    display: flex;
    justify-content: flex-start
}

.login-install {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(0, 0, 0, .10);
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .3px
}

.login-right {
    position: relative;
    display: block;
    padding: 22px
}

.login-pin {
    width: min(420px, 92vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .94);
    position: fixed;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%)
}

.login-ico {
    margin-bottom: 4px
}

.login-title {
    font-weight: 900;
    letter-spacing: .4px;
    font-size: 26px
}

.login-err {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 88, 88, .35);
    background: rgba(255, 88, 88, .14);
    width: 100%;
    text-align: center;
    font-weight: 800
}

.modal-card.login-err-card {
    width: min(420px, 92vw);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 16px
}

.login-errm-title {
    font-weight: 900;
    letter-spacing: .3px;
    color: #1b1d2a;
    margin-bottom: 8px
}

.login-errm-text {
    color: rgba(27, 29, 42, .82);
    font-weight: 800;
    line-height: 1.35
}

.login-errm-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end
}

.login-pass {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.login-dots {
    display: flex;
    gap: 12px;
    margin-top: 2px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease
}

.login-dots.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.login-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .08)
}

.login-dot.is-on {
    background: rgba(255, 255, 255, .95);
    border-color: rgba(255, 255, 255, .95)
}

.login-dot-more {
    width: auto;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: .2px
}

.login-pad {
    display: grid;
    grid-template-columns: repeat(3, 74px);
    gap: 14px;
    justify-content: center
}

.login-key {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .60);
    background: rgba(0, 0, 0, .10);
    color: rgba(255, 255, 255, .96);
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .08s ease
}

.login-key:active {
    transform: scale(.98)
}

.login-submit {
    margin-top: 10px;
    height: 52px;
    width: min(260px, 84vw);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .94);
    font-weight: 900;
    letter-spacing: .6px;
    cursor: pointer
}

.login-submit:active {
    transform: scale(.99)
}

@media (max-width: 860px) {
    .login-shell {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr
    }
    .login-left {
        padding: 14px 12px 0
    }
    .login-users {
        flex-direction: row;
        overflow: auto;
        margin: 0;
        gap: 10px;
        padding-bottom: 10px
    }
    .login-user {
        width: auto;
        padding: 10px 12px
    }
    .login-left-foot {
        display: none
    }
    .login-right {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .login-pin {
        position: static;
        transform: none
    }
}

.split {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px
}

@media (max-width: 980px) {
    .split {
        grid-template-columns: 1fr
    }
}

.card-title {
    margin: 0 0 10px;
    font-size: 14px;
    opacity: .85
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: 12px;
    cursor: pointer
}

.chip.active {
    background: rgba(255, 255, 255, .12)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px
}

@media (max-width: 1180px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.product {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    cursor: pointer
}

.product b {
    display: block
}

.product small {
    opacity: .75
}

.order-summary {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.order-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10)
}

.order-line .l {
    display: flex;
    flex-direction: column
}

.order-line .r {
    display: flex;
    align-items: center;
    gap: 8px
}

.qty {
    width: 74px
}

.mono {
    font-variant-numeric: tabular-nums
}

.right {
    text-align: right
}

body.page-products .page-card,
body.page-stocks .page-card,
body.page-customers .page-card,
body.page-kitchen .page-card {
    background: rgba(240, 240, 246, .94);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #1b1d2a
}

body.page-products .page-head h2,
body.page-stocks .page-head h2,
body.page-customers .page-head h2,
body.page-kitchen .page-head h2 {
    color: #1b1d2a
}

body.page-products .card-title,
body.page-stocks .card-title,
body.page-customers .card-title,
body.page-kitchen .card-title {
    color: rgba(27, 29, 42, .85)
}

body.page-products .btn,
body.page-stocks .btn,
body.page-customers .btn,
body.page-kitchen .btn {
    color: #1b1d2a;
    background: #ff2a78;
    border: 1px solid rgba(0, 0, 0, .10);
        font-weight: 900;
    border-radius: 10px;
}

body.page-products .btn-danger,
body.page-stocks .btn-danger,
body.page-customers .btn-danger,
body.page-kitchen .btn-danger {
    color: #fff;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    border: 0
}

body.page-products .btn-primary,
body.page-stocks .btn-primary,
body.page-customers .btn-primary,
body.page-kitchen .btn-primary {
    color: #fff
}

body.page-customers .btn-primary {
    background: linear-gradient(135deg, #ff2a78, #5a3cff);
    border: 0;
}

body.page-customers .stocks-top {
    justify-content: center;
    position: relative;
}

body.page-customers .customers-top-label {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff2a78;
    font-weight: 900;
    letter-spacing: 0.6px;
    font-size: 12px;
    text-transform: uppercase;
}

body.page-customers .stocks-search {
    max-width: 620px;
}

body.page-customers #btnCustomerNew {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff2a78;
    color: #fff;
    border: 0;
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
}

body.page-customers #btnCustomerNew:hover {
    filter: brightness(0.97);
}

body.page-customers .stocks-table-wrapper {
    flex: 1;
    overflow: auto;
}

body.page-customers .stocks-table {
    margin: 0 60px;
    width: calc(100% - 120px);
}

body.page-customers .customers-table tbody tr td,
    body.page-customers .receivables-table  tbody tr td {
    padding: 16px 18px;
}

body.page-customers .customers-table .cust-col-ic,
body.page-customers .receivables-table .cust-col-ic {
    width: 35px;
    padding-left: 0;
    padding-right: 8px;
}

body.page-customers .customer-row-ic {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2a78;
    background: rgba(255, 42, 120, 0.10);
    border-radius: 7px;
    font-size: 12px;
}

body.page-customers .customers-table .cust-col-code,
    body.page-customers .receivables-table .cust-col-code {
    width: 120px;
}

body.page-customers .customers-table .cust-col-act,
    body.page-customers .receivables-table .cust-col-act {
    width: 70px;
    text-align: right;
    padding-right: 0px;
}

body.page-customers .customers-table .cust-col-phone {
    width: 210px;
    text-align: right;
}

body.page-customers .customers-table .main-name {
    text-transform: none;
    letter-spacing: 0;
}

body.page-customers .customers-table .stocks-btn-icon,
body.page-customers .receivables-table .stocks-btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 42, 120, 0.08);
    border: 1px solid rgba(255, 42, 120, 0.18);
    color: #ff2a78;
}

body.page-customers .customers-table .stocks-btn-icon:hover,
body.page-customers .receivables-table .stocks-btn-icon:hover {
    filter: brightness(0.98);
}

body.page-products .products-top {
    position: relative;
    justify-content: center;
    padding: 18px 35px;
}

body.page-products .products-top-cols {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 90px;
    color: rgba(27, 29, 42, 0.55);
    font-weight: 900;
    letter-spacing: 1.6px;
    font-size: 11px;
    text-transform: uppercase;
    pointer-events: none;
}

body.page-products .products-search {
    max-width: 520px;
}

body.page-products .products-search i {
    font-size: 16px;
    left: 18px;
}

body.page-products .products-search input {
    height: 40px;
    border-radius: 22px;
    padding: 0 18px 0 48px;
    font-size: 14px;
}

body.page-products .products-top-right {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

body.page-products .pedit-file {
    position: relative;
    height: 44px;
    border-radius: 22px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.10);
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.page-products .pedit-file-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.page-products .pedit-file-row .pedit-file {
    flex: 1;
    min-width: 0;
}

body.page-products .pedit-file-preview {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 42, 120, 0.06);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, 0.60);
    font-weight: 900;
}

body.page-products .pedit-file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.page-products .pedit-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

body.page-products .pedit-file-btn {
    height: 34px;
    border-radius: 14px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 42, 120, 0.10);
    border: 1px solid rgba(255, 42, 120, 0.22);
    color: #ff2a78;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

body.page-products .pedit-file-btn:hover {
    filter: brightness(0.98);
}

body.page-products .pedit-file-name {
    flex: 1;
    min-width: 0;
    font-weight: 800;
    font-size: 13px;
    color: rgba(27, 29, 42, 0.60);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.page-products .products-new-btn,
body.page-products .categories-new-btn {
    height: 36px;
    border-radius: 12px;
    border: 0;
    padding: 0 14px;
    background: #ff2a78;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

body.page-products .products-new-btn:hover,
body.page-products .categories-new-btn:hover {
    filter: brightness(0.97);
}

body.page-products .products-select {
    height: 36px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    padding: 0 14px;
    font-weight: 700;
    font-size: 12px;
    color: rgba(27, 29, 42, 0.75);
    outline: none;
}

body.page-products .products-master-switch .slider {
    background-color: rgba(0, 0, 0, 0.18);
}

body.page-products .categories-master-switch .slider {
    background-color: rgba(0, 0, 0, 0.18);
}

body.page-products .products-list {
    flex: 1;
    overflow: auto;
    padding: 0 35px 10px;
}

body.page-products .products-row {
    display: grid;
    grid-template-columns: 120px 1fr 140px 70px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

body.page-products .products-row:last-child {
    border-bottom: 0;
}

body.page-products .products-code {
    color: rgba(27, 29, 42, 0.70);
}

body.page-products .products-name {
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: rgba(27, 29, 42, 0.85);
}

body.page-products .products-price {
    text-align: right;
    color: rgba(27, 29, 42, 0.70);
}

body.page-products .products-act {
    display: flex;
    justify-content: flex-end;
}

body.page-products .products-footer {
    padding: 12px 35px;
}

body.page-products .categories-top {
    position: relative;
    justify-content: center;
    padding: 18px 35px;
}

body.page-products .categories-top-cols {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 90px;
    color: rgba(27, 29, 42, 0.55);
    font-weight: 900;
    letter-spacing: 1.6px;
    font-size: 11px;
    text-transform: uppercase;
    pointer-events: none;
}

body.page-products .categories-search {
    max-width: 520px;
}

body.page-products .categories-top-right {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

body.page-products .categories-list {
    flex: 1;
    overflow: auto;
    padding: 0 35px 10px;
}

body.page-products .categories-row {
    display: grid;
    grid-template-columns: 120px 1fr 90px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

body.page-products .categories-row:last-child {
    border-bottom: 0;
}

body.page-products .categories-code {
    color: rgba(27, 29, 42, 0.70);
}

body.page-products .categories-name {
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: rgba(27, 29, 42, 0.85);
}

body.page-products .categories-act {
    display: flex;
    justify-content: flex-end;
}

body.page-products .categories-footer {
    padding: 12px 35px;
}

body.page-products .products-legacy-wrap {
    padding: 18px 35px;
}

body.page-products .pmenu-shell {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 16px;
    align-items: stretch;
    height: calc(100vh - 190px)
}

@media (max-width: 980px) {
    body.page-products .pmenu-shell {
        grid-template-columns: 1fr;
        height: auto
    }
}

body.page-products .pmenu-left,
body.page-products .pmenu-right {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 22px 70px rgba(17, 20, 33, .12);
    backdrop-filter: blur(10px)
}

body.page-products .pmenu-left {
    display: flex;
    flex-direction: column;
    min-height: 0
}

body.page-products .pmenu-left-head {
    padding: 14px 16px;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(10px)
}

body.page-products .pmenu-left-title {
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: 12px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu-left-pill {
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900
}

body.page-products .pmenu-list {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 12px
}

body.page-products .pmenu-prod {
    position: relative;
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: #1b1d2a;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .92);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(17, 20, 33, .08);
    margin-bottom: 12px;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease
}

body.page-products .pmenu-prod:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(17, 20, 33, .10)
}

body.page-products .pmenu-prod.active {
    border-color: rgba(255, 42, 120, .28);
    box-shadow: 0 16px 44px rgba(255, 42, 120, .14);
    background: rgba(255, 255, 255, .96)
}

body.page-products .pmenu-prod.active::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff2a78, #5a3cff)
}

body.page-products .pmenu-prod.active .pmenu-prod-main {
    padding-left: 10px
}

body.page-products .pmenu-prod.has-opt::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 18px;
    height: 10px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 6px 50%, rgba(255,255,255,.98) 0 2.1px, transparent 2.2px),
        radial-gradient(circle at 12px 50%, rgba(255,255,255,.98) 0 2.1px, transparent 2.2px),
        #e53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 0 0 2px rgba(255,255,255,.92), 0 6px 16px rgba(0, 0, 0, .16)
}

body.page-products .pmenu-prod-name {
    font-weight: 900;
    letter-spacing: .2px;
    text-transform: uppercase;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2
}

body.page-products .pmenu-prod-sub {
    margin-top: 4px;
    opacity: .85;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

body.page-products .pmenu-right {
    display: flex;
    flex-direction: column;
    min-height: 0
}

body.page-products .pmenu-right-head {
    padding: 14px 16px;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(10px)
}

body.page-products .pmenu-right-title {
    display: flex;
    flex-direction: column;
    gap: 4px
}

body.page-products .pmenu-right-title b {
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: 12px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu-right-title small {
    opacity: .9;
    font-weight: 800;
    color: rgba(27, 29, 42, .75)
}

body.page-products .pmenu-right-pill {
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900
}

body.page-products .pmenu-right-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 42, 120, .05), rgba(90, 60, 255, .05));
    color: #1b1d2a
}

body.page-products .pmenu-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    padding: 14px;
    margin-bottom: 12px
}

body.page-products .pmenu-cap {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 900;
    color: rgba(27, 29, 42, .85);
    margin-bottom: 10px
}

body.page-products .pmenu-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0
}

body.page-products .pmenu-mini-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 50px rgba(17, 20, 33, .10);
    backdrop-filter: blur(10px)
}

body.page-products .pmenu-mini-cap {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 900;
    color: rgba(27, 29, 42, .55)
}

body.page-products .pmenu-mini-name {
    margin-top: 4px;
    font-weight: 900;
    letter-spacing: .3px;
    color: rgba(27, 29, 42, .92);
    text-transform: uppercase
}

body.page-products .pmenu-mini-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 14px;
    align-items: stretch;
    min-height: 0;
    flex: 1
}

@media (max-width: 980px) {
    body.page-products .pmenu-mini-grid {
        grid-template-columns: 1fr
    }
}

body.page-products .pmenu-glist,
body.page-products .pmenu-ilist {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .82);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    box-shadow: 0 18px 50px rgba(17, 20, 33, .10);
    backdrop-filter: blur(10px)
}

body.page-products .pmenu-pane-head {
    padding: 12px 14px;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(10px)
}

body.page-products .pmenu-pane-title {
    font-weight: 900;
    letter-spacing: 1.6px;
    font-size: 11px;
    color: rgba(27, 29, 42, .65)
}

body.page-products .pmenu-pane-pill {
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 900
}

body.page-products .pmenu-pane-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 10px
}

body.page-products .pmenu-grow {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .92);
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(17, 20, 33, .07);
    position: relative;
    margin-bottom: 10px;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease
}

body.page-products .pmenu-grow:first-child {
    border-top: 1px solid rgba(0, 0, 0, .06)
}

body.page-products .pmenu-grow:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(17, 20, 33, .10)
}

body.page-products .pmenu-grow.active {
    border-color: rgba(255, 42, 120, .28);
    box-shadow: 0 16px 40px rgba(255, 42, 120, .14);
    background: rgba(255, 255, 255, .96)
}

body.page-products .pmenu-grow.active::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff2a78, #5a3cff)
}

body.page-products .pmenu-grow.active .pmenu-gmain {
    padding-left: 12px
}

body.page-products .pmenu-grow:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 42, 120, .18), 0 14px 30px rgba(17, 20, 33, .10)
}

body.page-products .pmenu-gname {
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu-gmeta {
    margin-top: 4px;
    font-weight: 800;
    font-size: 12px;
    color: rgba(27, 29, 42, .60);
    display: flex;
    align-items: center;
    gap: 6px
}

body.page-products .pmenu-dot {
    opacity: .8
}

body.page-products .pmenu-ico {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, .75);
    box-shadow: 0 10px 18px rgba(17, 20, 33, .06);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease
}

body.page-products button.pmenu-ico {
    padding: 0;
    cursor: pointer
}

body.page-products .pmenu-ico:hover {
    background: rgba(255, 42, 120, .08);
    border-color: rgba(255, 42, 120, .18)
}

body.page-products .pmenu-ico-danger {
    color: rgba(210, 35, 35, .95)
}

body.page-products .pmenu-ico-danger:hover {
    background: rgba(210, 35, 35, .08);
    border-color: rgba(210, 35, 35, .18)
}

body.page-products .pmenu-irow {
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 24px rgba(17, 20, 33, .07);
    margin-bottom: 10px;
    transition: box-shadow .12s ease, border-color .12s ease, transform .12s ease
}

body.page-products .pmenu-irow:first-child {
    border-top: 1px solid rgba(0, 0, 0, .06)
}

body.page-products .pmenu-iname {
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu-imeta {
    margin-top: 4px;
    font-weight: 800;
    font-size: 12px;
    color: rgba(27, 29, 42, .62);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 5px 10px;
    border-radius: 999px
}

body.page-products .pmenu-iacts {
    display: flex;
    gap: 8px;
    flex: 0 0 auto
}

body.page-products .pmenu-empty {
    padding: 14px 12px;
    color: rgba(27, 29, 42, .72)
}

body.page-products .pmenu-empty b {
    display: block;
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu-empty div {
    margin-top: 4px;
    font-weight: 700;
    font-size: 12px;
    color: rgba(27, 29, 42, .60)
}

body.page-products .pmenu-modal-card {
    width: min(520px, 92vw);
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column
}

body.page-products .pmenu-modal-head {
    padding: 14px 14px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: linear-gradient(135deg, rgba(255, 42, 120, .10), rgba(90, 60, 255, .10))
}

body.page-products .pmenu-modal-title {
    font-weight: 900;
    letter-spacing: .5px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu-modal-x {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

body.page-products .pmenu-modal-body {
    padding: 16px;
    overflow: auto
}

body.page-products .pmenu-modal-field {
    margin-bottom: 12px
}

body.page-products .pmenu-modal-label {
    font-weight: 800;
    font-size: 13px;
    color: rgba(27, 29, 42, .75);
    margin: 0 0 8px
}

body.page-products .pmenu-modal-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

body.page-products .pmenu2-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 14px;
    align-items: stretch;
    height: calc(93vh - 190px)
}

@media (max-width: 980px) {
    body.page-products .pmenu2-layout {
        grid-template-columns: 1fr;
        height: auto
    }
}

body.page-products .pmenu2-side {
    border-radius: 0px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0
}

body.page-products .pmenu2-side-head {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

body.page-products .pmenu2-side-title {
    font-weight: 900;
    letter-spacing: 1.6px;
    font-size: 11px;
    color: rgba(27, 29, 42, .70)
}

body.page-products .pmenu2-side-pill {
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 900;
    color: rgba(27, 29, 42, .70)
}

body.page-products .pmenu2-side-search {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

body.page-products .pmenu2-side-search input {
    border: 0;
    outline: none;
    width: 100%;
    font-weight: 700
}

body.page-products .pmenu2-side-list {
    padding: 10px;
    overflow: auto;
    min-height: 0
}

body.page-products .pmenu2-side-row {
    position: relative;
    display: block;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .96);
    border-radius: 0px;
    padding: 12px 12px;
    margin-bottom: 10px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu2-side-row:hover {
    border-color: rgba(255, 42, 120, .28);
}

body.page-products .pmenu2-side-row.active {
    border-color: rgba(255, 42, 120, .28);
}

body.page-products .pmenu2-side-row.has-opt::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 12px;
    width: 18px;
    height: 10px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 6px 50%, rgba(255,255,255,.98) 0 2.1px, transparent 2.2px),
        radial-gradient(circle at 12px 50%, rgba(255,255,255,.98) 0 2.1px, transparent 2.2px),
        #e53935;
    box-shadow: 0 0 0 2px rgba(255,255,255,.92), 0 6px 16px rgba(0, 0, 0, .12)
}

body.page-products .pmenu2-side-name {
    font-weight: 900;
    letter-spacing: .2px;
    text-transform: uppercase;
    line-height: 1.2
}

body.page-products .pmenu2-side-meta {
    margin-top: 6px;
    font-weight: 800;
    font-size: 12px;
    color: rgba(27, 29, 42, .60)
}

body.page-products .pmenu2-main {
    min-height: 0
}

body.page-products .pmenu2 {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0
}

body.page-products .pmenu2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 0px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
}

body.page-products .pmenu2-kicker {
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 11px;
    color: rgba(27, 29, 42, .60)
}

body.page-products .pmenu2-prodline {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px
}

body.page-products .pmenu2-prodbtn {
    border: 0;
    padding: 6px 12px;
    border-radius: 0px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
    font-weight: 700;
    color: rgba(27, 29, 42, .92);
    cursor: pointer;
    max-width: 520px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

body.page-products .pmenu2-pill {
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 6px 10px;
    border-radius: 0px;
    font-weight: 900;
    color: rgba(27, 29, 42, .70)
}

body.page-products .pmenu2-board {
    flex: 1;
    min-height: 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
}

body.page-products .pmenu2-col {
    width: auto;
    flex: 1 1 280px;
    min-width: 260px;
    max-width: 380px;
    border-radius: 0px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    min-height: 0
}

body.page-products .pmenu2-colhead {
    padding: 12px 12px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px
}

body.page-products .pmenu2-colmain {
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto;
    gap: 6px
}

body.page-products .pmenu2-coltitle {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(27, 29, 42, .92);
    line-height: 1.2
}

body.page-products .pmenu2-coltitle > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

body.page-products .pmenu2-grip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(0, 0, 0, .03);
    color: rgba(27, 29, 42, .65);
    margin-right: 8px;
    cursor: grab
}

body.page-products .pmenu2-grip:active {
    cursor: grabbing
}

body.page-products .dnd-dragging {
    opacity: .92;
    box-shadow: 0 20px 70px rgba(17, 20, 33, .22)
}

body.page-products .dnd-placeholder {
    border: 2px dashed rgba(255, 42, 120, .35);
    background: rgba(255, 42, 120, .06);
    border-radius: 18px
}

body.page-products .pmenu2-colmeta {
    margin-top: 0;
    display: flex;
    gap: 6px;
    color: rgba(27, 29, 42, .60);
    font-weight: 800;
    font-size: 12px;
        align-items: center;
    white-space: nowrap;
    min-width: 0
}

body.page-products .pmenu2-badges {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
    justify-self: end
}

@media (max-width: 1100px) {
    body.page-products .pmenu2-badge {
        padding: 3px 6px;
        font-size: 11px
    }
}

body.page-products .pmenu2-badge {
    background: rgba(255, 42, 120, .10);
    border: 1px solid rgba(255, 42, 120, .16);
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 900;
    color: rgba(27, 29, 42, .85)
}

body.page-products .pmenu2-sbadge {
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 4px 8px;
    border-radius: 999px
}

body.page-products .pmenu2-colacts {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: auto
}

body.page-products .pmenu2-icon {
    width: 30px;
    height: 30px;
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, .75);
    cursor: pointer
}

body.page-products .pmenu2-icon.danger {
    color: rgba(210, 35, 35, .95)
}

body.page-products .pmenu2-colbody {
    padding: 10px 10px 12px;
    overflow: auto;
    min-height: 0
}

body.page-products .pmenu2-add {
    width: 100%;
    border: 1px dashed rgba(0, 0, 0, .14);
    background: rgba(0, 0, 0, .02);
    border-radius: 0px;
    padding: 10px 12px;
    font-weight: 900;
    color: rgba(27, 29, 42, .72);
    cursor: pointer;
    margin-bottom: 10px
}

body.page-products .pmenu2-card {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .96);
    border-radius: 0px;
    padding: 10px 10px;
    margin-bottom: 10px
}

body.page-products .pmenu2-cardtop {
    display: flex;
    justify-content: space-between;
    gap: 10px
}

body.page-products .pmenu2-cardtitle {
    font-weight: 900;
    color: rgba(27, 29, 42, .92);
    letter-spacing: .2px;
    line-height: 1.2
}

body.page-products .pmenu2-cardacts {
    display: flex;
    gap: 8px;
    flex: 0 0 auto
}

body.page-products .pmenu2-cardmeta {
    margin-top: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(27, 29, 42, .62);
    font-weight: 800;
    font-size: 12px
}

body.page-products .pmenu2-dot {
    opacity: .7
}

body.page-products .pmenu2-empty-mini {
    padding: 10px 4px;
    color: rgba(27, 29, 42, .55);
    font-weight: 800;
    font-size: 12px
}

body.page-products .pmenu2-col-add {
    width: auto;
    flex: 0 0 clamp(200px, 18vw, 240px);
    background: rgba(255, 255, 255, .92);
    border-style: dashed;
}

body.page-products .pmenu2-addgroup {
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(0, 0, 0, .02);
    cursor: pointer;
    font-weight: 900;
    color: rgba(27, 29, 42, .72);
    letter-spacing: .2px
}

body.page-products .pmenu2-empty {
    padding: 22px 18px;
    border-radius: 0px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
}

body.page-products .pmenu2-empty b {
    display: block;
    font-weight: 900;
    color: rgba(27, 29, 42, .92);
    letter-spacing: .2px
}

body.page-products .pmenu2-empty div {
    margin-top: 6px;
    font-weight: 700;
    color: rgba(27, 29, 42, .62)
}

body.page-products .pmenu2-prod-card {
    width: min(560px, 92vw);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column
}

body.page-products .pmenu2-prod-head {
    padding: 14px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

body.page-products .pmenu2-prod-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: rgba(27, 29, 42, .92)
}

body.page-products .pmenu2-prod-search {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

body.page-products .pmenu2-prod-search input {
    border: 0;
    outline: none;
    width: 100%;
    font-weight: 700
}

body.page-products .pmenu2-prod-list {
    padding: 10px;
    overflow: auto
}

body.page-products .pmenu2-prod-row {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .96);
    border-radius: 16px;
    padding: 12px 12px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px
}

body.page-products .pmenu2-prod-name {
    font-weight: 900;
    color: rgba(27, 29, 42, .92);
    letter-spacing: .2px
}

body.page-products .pmenu2-prod-meta {
    font-weight: 900;
    color: rgba(27, 29, 42, .60);
    font-size: 12px
}

body.page-products .products-legacy-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

body.page-products #productEditModal .sm-content,
body.page-products #productCreateModal .sm-content,
body.page-products #categoryCreateModal .sm-content,
body.page-products #categoryEditModal .sm-content,
body.page-products #pmenuModal .sm-content {
    border-radius: 18px;
}

body.page-products #productEditModal .sm-body,
body.page-products #productCreateModal .sm-body,
body.page-products #categoryCreateModal .sm-body,
body.page-products #categoryEditModal .sm-body,
body.page-products #pmenuModal .sm-body {
    padding: 0;
}

body.page-products #productEditModal.is-success .sm-header {
    display: none;
}

body.page-products #productEditPages.is-success {
    transform: translateX(-50%);
}

body.page-products #categoryCreateModal.is-success .sm-header,
body.page-products #categoryEditModal.is-success .sm-header {
    display: none;
}

body.page-products #categoryCreatePages.is-success,
body.page-products #categoryEditPages.is-success {
    transform: translateX(-50%);
}

body.page-products #productEditModal .pedit-page-body,
body.page-products #productCreateModal .pedit-page-body,
body.page-products #categoryCreateModal .pedit-page-body,
body.page-products #categoryEditModal .pedit-page-body,
body.page-products #pmenuModal .pedit-page-body {
    padding: 10px 40px 40px;
}

body.page-products .product-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1b1d2a;
}

body.page-products .product-modal-title i {
    color: #ff2a78;
}

body.page-products .product-modal-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

body.page-settings .product-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1b1d2a;
}

body.page-settings .product-modal-title i {
    color: #ff2a78;
}

body.page-settings .product-modal-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

body.page-products #productEditModal .pedit-field,
body.page-products #productCreateModal .pedit-field,
body.page-products #categoryCreateModal .pedit-field,
body.page-products #categoryEditModal .pedit-field,
body.page-products #pmenuModal .pedit-field {
    margin-bottom: 12px;
}

body.page-products #productEditModal .pedit-label,
body.page-products #productCreateModal .pedit-label,
body.page-products #categoryCreateModal .pedit-label,
body.page-products #categoryEditModal .pedit-label,
body.page-products #pmenuModal .pedit-label {
    font-weight: 800;
    font-size: 14px;
    color: rgba(27, 29, 42, 0.75);
    margin: 0 0 8px;
}

body.page-products #productEditModal .pedit-input,
body.page-products #productCreateModal .pedit-input,
body.page-products #categoryCreateModal .pedit-input,
body.page-products #categoryEditModal .pedit-input,
body.page-products #pmenuModal .pedit-input {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.10);
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    color: #1b1d2a;
    outline: none;
}

body.page-products #productEditModal .pedit-input:focus,
body.page-products #productCreateModal .pedit-input:focus,
body.page-products #categoryCreateModal .pedit-input:focus,
body.page-products #categoryEditModal .pedit-input:focus,
body.page-products #pmenuModal .pedit-input:focus {
    border-color: rgba(255, 42, 120, 0.35);
    box-shadow: 0 10px 24px rgba(255, 42, 120, 0.10);
}

body.page-products #productEditModal .pedit-grid,
body.page-products #productCreateModal .pedit-grid,
body.page-products #categoryCreateModal .pedit-grid,
body.page-products #categoryEditModal .pedit-grid,
body.page-products #pmenuModal .pedit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

body.page-products #productEditModal .pedit-select-wrap,
body.page-products #productCreateModal .pedit-select-wrap,
body.page-products #categoryCreateModal .pedit-select-wrap,
body.page-products #categoryEditModal .pedit-select-wrap,
body.page-products #pmenuModal .pedit-select-wrap {
    position: relative;
}

body.page-products #productEditModal .pedit-select,
body.page-products #productCreateModal .pedit-select,
body.page-products #categoryCreateModal .pedit-select,
body.page-products #categoryEditModal .pedit-select,
body.page-products #pmenuModal .pedit-select {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.10);
    padding: 0 44px 0 18px;
    font-size: 14px;
    font-weight: 700;
    color: #1b1d2a;
    outline: none;
    appearance: none;
}

body.page-products #productEditModal .pedit-select-wrap i,
body.page-products #productCreateModal .pedit-select-wrap i,
body.page-products #categoryCreateModal .pedit-select-wrap i,
body.page-products #categoryEditModal .pedit-select-wrap i,
body.page-products #pmenuModal .pedit-select-wrap i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff2a78;
    font-size: 14px;
    pointer-events: none;
}

body.page-products #productEditModal .pedit-actions,
body.page-products #productCreateModal .pedit-actions,
body.page-products #categoryCreateModal .pedit-actions,
body.page-products #categoryEditModal .pedit-actions,
body.page-products #pmenuModal .pedit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 20px;
}

body.page-products #productEditModal .pedit-btn,
body.page-products #productCreateModal .pedit-btn,
body.page-products #categoryCreateModal .pedit-btn,
body.page-products #categoryEditModal .pedit-btn,
body.page-products #pmenuModal .pedit-btn {
    height: 52px;
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

body.page-products #productEditModal .pedit-cancel,
body.page-products #productCreateModal .pedit-cancel,
body.page-products #categoryCreateModal .pedit-cancel,
body.page-products #categoryEditModal .pedit-cancel,
body.page-products #pmenuModal .pedit-cancel {
    background: #fff;
    border: 2px solid rgba(255, 42, 120, 0.55);
    color: #ff2a78;
}

body.page-products #productEditModal .pedit-delete,
body.page-products #categoryCreateModal .pedit-delete,
body.page-products #categoryEditModal .pedit-delete {
    background: #fff;
    border: 2px solid rgba(255, 59, 59, 0.55);
    color: #ff3b3b;
}

body.page-products #productEditModal .pedit-save,
body.page-products #productCreateModal .pedit-save,
body.page-products #categoryCreateModal .pedit-save,
body.page-products #categoryEditModal .pedit-save,
body.page-products #pmenuModal .pedit-save {
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
}

body.page-products .input,
body.page-products .select,
body.page-products .textarea,
body.page-stocks .input,
body.page-stocks .select,
body.page-stocks .textarea,
body.page-customers .input,
body.page-customers .select,
body.page-customers .textarea,
body.page-kitchen .input,
body.page-kitchen .select,
body.page-kitchen .textarea {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

body.page-products .label,
body.page-stocks .label,
body.page-customers .label,
body.page-kitchen .label {
    opacity: .7;
    color: rgba(27, 29, 42, .85)
}

body.page-products .table th,
body.page-stocks .table th,
body.page-customers .table th,
body.page-kitchen .table th {
    opacity: .7;
    color: rgba(27, 29, 42, .9)
}

body.page-products .table td,
body.page-stocks .table td,
body.page-customers .table td,
body.page-kitchen .table td {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    color: #1b1d2a
}

body.page-products .table tr td:first-child,
body.page-stocks .table tr td:first-child,
body.page-customers .table tr td:first-child,
body.page-kitchen .table tr td:first-child {
    border-left: 1px solid rgba(0, 0, 0, .08)
}

body.page-products .table tr td:last-child,
body.page-stocks .table tr td:last-child,
body.page-customers .table tr td:last-child,
body.page-kitchen .table tr td:last-child {
    border-right: 1px solid rgba(0, 0, 0, .08)
}

body.page-products .alert,
body.page-stocks .alert,
body.page-customers .alert,
body.page-kitchen .alert {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

.adm-shell {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    align-items: stretch
}

@media (max-width: 980px) {
    .adm-shell {
        grid-template-columns: 1fr
    }

    .adm-left {
        display: none
    }
}

.adm-left {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 42, 120, .22), rgba(20, 24, 54, .35));
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.adm-item {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    font-weight: 900;
    letter-spacing: .4px;
    color: #fff
}

.adm-item.active {
    background: rgba(255, 255, 255, .16)
}

.adm-main {
    border-radius: 22px;
    background: rgba(240, 240, 246, .94);
    border: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(10px);
    padding: 14px;
    color: #1b1d2a;
    min-height: 640px
}

.adm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px
}

.adm-tabs {
    display: flex;
    gap: 16px;
    opacity: .8;
    font-weight: 900;
    letter-spacing: .4px
}

.adm-cap {
    font-size: 11px
}

.adm-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 999px;
    padding: 8px 12px;
    min-width: 280px
}

.adm-search-in {
    border: 0;
    outline: 0;
    background: transparent;
    width: 240px
}

.adm-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.adm-select {
    border-radius: 999px;
    padding: 9px 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    font-weight: 800
}

.adm-panel {
    margin-top: 14px
}

.adm-add {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 14px
}

.adm-list {
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff
}

.adm-headrow {
    display: grid;
    grid-template-columns: 100px 1fr 140px 100px;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, .03);
    font-weight: 900;
    opacity: .8
}

.adm-row {
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.adm-row>.c {
    display: flex;
    align-items: center
}

.adm-row {
    display: grid;
    grid-template-columns: 100px 1fr 140px 100px;
    gap: 10px;
    padding: 12px 14px
}

.adm-name {
    display: flex;
    align-items: center;
    gap: 10px
}

.adm-img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, .10)
}

.adm-img.ph {
    background: rgba(0, 0, 0, .06)
}

.adm-name-txt {
    font-weight: 900
}

.adm-edit {
    grid-column: 1/-1;
    margin-top: 10px;
    display: none
}

.adm-row.is-open .adm-edit {
    display: block
}

.adm-edit-form {
    border-radius: 16px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 12px
}

.adm-edit-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px
}

.adm-foot {
    padding: 12px 14px;
    text-align: center;
    font-weight: 900;
    opacity: .75
}

.pos-shell {
    display: grid;
    grid-template-columns: 80px 500px 1fr 250px;
    gap: 0;
    align-items: stretch;
    height: 80vh;
}

@media (max-width: 1180px) {
    .pos-shell {
        grid-template-columns: 64px 1fr
    }

    .pos-side,
    .pos-right {
        display: none
    }
}

.pos-leftnav {
    -webkit-border-top-left-radius: 22px;
    -webkit-border-bottom-left-radius: 22px;
    -moz-border-radius-topleft: 22px;
    -moz-border-radius-bottomleft: 22px;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 42, 120, .40), rgba(90, 60, 255, .28));
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pos-leftnav-bottom {
    margin-top: auto
}

.pos-leftnav-bottom .nav-btn {
    position: relative;
    z-index: 5;
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    -webkit-border-bottom-left-radius: 22px;
    -moz-border-radius-bottomleft: 22px;
    border-bottom-left-radius: 22px;
    -webkit-border-top-left-radius: 0 !important;
    -moz-border-radius-topleft: 0 !important;
    width: 100%;
}

.pos-leftnav .nav-btn:first-child{
	-webkit-border-top-left-radius: 22px;
    -moz-border-radius-topleft: 22px;
}

.pos-leftnav .nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 60px;
    background: rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 12px;
    opacity: .9
}

.pos-leftnav .nav-btn[data-open-merge] {
    display: none
}

.pos-leftnav.is-orderslist .nav-btn {
    display: none
}

.pos-leftnav.is-orderslist .nav-btn.nav-btn-keys {
    display: flex
}

.pos-leftnav.is-orderslist .nav-btn[data-open-table-orders],
.pos-leftnav.is-orderslist .nav-btn[data-nav-list-new],
.pos-leftnav.is-orderslist .nav-btn[data-open-merge],
.pos-leftnav.is-orderslist .nav-btn[data-open-print] {
    display: flex
}

.nav-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ff2a78;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.pos-leftnav .nav-btn {
    position: relative;
    z-index: 5;
}

.pos-leftnav .nav-btn.active {
    background: linear-gradient(135deg, rgba(255, 42, 120, .6), rgba(90, 60, 255, .45));
    border-color: rgba(255, 255, 255, .12)
}

.pos-leftnav .pos-leftnav-bottom .nav-btn.active {
    background: #6755a4;
}

.pos-leftnav .nav-btn svg {
    opacity: .95
}

.pos-leftnav .nav-btn i {
    font-size: 18px;
    opacity: .95
}

.tnum-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, .10)
}

.tnum-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.tnum-title {
    font-weight: 900;
    color: #1b1d2a;
    letter-spacing: .3px
}

.tnum-x {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.tnum-body {
    padding: 16px
}

.tnum-inputwrap {
    position: relative;
    margin-bottom: 14px
}

.tnum-input {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, .12);
    padding: 0 48px 0 16px;
    font-size: 16px;
    font-weight: 900;
    outline: none
}

.tnum-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.tnum-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.tnum-key {
    height: 54px;
    border-radius: 14px;
    border: 0;
    background: #171b2f;
    color: #fff;
    font-weight: 900;
    font-size: 18px
}

.tnum-enter {
    grid-column: span 2;
    height: 54px;
    border-radius: 14px;
    border: 0;
    background: #171b2f;
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.pos-side {
    border-radius: 0px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.pos-side .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 10px;
    color: #1b1d2a;
    background: rgba(255, 255, 255, .9)
}

.pos-side .head b {
    letter-spacing: .4px
}

.pos-side .head small {
    opacity: .7
}

.pos-side .list {
    flex: 1;
    overflow: auto;
    background: rgba(255, 255, 255, .92)
}

.pos-side .row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.pos-side .dot {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: #ff2a78;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800
}

.pos-side .row:nth-child(2n) .dot {
    background: #3f66ff
}

.pos-side .meta {
    display: flex;
    flex-direction: column;
    color: #1b1d2a
}

.pos-side .meta b {
    font-size: 12px
}

.pos-side .meta small {
    font-size: 11px;
    opacity: .7
}

.pos-side .amt {
    font-variant-numeric: tabular-nums;
    color: #1b1d2a;
    font-weight: 700
}

.pos-side .foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 14px;
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a
}

.pos-main {
    border-radius: 0px;
    background: rgba(240, 240, 246, .94);
    backdrop-filter: blur(10px);
    padding: 14px
}

.pos-main .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.crumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1b1d2a;
    font-size: 12px;
    letter-spacing: .6px
}

.crumb b {
    color: #1b1d2a;
    letter-spacing: .2px
}

.view-toggles {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12)
}

.toggle {
    height: 100%;
    min-width: 44px;
    padding: 0 10px;
    border-radius: 999px;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .92)
}

.toggle.is-active,
.toggle.is-active-view,
.toggle.is-active-filter {
    background: #fff;
    color: #1b1d2a
}

.toggle i {
    font-size: 14px;
    opacity: .95
}

.pos-table .tno {
    display: none
}

.tables-filter-open .pos-table.is-empty {
    display: none
}

.tables-view-visual .pos-main {
    background: #bcd7ff
}

.tables-view-visual .pos-table {
    --seat-color: rgba(23, 27, 47, .22)
}

.tables-view-visual .pos-table-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px
}

@media (max-width: 1180px) {
    .tables-view-visual .pos-table-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

@media (max-width: 820px) {
    .tables-view-visual .pos-table-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media (max-width: 560px) {
    .tables-view-visual .pos-table-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.tables-view-visual .pos-table {
    height: 104px;
    padding: 0;
    background: transparent;
    border: 0;
    overflow: visible
}

.tables-view-visual .pos-table::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 30px;
    height: 42px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(23, 27, 47, .16);
    z-index: 2
}

.tables-view-visual .pos-table::after {
    content: "";
    display: none
}

.vseats {
    display: none
}

.tables-view-visual .vseats {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    --seat-center-y: 52px;
    --seat-radius: 30px;
    --seat-scale-x: 2.10;
    --seat-unscale-x: .545;
    transform: scaleX(var(--seat-scale-x));
    transform-origin: 50% var(--seat-center-y);
}

.tables-view-visual .vseat {
    position: absolute;
    width: 10px;
    height: 8px;
    border-radius: 999px;
    background: var(--seat-color);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .14), 0 6px 12px rgba(0, 0, 0, .14);
    left: 50%;
    top: var(--seat-center-y);
    --seat-a: var(--a, -90deg);
    transform: translate(-50%, -50%) rotate(var(--seat-a)) translateY(calc(var(--seat-radius) * -1)) rotate(calc(var(--seat-a) * -1))
        scaleX(var(--seat-unscale-x));
}

.tables-view-visual .pos-table.is-draft::before {
    background: linear-gradient(135deg, rgba(47, 89, 255, .92), rgba(79, 125, 255, .92));
    border-color: rgba(255, 255, 255, .26)
}

.tables-view-visual .pos-table.is-draft {
    --seat-color: rgba(255, 255, 255, .88)
}

.tables-view-visual .pos-table.is-sent::before {
    background: linear-gradient(135deg, rgba(255, 42, 120, .92), rgba(255, 74, 106, .92));
    border-color: rgba(255, 255, 255, .26)
}

.tables-view-visual .pos-table.is-sent {
    --seat-color: rgba(255, 255, 255, .90)
}

.tables-view-visual .pos-table.is-timeover::before {
    background: linear-gradient(135deg, rgba(107, 11, 23, .92), rgba(36, 7, 12, .92));
    border-color: rgba(255, 255, 255, .22)
}

.tables-view-visual .pos-table.is-timeover {
    --seat-color: rgba(255, 255, 255, .82)
}

.tables-view-visual .pos-table.is-move-source::before {
    background: linear-gradient(135deg, rgba(122, 44, 255, .92), rgba(58, 19, 96, .92));
    border-color: rgba(255, 255, 255, .22)
}

.tables-view-visual .pos-table.is-move-source {
    --seat-color: rgba(255, 255, 255, .86)
}

.tables-view-visual .pos-table .tcap,
.tables-view-visual .pos-table .tamt,
.tables-view-visual .pos-table .tstate,
.tables-view-visual .pos-table .tfoot,
.tables-view-visual .pos-table .tname {
    display: none
}

.tables-view-visual .pos-table .tmain {
    position: relative;
    z-index: 4;
    height: 100%;
    gap: 0
}

.tables-view-visual .pos-table .tno {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 4px;
    color: #1b1d2a
}

.tables-view-visual .pos-table .tno-name {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .2px;
    opacity: .92;
    text-align: center;
    padding: 0 6px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.tables-view-visual .pos-table.is-draft .tno,
.tables-view-visual .pos-table.is-sent .tno,
.tables-view-visual .pos-table.is-timeover .tno,
.tables-view-visual .pos-table.is-move-source .tno {
    color: #fff
}

.pos-table-grid {
    display: grid;
    grid-template-columns: repeat(var(--ui-tables-cols, 5), minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px
}

@media (max-width: 1180px) {
    .pos-table-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media (max-width: 820px) {
    .pos-table-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.pos-table {
    height: 163px;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .92);
    color: #1b1d2a;
    position: relative;
    overflow: hidden
}

.pos-table::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0));
    opacity: .28;
    pointer-events: none
}

.pos-table .tcap {
    height: 12px;
    width: 92px;
    border-radius: 999px;
    margin: 6px auto 0;
    background: rgba(0, 0, 0, .10);
    position: relative;
    z-index: 1
}

.pos-table .tbadge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #ff2a78;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.pos-table.is-empty .tcap {
    display: none
}

.pos-table .tmain {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.pos-table .tname {
    font-weight: 900;
    letter-spacing: .6px;
    text-align: center
}

.pos-table .tstate {
    font-weight: 900;
    opacity: .55
}

.pos-table .tamt {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .3px
}

.pos-table .tfoot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .3px;
    opacity: .92;
    padding: 0 4px 2px
}

.pos-table.is-empty {
    background: rgba(255, 255, 255, .94)
}

.pos-table.is-draft {
    background: linear-gradient(135deg, #2f59ff, #4f7dff);
    color: #fff;
    border-color: rgba(255, 255, 255, .14)
}

.pos-table.is-sent {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    border-color: rgba(255, 255, 255, .14)
}

.pos-table.is-timeover {
    background: linear-gradient(135deg, #6b0b17, #24070c);
    color: #fff;
    border-color: rgba(255, 255, 255, .14)
}

.pos-table.is-move-source {
    background: linear-gradient(135deg, #7a2cff, #3a1360);
    color: #fff;
    border-color: rgba(255, 255, 255, .14)
}

.pos-table.is-nav {
    background: rgba(255, 255, 255, .92)
}

.pos-table.is-nav .tcap,
.pos-table.is-nav .tfoot,
.pos-table.is-nav .tbadge {
    display: none
}

.pos-table.is-nav .tmain {
    gap: 0
}

.pos-table.is-nav .tnav {
    font-size: 42px;
    color: #ff2a78;
    position: relative;
    z-index: 1
}

.pos-table.is-nav.is-prev .tnav {
    color: #5a3cff
}

.pos-table.is-draft::after,
.pos-table.is-sent::after,
.pos-table.is-timeover::after,
.pos-table.is-move-source::after {
    opacity: .18
}

.pos-table.is-draft .tcap,
.pos-table.is-sent .tcap,
.pos-table.is-timeover .tcap,
.pos-table.is-move-source .tcap {
    background: rgba(255, 255, 255, .20);
    border: 1px solid rgba(255, 255, 255, .18)
}

.no-table-groups .pos-right {
    display: none
}

.table-view-wide .pos-side {
    display: none
}

.table-view-wide .pos-shell {
    grid-template-columns: 64px 1fr 240px
}

.table-size-large .pos-table {
    height: 160px
}

.pos-right {
    -webkit-border-top-right-radius: 22px;
    -webkit-border-bottom-right-radius: 22px;
    -moz-border-radius-topright: 22px;
    -moz-border-radius-bottomright: 22px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    background: rgba(20, 24, 54, .34);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    padding: 14px
}

.pos-right .title {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .75;
    margin-bottom: 12px
}

.pos-right .seg {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: -15px;
}

.pos-right .seg a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.pos-right .seg a.active {
    background: #e4e4ee;
    color: #ff2a78;
    border-radius: 0 40px 40px 0;
    margin-right: 20px;
}

.pos-form {
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10)
}

.pos-form .cap {
    font-size: 11px;
    letter-spacing: 1.8px;
    opacity: .75;
    margin-bottom: 8px;
    font-weight: 800
}

.pos-form .input {
    width: 100%;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff
}

.pos-form .btn {
    margin-top: 10px;
    width: 100%
}

.order-shell {
    display: grid;
    grid-template-columns: 80px 500px 1fr 250px;
    gap: 0px;
    align-items: stretch;
    height: 80vh;
}

.order-shell.is-pay {
    grid-template-columns: 80px 500px 1fr
}

@media (max-width: 1180px) {
    .order-shell {
        grid-template-columns: 64px 1fr
    }

    .order-cart,
    .order-cats {
        display: none
    }
}

@media (max-width: 860px) {
    .order-shell {
        grid-template-columns: 1fr
    }

    .pos-leftnav {
        display: none
    }

    .order-cats {
        display: none
    }
}

.order-cart {
    border-radius: 0px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 520px
}

.order-cart .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .98);
    color: #1b1d2a;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.order-cart .head b {
    letter-spacing: .4px
}

.order-cart .head .btn-lite {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 42, 120, .15);
    border: 1px solid rgba(255, 42, 120, .28);
    color: #1b1d2a;
    font-weight: 900;
    font-size: 12px
}

.order-cart .lines {
    flex: 1;
    overflow: auto;
    background: rgba(255, 255, 255, .98);
    padding: 10px 10px 0
}

.cart-summary {
    padding: 10px 14px 12px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a
}

.cs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 900;
    padding: 6px 0
}

.cs-disc {
    border-top: 1px dashed rgba(0, 0, 0, .16);
    margin-top: 6px;
    padding-top: 10px
}

.cs-disc-l {
    display: flex;
    align-items: center;
    gap: 10px
}

.cs-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(79, 125, 255, .12);
    border: 1px solid rgba(79, 125, 255, .22);
    color: rgba(27, 29, 42, .85);
    font-weight: 900
}

.cart-empty {
    padding: 14px;
    border-radius: 16px;
    border: 1px dashed rgba(0, 0, 0, .18);
    background: rgba(255, 255, 255, .85);
    color: rgba(27, 29, 42, .75);
    text-align: center
}

.cart-line {
    display: grid;
    grid-template-columns: 46px 1fr 92px 44px;
    gap: 10px;
    align-items: center;
    padding: 15px 12px;
    margin-bottom: 0px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a;
    cursor: pointer
}

.cart-line.no-del {
    grid-template-columns: 46px 1fr 92px
}

.cart-line.is-last {
    background: #fff9b8;
    border-color: rgba(0, 0, 0, .10)
}

.cart-line.is-selected {
    background: #fff9b8;
    border-color: rgba(0, 0, 0, .12)
}

.cart-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2a78;
    font-weight: 900;
    font-variant-numeric: tabular-nums
}

.cart-qty small {
    font-size: 15px
}

.cart-name b {
    display: block;
    font-size: 14px;
    letter-spacing: .2px
}

.cart-note {
    margin-top: 3px;
    font-size: 12px;
    opacity: .65;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.cart-price {
    text-align: right;
    font-weight: 900
}

.cart-del {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    display: flex;
    align-items: center;
    justify-content: center
}

.qbtn {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);
    color: #1b1d2a;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center
}

.kitch-shell {
    padding: 14px
}

.kitch-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.kitch-tabs {
    display: flex;
    gap: 14px;
    align-items: center
}

.kitch-tab {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px
}

.kitch-tab.active {
    background: rgba(255, 255, 255, .22)
}

.kitch-grid {
    display: grid;
    grid-template-columns: repeat(var(--ui-kitchen-cols, 3), minmax(0, 1fr));
    gap: 16px
}

@media (max-width: 1280px) {
    .kitch-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media (max-width: 980px) {
    .kitch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.kcard {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    min-height: 280px
}

.khead {
    background: linear-gradient(135deg, #ffb24d, #ff8a2a)
}

.khead1 {
    padding: 12px 14px 10px;
    font-weight: 1000;
    letter-spacing: .3px;
    color: rgba(255, 255, 255, .96);
    text-transform: uppercase
}

.khead2 {
    padding: 8px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255, 255, 255, .30);
    border-top: 1px solid rgba(0, 0, 0, .08)
}

.khead-kind {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 0, 0, .08);
    font-size: 12px;
    font-weight: 900;
    color: rgba(27, 29, 42, .86)
}

.khead-age {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(0, 0, 0, .22);
    font-weight: 900;
    color: rgba(255, 255, 255, .92)
}

.kbody {
    padding: 14px;
    background: rgba(255, 255, 255, .98);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.kqty {
    color: #ff2a78;
    font-weight: 900
}

.kitemline {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 1000;
    letter-spacing: .2px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none
}

.kitemline:active {
    opacity: .85
}

.kitemline .kname {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.kmore {
    opacity: .65;
    font-weight: 900
}

.kdone {
    opacity: .65;
    font-weight: 900
}

.kfoot {
    padding: 12px;
    background: linear-gradient(180deg, rgba(255, 243, 224, .95), rgba(255, 235, 205, .95));
    border-top: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 900;
    color: rgba(27, 29, 42, .8)
}

.karr {
    font-weight: 900
}

.kempty {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    text-align: center;
    font-weight: 900
}

.order-cart .paybar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a
}

.order-cart .paybar .total {
    font-weight: 900;
    font-variant-numeric: tabular-nums;
	font-size: 28px;
}

.order-cart .paybtn {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2f8f4e;
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 20px 14px;
    font-weight: 900;
    letter-spacing: .6px
}

.order-cart .paybtn-green {
    background: #2f8f4e
}

.order-cart .paybar-pay .paybtn {
    flex: 0 0 220px
}

.order-cart .paybtn:disabled {
    opacity: .5
}

.order-cart .sendbtn {
    background: #3f66ff
}

.cart-totalbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a;
    font-weight: 900;
    letter-spacing: .6px
}

.cart-totalbar .total {
    font-variant-numeric: tabular-nums
}

.order-cart .payopts {
    padding: 12px 14px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a
}

.order-cart .payopts .label {
    color: rgba(27, 29, 42, .75)
}

.order-cart .payopts .input,
.order-cart .payopts .select {
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

.order-products {
    border-radius: 0px;
    background: rgba(240, 240, 246, .94);
    backdrop-filter: blur(10px);
    padding: 14px;
    min-height: 520px;
    color: #1b1d2a
}

.order-products .crumb b {
    color: #1b1d2a
}

.order-products .crumb span {
    color: rgba(27, 29, 42, .6)
}

.order-products .search .input {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

.order-products .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.order-products .top .crumb {
    margin: 0
}

.order-products .search {
    display: flex;
    align-items: center;
    gap: 10px
}

.order-products .search .input {
    width: 260px
}

.order-products .search .btn {
    border-radius: 999px
}

.search-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 999px;
    padding: 10px 14px;
    color: #1b1d2a;
    font-weight: 900
}

.search-pill span {
    font-size: 12px
}

.search-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    padding: 12px 14px;
    margin-top: 12px;
    font-weight: 900
}

.search-banner a {
    background: linear-gradient(135deg, #ff2a78, #5a3cff);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(var(--ui-products-cols, 4), minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px
}

.order-grid .pos-table.is-nav {
    height: auto;
    min-height: 190px
}

.order-grid .pos-table.is-nav .tnav {
    font-size: 44px
}

@media (max-width: 1280px) {
    .order-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media (max-width: 980px) {
    .order-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.p-card {
    border-radius: 7px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a;
    cursor: pointer;
    position: relative
}

.p-card.has-opt::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 13px;
    width: 21px;
    height: 12px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 7px 50%, rgba(255,255,255,.98) 0 2.1px, transparent 2.2px),
        radial-gradient(circle at 14px 50%, rgba(255,255,255,.98) 0 2.1px, transparent 2.2px),
        #ff2a78;
}

.p-thumb {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px
}

.p-badge {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
    font-size: 11px
}

.p-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.p-card.is-soldout {
    opacity: .65
}

.p-card .soldout {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(1px);
    color: #fff;
    font-weight: 900;
    border-radius: 7px
}

.p-body {
    padding: 10px
}

.p-body b {
    display: block;
    font-size: 12px
}

.p-body .price {
    margin-top: 6px;
    color: #ff2a78;
    font-weight: 900;
    font-variant-numeric: tabular-nums
}

.order-cats {
    -webkit-border-top-right-radius: 22px;
    -webkit-border-bottom-right-radius: 22px;
    -moz-border-radius-topright: 22px;
    -moz-border-radius-bottomright: 22px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    background: linear-gradient(180deg, rgba(20, 24, 54, .72), rgba(20, 24, 54, .48));
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    padding: 14px
}

.order-cats .title {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .75;
    margin-bottom: 12px
}

.order-cats .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: -15px;
}

.order-cats a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.order-cats a.active {
    background: #e4e4ee;
    color: #ff2a78;
    border-radius: 0 40px 40px 0;
    margin-right: 20px;
}

.order-shell .quickpad {
    display: none;
    padding: 12px;
    background: #6755a4;
}

.order-shell.is-keys-open .quickpad {
    display: block
}

.qp-shell {
    display: grid;
    grid-template-columns: 1fr 84px;
    gap: 12px;
    align-items: stretch
}

.qp-inputrow {
    display: block;
    position: relative
}

.qp-input-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    letter-spacing: .6px;
    color: rgba(27, 29, 42, .55);
    pointer-events: none;
    user-select: none
}

.qp-input {
    width: 100%;
    border-radius: 22px;
    padding: 12px 14px 12px 120px;
    background: rgb(243 237 255);
    border: 1px solid rgba(255, 255, 255, .30);
    color: #1b1d2a;
    font-weight: 900;
    letter-spacing: .6px;
    text-align: right;
}

.qp-keys {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px
}

.qp-key,
.qp-enter {
    height: 54px;
    border-radius: 16px;
    background: rgb(211 212 227);
    border: 1px solid rgba(255, 255, 255, .34);
    color: #1b1d2a;
    font-weight: 900;
    font-size: 18px
}

.qp-key.qp-fn {
    background: rgb(211 212 227);
}

.qp-enter {
    grid-row: span 2;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgb(211 212 227);
}

.qp-enter-ico {
    font-size: 22px;
    line-height: 1
}

.qp-side {
    display: flex;
    flex-direction: column;
    background: rgb(243 237 255);
	margin-top: -12px;
    margin-right: -12px;
    margin-bottom: -12px;
}

.qp-side-btn {
    flex: 1;
    min-height: 62px;
    border-radius: 0;
    background: rgba(0, 0, 0, .03);
    border: 0;
    color: #6755a4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .6px;
    text-align: center;
}

.qp-side-btn i {
    font-size: 20px;
    color: #6755a4;
}

.qp-side-btn.active {
    background: rgb(103 85 164);
    color: #ffffff;
}

.qp-side-btn.active i{
	color: #fff;
}

.modal-card.barcode-prod-card {
    width: min(400px, 90vw);
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden
}

.barcode-prod-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px 10px;
}

.barcode-prod-title {
    font-weight: 800;
    color: #63405c;
    font-size: 18px;
    letter-spacing: .2px
}

.barcode-prod-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(90, 60, 255, .12);
    color: rgba(90, 60, 255, .80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .2s
}

.barcode-prod-close:hover {
    background: rgba(90, 60, 255, .20);
    color: rgba(90, 60, 255, 1)
}

.barcode-prod-body {
    padding: 18px 20px 20px;
    text-align: center
}

.barcode-prod-img {
    width: 160px;
    height: 200px;
    margin: 2px auto 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.barcode-prod-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.barcode-prod-badge {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(90, 60, 255, .10);
    border: 1px solid rgba(90, 60, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 40px;
    color: rgba(90, 60, 255, .85)
}

.barcode-prod-name {
    margin-top: 12px;
    font-weight: 800;
    color: #1b1d2a;
    font-size: 17px;
    text-transform: uppercase
}

.barcode-prod-price {
    margin-top: 10px;
    font-weight: 800;
    color: #ff2a78;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.barcode-prod-add {
    width: 100%;
    margin-top: 24px;
    height: 58px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid #ff2a78;
    color: #ff2a78;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .5px;
    transition: all .2s
}

.barcode-prod-add:active {
    transform: scale(.98);
    background: #fff5f8
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55)
}

.modal-card {
    position: relative;
    z-index: 51;
    width: min(1060px, 92vw);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(240, 240, 246, .96);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55)
}

.modal-card.tnum-card {
    width: min(340px, 86vw);
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10)
}

.modal-card.cust-card {
    width: min(620px, 92vw);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    overflow: hidden;
    max-height: calc(100% - 36px);
    height: min(640px, calc(100vh - 120px));
    display: flex;
    flex-direction: column;
    color: #1b1d2a
}

.cust-pages {
    display: block;
    width: 100%;
    transition: none;
    transform: none;
    will-change: auto;
    flex: 1 1 auto;
    min-height: 0;
    position: relative
}

.cust-pages.is-detail {
    transform: none
}

.cust-pages.is-edit {
    transform: none
}

.cust-pages.is-new {
    transform: none
}

.cust-pages.is-detail.is-new {
    transform: none
}

.cust-pages.is-edit.is-new {
    transform: none
}

.cust-page {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    background: #fff
}

.cust-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.cust-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #1b1d2a;
    letter-spacing: .3px
}

.cust-title i {
    color: #ff2a78
}

.cust-x {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.cust-body {
    padding: 14px 16px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0
}

#orderCustomerModal .cust-body {
    padding: 14px 20px
}

#orderCustomerModal .customer-detail-body {
    min-height: 0;
    height: 100%
}

.cust-search {
    position: relative;
    margin-bottom: 12px
}

.cust-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(27, 29, 42, .45)
}

.cust-search input {
    width: 100%;
    height: 42px;
    padding: 0 14px 0 42px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    font-weight: 800;
    color: #1b1d2a
}

.cust-list {
    overflow: auto;
    flex: 1
}

.cust-row {
    width: 100%;
    display: grid;
    grid-template-columns: 40px 70px 1fr 140px;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: #fff;
    cursor: pointer;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    text-align: left;
}

@media (max-width: 520px) {
    .cust-row {
        grid-template-columns: 40px 70px 1fr
    }
    .cust-phone {
        display: none
    }
}

.cust-row:hover {
    background: rgba(255, 42, 120, .04)
}

.cust-ico {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, .65)
}

.cust-code {
    opacity: .65;
    font-weight: 900
}

.cust-name {
    font-weight: 900;
    color: #1b1d2a
}

.cust-phone {
    text-align: right;
    opacity: .7;
    font-weight: 900
}

.cust-new {
    height: 56px;
    border: 0;
    background: rgba(90, 60, 255, .08);
    color: rgba(27, 29, 42, .75);
    font-weight: 900;
    letter-spacing: .3px;
    cursor: pointer
}

.cust-form {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0
}

.cust-type {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 4px 2px
}

.cust-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: rgba(27, 29, 42, .75)
}

.cust-radio input {
    width: 18px;
    height: 18px
}

.cust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
}

.cust-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.cust-inp {
    width: 100%;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 0 14px;
    font-weight: 800;
    background: #fff;
    color: #1b1d2a
}

.cust-inp::placeholder {
    color: rgba(27, 29, 42, .45)
}

.cust-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: auto
}

.cust-btn {
    height: 46px;
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: .3px;
    cursor: pointer
}

.cust-btn.cust-cancel {
    background: #fff;
    border: 2px solid rgba(255, 42, 120, .55);
    color: #ff2a78
}

.cust-btn.cust-ok {
    background: linear-gradient(135deg, #ff2a78, #ff2a78);
    border: 0;
    color: #fff
}

.order-cart .head .btn-customer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 42, 120, .14);
    border: 1px solid rgba(255, 42, 120, .25);
    color: #1b1d2a;
    padding: 8px 12px;
    cursor: pointer
}

.order-cart .head .btn-customer i {
    color: #ff2a78
}

.btn-lite.btn-customer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 42, 120, .14);
    border: 1px solid rgba(255, 42, 120, .25);
    color: #1b1d2a;
    padding: 8px 12px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 900;
    border-radius: 10px;
    font-size: 12px;
}

.btn-lite.btn-customer i {
    color: #ff2a78
}

.btn-lite.btn-customer .btn-customer-name {
    max-width: min(240px, 32vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.order-cust-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.order-quick-carts {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .06)
}

.qc-btn {
    height: 28px;
    min-width: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .98);
    color: rgba(27, 29, 42, .78);
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: relative
}

.qc-btn[data-quick-cart-slot] {
    width: 28px;
    min-width: 28px;
    padding: 0
}

.qc-btn.active {
    background: rgba(255, 42, 120, .92);
    border-color: rgba(255, 42, 120, .42);
    color: #fff
}

.qc-btn.has-items::after {
    content: "";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #19c37d;
    border: 2px solid #fff;
    box-shadow: 0 6px 14px rgba(25, 195, 125, .28)
}

.qc-btn.qc-return {
    background: rgba(90, 60, 255, .10);
    border-color: rgba(90, 60, 255, .22);
    color: rgba(27, 29, 42, .88)
}

.qc-btn.qc-return.active {
    background: rgba(255, 42, 120, .92);
    border-color: rgba(255, 42, 120, .42);
    color: #fff
}

.qc-btn:active {
    transform: translateY(1px)
}

.btn-customer-x {
    margin-left: 0px;
    width: 17px;
    height: 17px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 42, 120, .18);
    flex: 0 0 auto
}

.btn-customer-x i {
    color: rgba(255, 42, 120, .95)
}

.pmodal-card {
    width: min(820px, 92vw);
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    max-height: calc(100% - 36px);
    overflow: auto
}

.pmodal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(255, 42, 120, .16), rgba(79, 125, 255, .14));
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.pmodal-title {
    font-weight: 900;
    color: #1b1d2a;
    letter-spacing: .3px
}

.pmodal-sub {
    margin-top: 2px;
    font-size: 12px;
    opacity: .7;
    font-weight: 800;
    color: #1b1d2a
}

.pmodal-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center
}

.pmodal-body {
    padding: 14px 16px
}

.cols-modal-card {
    width: min(520px, 92vw);
    max-height: calc(100% - 36px);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55)
}

.cols-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.cols-head-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.cols-ico {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 42, 120, .12);
    border: 1px solid rgba(255, 42, 120, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2a78
}

.cols-title {
    font-weight: 900;
    color: #1b1d2a;
    letter-spacing: .2px
}

.cols-x {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center
}

.cols-body {
    padding: 14px 16px
}

.cols-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.cols-opt {
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .05);
    color: #1b1d2a;
    font-weight: 900;
    letter-spacing: .2px
}

.cols-opt.active {
    background: linear-gradient(135deg, rgba(255, 42, 120, .22), rgba(90, 60, 255, .22));
    border-color: rgba(90, 60, 255, .26)
}

.pmodal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px
}

.lnote-card {
    width: min(560px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.lnote-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.lnote-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.lnote-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.lnote-body {
    padding: 10px 16px 16px
}

.lnote-nums {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px
}

.lnote-num {
    height: 44px;
    border-radius: 10px;
    border: 0;
    background: #d7d7dc;
    font-weight: 900;
    color: rgba(27, 29, 42, .80)
}

.lnote-num.active {
    background: #bfc1c8;
    color: rgba(27, 29, 42, .92)
}

.lnote-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px
}

.lnote-chip {
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 0;
    background: #d7d7dc;
    font-weight: 900;
    letter-spacing: .3px;
    color: rgba(27, 29, 42, .80)
}

.lnote-box {
    display: flex;
    align-items: center;
    gap: 12px
}

.lnote-text {
    flex: 1;
    height: 120px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, .10);
    background: #fff;
    padding: 12px 12px;
    resize: none;
    outline: none;
    font-weight: 700;
    color: #1b1d2a
}

.lnote-clear {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid rgba(255, 42, 120, .55);
    background: #fff;
    color: #ff2a78;
    display: flex;
    align-items: center;
    justify-content: center
}

.lnote-ok {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 0;
    margin-top: 14px;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px
}

.comp-card {
    width: min(520px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.comp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.comp-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.comp-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.comp-body {
    padding: 10px 16px 16px
}

.comp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px
}

.comp-chip {
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 0;
    background: #d7d7dc;
    font-weight: 900;
    letter-spacing: .3px;
    color: rgba(27, 29, 42, .80)
}

.comp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 12px;
	color: #1b1d2a;
}

.comp-list {
    display: flex;
    flex-direction: column;
    max-height: 220px;
    overflow: auto;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 12px
}

.comp-list .comp-row {
    border-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 0
}

.comp-list .comp-row:last-child {
    border-bottom: 0
}

.comp-item b {
    font-weight: 900;
    letter-spacing: .3px
}

.comp-qty {
    display: flex;
    align-items: center;
    gap: 10px
}

.comp-qbtn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.comp-qval {
    min-width: 62px;
    text-align: center;
    font-weight: 900
}

.comp-note {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, .10);
    background: #fff;
    padding: 12px;
    resize: none;
    outline: none;
    font-weight: 700;
    color: #1b1d2a
}

.comp-ok {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 0;
    margin-top: 14px;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px
}

.cart-comp {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, .70)
}

.cart-return {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, .70)
}

.cart-cancel {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, .70)
}

.cart-waste {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, .70)
}

.tx-card {
    width: min(560px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.tx-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.tx-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.tx-x {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.tx-list {
    padding: 6px 10px 14px
}

.tx-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    cursor: pointer;
    text-align: left
}

.tx-row + .tx-row {
    margin-top: 10px
}

.tx-ic {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, .55);
    flex: 0 0 auto;
    font-size: 18px
}

.tx-h {
    font-weight: 900;
    color: #1b1d2a;
    letter-spacing: .2px
}

.tx-d {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(27, 29, 42, .62)
}

.tx-row:hover {
    background: rgba(255, 42, 120, .04)
}

.po-card {
    width: min(420px, 92vw);
    height: min(500px, calc(100vh - 80px));
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column
}

.po-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 10px;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.po-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a;
    text-transform: uppercase
}

.po-add {
    height: 30px;
    padding: 0 14px;
    border-radius: 10px;
    border: 0;
    background: #ff2a78;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    flex: 0 0 auto
}

.po-sub {
    padding: 10px 14px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .4px;
    color: rgba(27, 29, 42, .55);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: rgba(0, 0, 0, .02)
}

.po-list {
    padding: 0;
    overflow: auto;
    flex: 1;
    min-height: 0
}

.po-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: #fff;
    cursor: pointer;
    text-align: left
}

.po-row + .po-row {
    margin-top: 0
}

.po-row.active {
    background: rgba(255, 42, 120, .06)
}

.po-row .l {
    font-weight: 900;
    color: #1b1d2a;
    letter-spacing: .2px
}

.po-row .r {
    font-weight: 900;
    color: rgba(27, 29, 42, .60);
    font-variant-numeric: tabular-nums
}

.po-foot {
    padding: 12px 14px 14px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #fff
}

.po-btn {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(255, 42, 120, .55);
    background: #fff;
    color: #ff2a78;
    font-weight: 900;
    cursor: pointer
}

.po-btn.po-next {
    background: #ff2a78;
    color: #fff
}

.po-btn.po-done {
    background: #ff2a78;
    color: #fff
}

.ret-card {
    width: min(560px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.ret-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.ret-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.ret-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.ret-body {
    padding: 10px 16px 16px
}

.ret-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px
}

.ret-chip {
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 0;
    background: #d7d7dc;
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(27, 29, 42, .80)
}

.ret-chip.active {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff
}

.ret-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 220px;
    overflow: auto;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 12px
}

.ret-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
	color: #1b1d2a;
}

.ret-item.active {
    background: rgba(255, 42, 120, .10)
}

.ret-item.is-zero {
    opacity: .45
}

.ret-item b {
    font-weight: 900;
    letter-spacing: .2px
}

.ret-qty {
    display: flex;
    align-items: center;
    gap: 10px
}

.ret-qbtn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.ret-qval {
    min-width: 62px;
    text-align: center;
    font-weight: 900
}

.ret-note {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, .10);
    background: #fff;
    padding: 12px;
    resize: none;
    outline: none;
    font-weight: 700;
    color: #1b1d2a
}

.ret-ok {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 0;
    margin-top: 14px;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px
}

.can-card {
    width: min(560px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.can-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.can-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.can-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.can-body {
    padding: 10px 16px 16px
}

.can-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px
}

.can-chip {
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 0;
    background: #d7d7dc;
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(27, 29, 42, .80)
}

.can-chip.active {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff
}

.can-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 220px;
    overflow: auto;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 12px
}

.can-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
	color: #1b1d2a;
}

.can-item.active {
    background: rgba(255, 42, 120, .10)
}

.can-item.is-zero {
    opacity: .45
}

.can-item b {
    font-weight: 900;
    letter-spacing: .2px
}

.can-qty {
    display: flex;
    align-items: center;
    gap: 10px
}

.can-qbtn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.can-qval {
    min-width: 62px;
    text-align: center;
    font-weight: 900
}

.can-note {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, .10);
    background: #fff;
    padding: 12px;
    resize: none;
    outline: none;
    font-weight: 700;
    color: #1b1d2a
}

.can-ok {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 0;
    margin-top: 14px;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px
}

.hist-card {
    width: min(620px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.hist-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 10px
}

.hist-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 42, 120, .10);
    color: rgba(255, 42, 120, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.hist-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a;
    flex: 1 1 auto
}

.hist-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.hist-body {
    padding: 10px 16px 16px
}

.hist-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow: auto;
    padding-right: 2px
}

.hist-block {
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .02);
    color: #1b1d2a
}

.hist-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(12, 18, 38, .06);
    color: #1b1d2a
}

.hist-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    opacity: .85;
    color: #1b1d2a
}

.hist-time {
    text-align: center;
    opacity: .75;
    font-weight: 900;
    color: #1b1d2a
}

.hist-total {
    text-align: right;
    opacity: .75;
    font-weight: 900;
    color: #1b1d2a
}

.hist-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    background: #fff;
    color: #1b1d2a
}

.hist-l {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.hist-qty {
    color: rgba(255, 42, 120, .95);
    font-weight: 900;
    min-width: 28px
}

.hist-name {
    font-weight: 900;
    color: rgba(27, 29, 42, .88);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hist-r {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto
}

.hist-price {
    font-weight: 900;
    opacity: .85;
    color: #1b1d2a
}

.hist-act {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 42, 120, .12);
    color: rgba(255, 42, 120, .95);
    display: flex;
    align-items: center;
    justify-content: center
}

.prn-card {
    width: min(520px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.prn-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.prn-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.prn-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.prn-body {
    padding: 10px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.prn-paper {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 14px;
    padding: 14px 12px;
    max-height: 520px;
    overflow: auto;
    color: #1b1d2a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

.prn-h1 {
    text-align: center;
    font-weight: 900;
    letter-spacing: .2px
}

.prn-h2 {
    text-align: center;
    opacity: .85;
    font-weight: 900;
    margin-top: 2px
}

.prn-meta {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    font-weight: 900;
    opacity: .9
}

.prn-meta div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.prn-sep {
    margin: 10px 0;
    border-top: 1px dashed rgba(0, 0, 0, .35)
}

.prn-line {
    display: grid;
    grid-template-columns: 1fr 64px 84px;
    gap: 8px;
    padding: 6px 0;
    border-top: 1px solid rgba(0, 0, 0, .06);
    align-items: center
}

.prn-line:first-of-type {
    border-top: 0
}

.prn-note {
    padding: 0 0 8px;
    font-weight: 800;
    font-size: 12px;
    opacity: .85;
    line-height: 1.25
}

.prn-name {
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.prn-qty {
    text-align: right;
    font-weight: 900
}

.prn-price {
    text-align: right;
    font-weight: 900
}

.prn-total {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    margin-top: 10px
}

.prn-ok {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px
}

@media print {
    body * {
        visibility: hidden !important
    }
    #prnPaper, #prnPaper * {
        visibility: visible !important
    }
    #prnPaper {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 76mm !important;
        max-height: none !important;
        overflow: visible !important;
        border: 0 !important;
        border-radius: 0 !important;
        padding: 0 !important
    }
}

.pay-modal {
    padding: 14px
}

.pay-page {
    display: flex;
    justify-content: center;
    padding: 14px
}

.order-pay {
    -webkit-border-top-right-radius: 22px;
    -webkit-border-bottom-right-radius: 22px;
    -moz-border-radius-topright: 22px;
    -moz-border-radius-bottomright: 22px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    background: rgb(232 232 232);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    color: #1b1d2a
}

.op-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
}

.op-title {
    display: flex;
    align-items: center;
    gap: 10px
}

.op-title b {
    letter-spacing: .5px
}

.op-sub {
    opacity: .7;
    font-weight: 900
}

.op-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.op-right {
    display: flex;
    align-items: center;
    gap: 30px
}

.op-paid-status {
    color: #1b1d2a !important;
}

.op-rem {
    text-align: right;
    color: #ff2a78
}

.op-rem div {
    font-size: 12px;
    opacity: .65;
    font-weight: 900
}

.op-rem b {
    font-size: 16px
}

.op-payments-list {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    gap: 10px;
    margin-right: auto;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    z-index: 10;
    position: relative;
}

.op-pay-pill {
    height: 38px;
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0 4px 0 14px;
    gap: 10px;
    font-weight: 700;
    color: #4b4f67;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.op-pay-pill .method {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
}

.op-pay-pill .amount {
    font-family: var(--font-mono);
    font-size: 14px;
}

.op-pay-pill .remove {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(0,0,0,0.05);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b4f67;
    font-size: 14px;
}

.op-pay-pill .remove:hover {
    background: #ff2a78;
    color: #fff;
}

.op-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    font-weight: 900
}

.op-quick {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr)) 260px;
    grid-template-rows: 52px 128px;
    gap: 10px;
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: #6a6c82;
    border-radius: 18px;
    margin: 14px;
    overflow: hidden
}

.op-q {
    height: 52px;
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 900;
    color: rgba(255, 255, 255, .94);
    position: relative;
    z-index: 2;
}

.op-paycard {
        height: 64px;
    border-radius: 0 14px 0 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    border: 0;
    color: #fff;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
    margin-right: -12px;
    margin-top: -12px;
}

.op-paycard-top {
    font-size: 11px;
    opacity: .9;
    font-weight: 900
}

.op-paycard-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 900
}

.op-topbg {
    grid-column: 1/-1;
    grid-row: 2;
    border-radius: 18px;
    background:
        radial-gradient(circle at 20px 20px, rgba(255, 255, 255, .06) 0 12px, transparent 13px),
        radial-gradient(circle at 80px 60px, rgba(255, 255, 255, .06) 0 12px, transparent 13px),
        radial-gradient(circle at 140px 30px, rgba(255, 255, 255, .06) 0 12px, transparent 13px),
        linear-gradient(135deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    pointer-events: none;
}

.op-main {
    flex: 1;
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    grid-template-rows: 60px 1fr;
    gap: 14px;
    padding: 14px
}

.op-methods {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 17px
}

.op-mdot {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .95);
    flex: 0 0 36px
}

.op-m {
    height: 68px;
    border-radius: 18px;
    background: #4b4f67;
    border: 0;
    color: #fff;
    font-weight: 900;
    text-align: left;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.op-minit {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: .4px;
    color: rgba(255, 255, 255, .98);
    flex: 0 0 42px
}

.op-m .op-mdot {
    visibility: hidden
}

.op-m.active {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a)
}

.op-m.active .op-mdot {
    visibility: visible
}

.op-inputpill {
    grid-column: 2;
    grid-row: 1;
    height: 60px;
    border-radius: 999px;
    background: #fff;
    border: 3px solid rgba(79, 125, 255, .30);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    font-weight: 900;
    color: #1b1d2a
}

.op-pill-dot {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #ff2a78;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px
}

.op-pillmethod {
    letter-spacing: .4px
}

.op-pillzero {
    margin-left: auto;
    opacity: .7
}

.op-kbd {
    grid-column: 2;
    grid-row: 2;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    grid-auto-rows: 72px;
    align-items: stretch
}

.op-k {
    height: 100%;
    border-radius: 18px;
    border: 0;
    background: #131a30;
    color: rgba(255, 255, 255, .96);
    font-weight: 900;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.op-k-del {
    background: #171f3a
}

.op-k-enter {
    grid-row: span 2;
    background: #171f3a;
    font-size: 16px;
    flex-direction: column;
    gap: 10px
}

.op-enter-ico {
    font-size: 30px;
    line-height: 1
}

.op-enter-txt {
    font-size: 16px;
    letter-spacing: .3px
}

.op-actions {
    grid-column: 3;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.op-a {
    height: 68px;
    border-radius: 18px;
    border: 0;
    font-weight: 900;
    color: #fff
}

.op-disc {
    grid-column: 3;
    grid-row: 1;
    border-radius: 18px;
    background: #4f7dff
}

.op-eft {
    background: #6a45c6
}

.op-ph {
    height: 68px;
    border-radius: 18px;
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .10);
    opacity: .35
}

.pm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 14px
}

.pm-title {
    font-size: 20px;
    font-weight: 900;
    color: #1b1d2a
}

.pm-close {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900
}

.pm-top {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 22px;
    padding: 12px
}

.pm-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #1b1d2a
}

.pm-stat div {
    opacity: .75;
    font-size: 12px;
    font-weight: 800
}

.pm-stat b {
    font-size: 18px
}

.pm-kalan {
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff2a78, #5a3cff);
    border: 0;
    color: #fff;
    font-weight: 900;
    padding: 0 18px
}

.pm-mid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 12px
}

.pm-cash {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.pm-chip {
    height: 52px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a;
    font-weight: 900
}

.pm-methods {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.pm-method {
    height: 54px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a;
    font-weight: 900
}

.pm-method.active {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    border: 0;
    color: #fff
}

.pm-keypad {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 12px
}

.pm-amt {
    font-size: 22px;
    font-weight: 900;
    color: #1b1d2a;
    text-align: right;
    padding: 10px 8px
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.pm-key {
    height: 56px;
    border-radius: 18px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a;
    font-weight: 900;
    font-size: 18px
}

.pm-del {
    background: rgba(255, 88, 88, .12);
    border-color: rgba(255, 88, 88, .30)
}

.pm-foot {
    margin-top: 12px
}

.pm-note {
    padding: 12px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10)
}

.pm-note .label {
    color: rgba(27, 29, 42, .75);
    margin: 0 0 8px
}

.pm-note .input {
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    color: #1b1d2a
}

.search-modal {
    background: transparent;
    border: 0;
    box-shadow: none;
    width: min(1100px, 92vw)
}

.sm-box {
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, .10)
}

.sm-input {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 22px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 14px 16px
}

.sm-input input {
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 34px;
    background: transparent;
    color: #1b1d2a
}

.sm-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px
}

.sm-btn {
    height: 56px;
    border-radius: 18px;
    padding: 0 22px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    color: #1b1d2a;
    font-weight: 900;
    letter-spacing: .6px
}

.sm-primary {
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    border: 0;
    color: #fff
}

.kbd {
    margin-top: 14px;
    background: rgba(16, 18, 36, .78);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 28px;
    padding: 14px;
    backdrop-filter: blur(8px)
}

.kbd-row {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 10px;
    margin-top: 10px
}

.kbd-row:first-child {
    margin-top: 0
}

.kbd-key {
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #e9ecf1;
    font-weight: 900;
    font-size: 18px
}

.kbd-back {
    grid-column: span 2
}

.kbd-enter {
    grid-column: span 2;
    background: rgba(143, 255, 187, .25);
    border-color: rgba(143, 255, 187, .35)
}

.kbd-shift {
    grid-column: span 5
}

.kbd-clear {
    grid-column: span 2
}

.disc-card {
    width: min(440px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px);
    display: flex;
    flex-direction: column
}

.disc-track {
    display: flex;
    width: 200%;
    transition: transform .22s ease;
    flex: 1;
    min-height: 0
}

.disc-page {
    width: 50%;
    flex: 0 0 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0
}

.disc-card.is-step2 .disc-track {
    transform: translateX(-50%)
}

.disc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 10px
}

.disc-head-input {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center
}

.disc-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.disc-title-center {
    text-align: center
}

.disc-x,
.disc-back {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.disc-list {
    padding: 10px 0 16px
}

.disc-row {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, .10)
}

.disc-row:first-child {
    border-top: 0
}

.disc-list {
    flex: 1;
    min-height: 0;
    overflow: auto
}

.disc-l {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: rgba(27, 29, 42, .85)
}

.disc-l i {
    color: rgba(27, 29, 42, .55)
}

.disc-r {
    font-weight: 900;
    color: rgba(27, 29, 42, .80)
}

.disc-body {
    padding: 8px 16px 16px;
    flex: 1;
    min-height: 0;
    overflow: auto
}

.disc-foot {
    padding: 0 16px 16px;
    background: #fff;
}

.disc-inputpill {
    height: 58px;
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, .10);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    margin-bottom: 14px
}

.disc-inputval {
    flex: 1;
    font-size: 22px;
    font-weight: 900;
    color: #1b1d2a
}

.disc-inputx {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(0, 0, 0, .04);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.disc-kbd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.disc-k {
    height: 74px;
    border-radius: 14px;
    border: 0;
    background: #131a30;
    color: rgba(255, 255, 255, .96);
    font-weight: 900;
    font-size: 18px
}

.disc-enter {
    background: #171f3a
}

.disc-cancel-card {
    width: min(560px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.disc-cancel-body {
    padding: 18px 18px 18px;
    text-align: center
}

.disc-cancel-icon {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: #ff2a78;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 56px;
    margin: 18px auto 18px
}

.disc-cancel-text {
    font-weight: 800;
    color: rgba(27, 29, 42, .80);
    margin: 0 auto 18px;
    max-width: 360px
}

.disc-cancel-ok {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px
}

.split-card {
    width: min(560px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.split-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.split-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.split-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.split-body {
    padding: 10px 16px 16px
}

.split-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 260px;
    overflow: auto;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 12px
}

.split-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    color: #1b1d2a
}

.split-item.is-zero {
    opacity: .45
}

.split-item b {
    font-weight: 900;
    letter-spacing: .2px
}

.split-qty {
    display: flex;
    align-items: center;
    gap: 10px
}

.split-qbtn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.split-qval {
    min-width: 62px;
    text-align: center;
    font-weight: 900
}

.split-note {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, .10);
    background: #fff;
    padding: 12px;
    resize: none;
    outline: none;
    font-weight: 700;
    color: #1b1d2a
}

.split-ok {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 0;
    margin-top: 14px;
    background: linear-gradient(135deg, #ff2a78, #ff4a6a);
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px
}

.to-card {
    width: min(560px, 92vw);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
    max-height: calc(100% - 36px)
}

.to-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px 10px
}

.to-title {
    font-weight: 900;
    letter-spacing: .4px;
    color: #1b1d2a
}

.to-count {
    font-weight: 900;
    color: rgba(27, 29, 42, .65)
}

.to-x {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    color: rgba(27, 29, 42, .85);
    display: flex;
    align-items: center;
    justify-content: center
}

.to-body {
    padding: 10px 0;
    max-height: 420px;
    overflow: auto;
    border-top: 1px solid rgba(0, 0, 0, .08)
}

.to-view {
    flex: 1;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
    backdrop-filter: none;
    display: flex;
    flex-direction: column
}

.to-vtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: #1b1d2a;
    background: rgba(255, 255, 255, .90)
}

.to-vtitle b {
    letter-spacing: .4px
}

.to-view .to-body {
    max-height: none;
    flex: 1;
    background: rgba(255, 255, 255, .92)
}

.to-vfoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .92);
    color: #1b1d2a
}

.to-row {
    display: grid;
    grid-template-columns: 34px 1fr 64px auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: #1b1d2a
}

.to-row:first-child {
    border-top: 0
}

.to-dot {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #ff2a78;
    border: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900
}

.to-name b {
    font-weight: 900;
    letter-spacing: .3px
}

.to-time {
    text-align: center;
    opacity: .75;
    font-weight: 900
}

.to-amt {
    font-weight: 900
}

.pay-success-card {
    width: min(340px, 92vw);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0,0,0,.5);
    overflow: hidden;
}
.pay-success-head {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.pay-success-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4cd964;
    font-weight: 700;
    font-size: 18px;
}
.pay-success-body {
    padding: 24px 20px;
    text-align: center;
}
.pay-success-info {
    margin-bottom: 20px;
}
.pay-success-label {
    font-size: 14px;
    font-weight: 600;
    color: #ff3b3b;
    opacity: .7;
    margin-bottom: 4px;
}
.pay-success-val {
    font-size: 20px;
    font-weight: 800;
    color: #1b1d2a;
}
.pay-success-btn {
    width: 100%;
    height: 50px;
    background: #ff5b8c;
    color: #fff;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: all .1s;
}
.pay-success-btn:active { transform: scale(.98); background: #e6527e; }

.om-card {
    width: min(340px, 92vw);
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    overflow: hidden;
}
.om-track {
    display: flex;
    width: 400%;
    transform: translateX(0);
    transition: transform .22s ease;
}
.om-card.is-step1 .om-track { transform: translateX(0); }
.om-card.is-step2 .om-track { transform: translateX(-25%); }
.om-card.is-step3 .om-track { transform: translateX(-50%); }
.om-card.is-step4 .om-track { transform: translateX(-75%); }
.om-page {
    width: 25%;
    background: #fff;
}
.om-head {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.om-title {
    font-weight: 800;
    color: #3b3f52;
    font-size: 15px;
    flex: 1 1 auto;
    text-align: left;
}
.om-x,
.om-back {
    width: 32px;
    height: 32px;
}

/* Stock Inventory Styles */
.custom-checkbox {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    user-select: none;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition: all 0.2s;
}
.custom-checkbox:hover input ~ .checkmark {
    background-color: rgba(0, 0, 0, 0.08);
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: #ff2a78;
    border-color: #ff2a78;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.stocks-selection-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.selection-count {
    font-weight: 700;
    color: #7f8c8d;
    font-size: 14px;
}

/* Stock Inventory Mode Styles */
.inventory-mode .col-checkbox {
    display: table-cell !important;
}

.inventory-mode .stocks-selection-info {
    display: flex !important;
}

.inventory-mode .stocks-footer {
    display: flex;
    justify-content: flex-end;
    background: #f4f4f9;
    padding: 18px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.inventory-mode .stocks-selection-info {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    width: auto;
    justify-content: flex-end;
    gap: 14px;
    align-items: center;
}

.inventory-mode #btnContinueInventory {
    background: #ff2a78;
    border-radius: 10px;
    padding: 6px 10px 6px 10px;
    font-weight: 900;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: none;
}

.inventory-mode #btnContinueInventory .btn-ic {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.20);
    flex: 0 0 auto;
}

.inventory-mode #btnContinueInventory .btn-txt {
    font-size: 14px;
    line-height: 1;
}

.inventory-mode .stocks-info,
.inventory-mode .stocks-footer-center,
.inventory-mode .stocks-actions,
.inventory-mode .col-action {
    display: none !important;
}

.inventory-mode .stocks-table {
    border-collapse: collapse;
    border-spacing: 0;
}

.inventory-mode .stocks-table-header {
    padding: 0 24px;
}

.inventory-mode .stocks-table-header .stocks-table {
    margin-bottom: 0;
}

.inventory-mode .stocks-content {
    padding: 0 15px 0 24px;
}

.inventory-mode .stocks-table th {
    padding: 18px 18px;
    color: #ff2a78;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.inventory-mode .stocks-table th.col-checkbox,
.inventory-mode .stocks-table td.col-checkbox {
    padding: 11px 10px;
    text-align: center;
    vertical-align: middle;
}

.inventory-mode .stocks-table td.col-checkbox .custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inventory-mode .stocks-table tbody tr {
    background: transparent;
    box-shadow: none;
}

.inventory-mode .stocks-table tbody tr:hover {
    transform: none;
    box-shadow: none;
}

.inventory-mode .stocks-table tbody tr td {
    padding: 11px 18px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 !important;
}

.inventory-mode .stocks-table tbody tr:last-child td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.inventory-mode .sub-barcode {
    display: none;
}

.inventory-mode .qty-val {
    font-size: 14px;
    font-weight: 700;
}

.inventory-mode .qty-unit {
    display: none;
}

.inventory-mode .custom-checkbox {
    width: auto;
    height: auto;
}

.inventory-mode .custom-checkbox input {
    position: static;
    opacity: 1;
    height: 18px;
    width: 18px;
}

.inventory-mode .custom-checkbox .checkmark {
    display: none;
}

.inventory-modal-content {
    width: 600px !important;
    max-width: 95vw;
}
.inventory-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.inventory-icon {
    width: 32px;
    height: 32px;
    background: #ff2a78;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.inventory-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}
.inventory-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.inventory-item:last-child {
    border-bottom: 0;
}
.inv-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.inv-item-code {
    font-size: 11px;
    font-weight: 700;
    color: #95a5a6;
    letter-spacing: 0.5px;
}
.inv-item-name {
    font-weight: 700;
    color: #3b3f52;
}
.inv-qty-input {
    width: 100px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: right;
    font-weight: 800;
    color: #1b1d2a;
    outline: none;
    transition: border-color 0.2s;
}
.inv-qty-input:focus {
    border-color: #ff2a78;
}
.inventory-footer {
    padding: 20px;
    display: flex;
    gap: 12px;
}
.btn-modal-cancel {
    flex: 1;
    padding: 16px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    font-weight: 800;
    color: #ff2a78;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-modal-cancel:hover {
    background: rgba(0, 0, 0, 0.02);
}
.btn-modal-save {
    flex: 2;
    padding: 16px;
    background: #ff2a78;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(255, 42, 120, 0.2);
}
.btn-modal-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 42, 120, 0.3);
}
.btn-modal-save:active {
    transform: translateY(0);
}
.inventory-pages-wrapper {
    display: flex;
    width: 200%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.inventory-modal-content .sm-page {
    width: 50%;
}
    border-radius: 999px;
    border: 0;
    background: #f2f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b6077;
    flex: 0 0 auto;
}
.om-list {
    padding: 8px 0 12px;
}
.om-row {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}
.om-row + .om-row { border-top: 1px solid rgba(0,0,0,.06); }
.om-row:active { background: #f6f7fb; }
.om-l {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex: 1 1 auto;
}
.om-txt { text-align: left; }
.om-l i {
    font-size: 18px;
    color: #6b62d6;
    width: 22px;
    margin-top: 2px;
}
.om-h {
    font-weight: 800;
    color: #1b1d2a;
    font-size: 14px;
}
.om-d {
    margin-top: 3px;
    font-weight: 700;
    font-size: 12px;
    color: #9aa0b4;
}
.om-body {
    padding: 16px 16px 18px;
}
.om-inputpill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 999px;
    padding: 10px 12px;
    margin-bottom: 14px;
}
.om-input {
    font-weight: 900;
    font-size: 18px;
    color: #1b1d2a;
    min-height: 24px;
}
.om-inputx {
    width: 38px;
    height: 32px;
    border-radius: 999px;
    border: 0;
    background: rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1d2a;
}
.om-kbd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.om-k {
    height: 56px;
    border: 0;
    border-radius: 14px;
    background: #24283a;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
}
.om-k:active { transform: scale(.98); }
.om-enter {
    background: #ff5b8c;
    font-size: 16px;
}

.confirm-card {
    width: min(340px, 92vw);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0,0,0,.5);
    overflow: hidden;
}
.confirm-head {
    padding: 18px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.confirm-title {
    font-weight: 800;
    color: #1b1d2a;
    font-size: 16px;
}
.confirm-x {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 0;
    background: rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1d2a;
}
.confirm-body {
    padding: 24px 20px;
}
.confirm-text {
    font-size: 15px;
    line-height: 1.5;
    color: #4b4f67;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}
.confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.confirm-btn {
    height: 54px;
    border-radius: 14px;
    border: 0;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all .1s;
}
.confirm-yes {
    background: #ff3b3b;
    color: #fff;
}
.confirm-yes:active { transform: scale(.98); background: #e63535; }
.confirm-no {
    background: #f1f3f5;
    color: #4b4f67;
}
.confirm-no:active { transform: scale(.98); background: #e9ecef; }

.paysplit-card {
    width: min(400px, 92vw);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    overflow: hidden;
}

.paysplit-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.paysplit-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #ff2a78;
}

.paysplit-total {
    font-weight: 900;
    font-size: 16px;
    opacity: .6;
}

.paysplit-x {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1d2a;
}

.paysplit-body {
    padding: 20px;
}

.paysplit-desc {
    font-size: 14px;
    font-weight: 600;
    color: #4b4f67;
    margin-bottom: 16px;
    opacity: .8;
}

.paysplit-inputpill {
    height: 60px;
    border-radius: 16px;
    border: 2px solid #4f7dff;
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 20px;
}

.paysplit-val {
    flex: 1;
    font-size: 24px;
    font-weight: 900;
    color: #1b1d2a;
}

.paysplit-inputx {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 20px;
    color: #4b4f67;
    cursor: pointer;
}

.paysplit-kbd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.paysplit-k {
    height: 60px;
    border-radius: 14px;
    border: 0;
    background: #1b1d2a;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}

.paysplit-enter {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
}

/* Stocks Page Styles */
.stocks-layout {
    display: flex;
    height: calc(88vh - 80px);
    margin: 0;
	border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 42, 120, .22), rgba(20, 24, 54, .35));
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
}

.stocks-sidebar {
    width: 320px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.stocks-menu-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
    text-decoration: none;
    position: relative;
}

.stocks-menu-item i {
    width: 24px;
    text-align: center;
    font-size: 20px;
}

.stocks-menu-item:hover {
    color: #fff;
	background: rgba(255, 255, 255, 0.04);
    color: #ff2a78;
    border-radius: 40px 0 0 40px;
    margin-left: 20px;
    box-shadow: -10px 5px 20px rgba(0,0,0,0.2);
}

.stocks-menu-item.active {
    background: #f4f4f9;
    color: #ff2a78;
    border-radius: 40px 0 0 40px;
    margin-left: 20px;
    box-shadow: -10px 5px 20px rgba(0,0,0,0.2);
}


body.page-reports .stocks-menu-item i {
    opacity: 0.95;
}

body.page-reports .stocks-menu-item:hover {
    color: #fff;
}


.stocks-main {
    flex: 1;
    background: #f4f4f9;
    border-radius: 0 22px 22px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.stocks-top {
    padding: 35px 60px;
    display: flex;
    justify-content: center;
}

.stocks-search {
    width: 100%;
    max-width: 700px;
    position: relative;
}

.stocks-search i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff2a78;
    font-size: 20px;
}

.stocks-search input {
    width: 100%;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 30px;
    padding: 0 30px 0 65px;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    color: #1b1d2a;
    transition: all 0.3s;
}

.stocks-search input:focus {
    box-shadow: 0 15px 40px rgba(255, 42, 120, 0.1);
}

.stocks-search button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #f4f4f9;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #95a5a6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.stocks-search button:hover {
    background: #e9e9f2;
    color: #ff2a78;
}

.stocks-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 0;
}

/* Custom Scrollbar */
.stocks-content::-webkit-scrollbar {
    width: 8px;
}
.stocks-content::-webkit-scrollbar-track {
    background: transparent;
}
.stocks-content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.stocks-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.stocks-table-header {
    padding: 0 24px;
}

.stocks-table-header .stocks-table {
    margin-bottom: 0;
}

.stocks-table thead {
    z-index: 100;
}

.stocks-table th {
    text-align: left;
    padding: 18px 18px;
    color: #ff2a78;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.stocks-table th.col-checkbox,
.stocks-table td.col-checkbox {
    padding: 18px 10px;
    text-align: center;
}

.stocks-table tbody tr {
    background: transparent;
}

.stocks-table tbody tr td {
    padding: 11px 18px;
    color: rgba(27, 29, 42, 0.85);
    font-size: 14px;
    font-weight: 600;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    background: transparent;
}

.stocks-table tbody tr:last-child td {
    border-bottom: 0;
}

.stocks-table tbody tr:hover {
    transform: none;
    box-shadow: none;
}

.stocks-table .right {
    text-align: right;
}

.stock-code {
    color: rgba(27, 29, 42, 0.65);
    opacity: 1;
}

.name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-name {
    text-transform: uppercase;
    letter-spacing: 0;
    color: rgba(27, 29, 42, 0.85);
    font-size: 14px;
}

.sub-barcode {
    display: none;
}

.qty-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    width: 100%;
    justify-content: flex-end;
}

.qty-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.qty-val {
    font-weight: 700;
    color: rgba(27, 29, 42, 0.85);
}

.qty-unit {
    display: none;
}

.btn-action {
    background: transparent;
    border: 0;
    width: 34px;
    height: 24px;
    border-radius: 9px;
    color: rgba(255, 42, 120, 0.95);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-action:hover {
    background: rgba(255, 42, 120, 0.08);
    color: #ff2a78;
    transform: none;
}

.stocks-footer {
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: #f4f4f9;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stocks-footer-center {
    grid-column: 2;
    justify-self: center;
}

.stocks-total-count {
    font-weight: 700;
    color: rgba(27, 29, 42, 0.65);
    font-size: 13px;
}

.info-label {
    color: #95a5a6;
    font-weight: 600;
    margin-right: 8px;
}

.info-val {
    color: #1b1d2a;
    font-weight: 800;
    font-size: 18px;
}

.stocks-actions {
    display: flex;
    gap: 15px;
    grid-column: 3;
    justify-self: end;
}

.stocks-refresh-btn {
    background: #ff2a78;
    color: #fff;
    border: 0;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: filter 0.2s;
}

.stocks-refresh-btn:hover {
    filter: brightness(0.95);
}

.btn-secondary {
    background: #f4f4f9;
    color: #7f8c8d;
    border: none;
    padding: 14px 25px;
    border-radius: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #e9e9f2;
    color: #2c3e50;
}

/* Modal Styles */
.stock-modal {
    position: fixed;
    inset: 0;
    background: rgba(21, 27, 48, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

*::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.05) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.10);
}

.sm-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modal-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.sm-pages-wrapper {
    display: flex;
    width: 200%; /* Two pages */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
}

.sm-page {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.customer-pages.is-edit {
    transform: translateX(-50%);
}

.receivable-pages {
    display: flex;
    width: 100%;
}

.receivable-pages .sm-page {
    width: 100%;
    flex: 0 0 100%;
}

.receivables-table tbody tr.receivable-row {
    cursor: pointer;
}

.receivables-table .rec-col-balance {
    text-align: right;
    padding-right: 12px;
}

#receivableModal .sm-content {
    border-radius: 14px;
    height: min(640px, calc(100vh - 120px));
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

#receivableModal .sm-header {
    padding: 14px 16px;
    gap: 12px;
}

#receivableModal .sm-body {
    padding: 0;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

#receivableModal .sm-page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rec-page-pad {
    padding: 18px 20px 22px;
}

.rec-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.rec-modal-person {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #1b1d2a;
    min-width: 0;
}

.rec-modal-person span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rec-modal-person i {
    color: #ff2a78;
}

.rec-modal-amt {
    font-weight: 900;
    color: rgba(27, 29, 42, 0.8);
    flex: 0 0 auto;
}

.rec-modal-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rec-modal-row {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    cursor: pointer;
}

.rec-modal-row + .rec-modal-row {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rec-modal-ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f4f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, 0.55);
    flex: 0 0 auto;
    font-size: 20px;
}

.rec-modal-txt {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.rec-modal-title {
    font-weight: 900;
    color: #1b1d2a;
}

.rec-modal-sub {
    font-size: 12px;
    font-weight: 700;
    color: rgba(27, 29, 42, 0.55);
}

.rec-modal-row:hover .rec-modal-title {
    color: #ff2a78;
}

.rec-stmt-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.rec-stmt-list {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.rec-stmt-empty {
    padding: 18px 20px;
    font-weight: 900;
    opacity: 0.7;
}

.rec-stmt-row {
    display: grid;
    grid-template-columns: 44px 1fr 130px 130px;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rec-stmt-ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f4f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, 0.55);
    font-size: 18px;
}

.rec-stmt-row.is-credit .rec-stmt-ic {
    color: #2aa76a;
}

.rec-stmt-title {
    font-weight: 900;
    color: #1b1d2a;
}

.rec-stmt-date {
    text-align: center;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.6);
}

.rec-stmt-amt {
    text-align: right;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.75);
}

.rec-stmt-foot {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    flex: 0 0 auto;
    position: relative;
}

.rec-stmt-btn {
    height: 54px;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: 0.6px;
    flex: 1 1 0;
    cursor: pointer;
}

.rec-stmt-btn.is-ghost {
    background: #fff;
    border: 2px solid #ff2a78;
    color: #ff2a78;
}

.rec-stmt-btn.is-primary {
    background: #ff2a78;
    border: 0;
    color: #fff;
}

.rec-col-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 18px 20px 22px;
    background: #fff;
}

.rec-col-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rec-col-input {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 0 16px;
    font-weight: 900;
    outline: none;
    background: #fff;
    color: #1b1d2a;
}

.rec-col-input::placeholder {
    color: rgba(27, 29, 42, 0.45);
    font-weight: 900;
}

.rec-col-label {
    margin-top: 60px;
    font-weight: 900;
    color: rgba(27, 29, 42, 0.55);
    font-size: 13px;
}

.rec-col-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.rec-ptype {
    height: 110px;
    border-radius: 10px;
    border: 0;
    background: #f4f4f9;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(27, 29, 42, 0.55);
    font-weight: 900;
    letter-spacing: 0.3px;
}

.rec-ptype i {
    font-size: 22px;
}

.rec-ptype span {
    font-size: 11px;
}

.rec-ptype.active {
    background: #4b4f67;
    color: #fff;
}

.rec-col-foot {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rec-success-shell {
    height: 100%;
    min-height: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 28px 22px;
}

.rec-success-ic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #8bc34a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 62px;
    box-shadow: 0 18px 36px rgba(139, 195, 74, 0.25);
}

.rec-success-text {
    font-weight: 900;
    color: rgba(27, 29, 42, 0.75);
}

.rec-success-btn {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 0;
    background: #ff2a78;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    margin-top: auto;
}

.rec-body {
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.rec-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 8px 0 18px;
}

.rec-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #f0f0f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0aa;
    font-size: 42px;
    flex: 0 0 auto;
}

.rec-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rec-name {
    font-size: 24px;
    font-weight: 900;
    color: #1b1d2a;
}

.rec-balance {
    font-weight: 900;
    color: rgba(27, 29, 42, 0.75);
}

.rec-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.rec-action-btn {
    border: 0;
    padding: 16px 18px;
    border-radius: 16px;
    cursor: pointer;
    background: #f4f4f9;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1b1d2a;
}

.rec-action-btn:hover {
    background: #ff2a78;
    color: #fff;
}

.rec-statement-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 16px;
}

.rec-statement-name {
    font-weight: 900;
    font-size: 18px;
    color: #1b1d2a;
}

.rec-statement-balance {
    font-weight: 900;
    color: rgba(27, 29, 42, 0.75);
}

.rec-tx-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rec-tx-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f4f4f9;
}

.rec-tx-title {
    font-weight: 900;
    color: #1b1d2a;
}

.rec-tx-time {
    font-weight: 800;
    opacity: 0.7;
    font-size: 12px;
    margin-top: 4px;
}

.rec-tx-r {
    font-weight: 900;
}

.rec-tx-row.is-debit .rec-tx-r {
    color: #ff2a78;
}

.rec-tx-row.is-credit .rec-tx-r {
    color: #2aa76a;
}

.rec-tx-empty {
    padding: 16px;
    border-radius: 16px;
    background: #f4f4f9;
    font-weight: 900;
    opacity: 0.75;
}

.rec-paytype {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 6px;
}

.customer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 18px;
    margin-bottom: 20px;
}

.customer-address-group {
    grid-column: 1 / -1;
}

.customer-taxno-group {
    grid-column: 1 / -1;
}

.customer-taxno-group input {
    padding-right: 220px;
}

.customer-taxno-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #5a3cff;
    color: #fff;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 10px 20px rgba(90, 60, 255, 0.25);
}

.customer-taxno-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.customer-detail-body {
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.customer-detail-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 8px 0 18px;
    text-align: left;
}

.customer-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #f0f0f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0aa;
    font-size: 42px;
    flex: 0 0 auto;
}

.customer-detail-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.customer-detail-name {
    font-size: 24px;
    font-weight: 900;
    color: #1b1d2a;
}

.customer-edit-link {
    border: none;
    background: transparent;
    color: #ff2a78;
    font-weight: 900;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.customer-edit-link:hover {
    filter: brightness(0.95);
}

.customer-detail-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 6px 0 18px;
}

.customer-detail-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.customer-detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(27, 29, 42, 0.72);
    font-weight: 600;
    font-size: 16px;
}

.customer-detail-ic {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 29, 42, 0.35);
    flex: 0 0 auto;
    font-size: 18px;
}

.customer-detail-ic-vd {
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.customer-detail-txt {
    font-size: 16px;
    word-break: break-word;
}

.customer-detail-spacer {
    flex: 1;
}

.customer-detail-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.customer-ok-btn {
    background: #ff2a78;
    color: #fff;
    border: 0;
    padding: 16px 26px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    min-width: 170px;
    box-shadow: 0 14px 28px rgba(255, 42, 120, 0.22);
    font-size: 15px;
}

.customer-ok-btn:hover {
    filter: brightness(0.97);
}

.customers-table tbody tr.customer-row {
    cursor: pointer;
}

body.page-customers .customer-edit-actions {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-top: 18px;
}

body.page-customers #customersSection,
body.page-customers #receivablesSection {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
}

body.page-customers .stocks-footer {
    margin-top: auto;
}

body.page-customers .customer-cancel-btn,
body.page-customers .customer-save-btn {
    height: 54px;
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: 0.6px;
    flex: 1 1 0;
}

body.page-customers .customer-cancel-btn {
    background: #fff;
    border: 2px solid #ff2a78;
    color: #ff2a78;
}

body.page-customers .customer-save-btn {
    background: #ff2a78;
    border: 0;
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 42, 120, 0.22);
}

body.page-customers .customer-cancel-btn:hover,
body.page-customers .customer-save-btn:hover {
    filter: brightness(0.97);
}

@media (max-width: 820px) {
    .customer-form-grid {
        grid-template-columns: 1fr;
    }
    .customer-taxno-group input {
        padding-right: 25px;
    }
    .customer-taxno-btn {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
    }

    body.page-customers #btnCustomerNew {
        right: 18px;
    }

    body.page-customers .customers-top-label {
        left: 18px;
    }

    body.page-customers .stocks-table {
        margin: 0 18px;
        width: calc(100% - 36px);
    }

    body.page-customers #customerDetailModal .sm-content {
        max-width: 92vw;
    }

    body.page-customers .customer-edit-actions {
        gap: 14px;
    }
}

/* Success Screen Styles */
.success-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px !important;
    text-align: center;
}

.success-icon-wrapper {
    margin-bottom: 30px;
}

.success-circle {
    width: 140px;
    height: 140px;
    background: #82c91e; /* Green color from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 70px;
    box-shadow: 0 15px 35px rgba(130, 201, 30, 0.3);
}

.success-text {
    font-size: 22px;
    font-weight: 700;
    color: #1b1d2a;
    margin-bottom: 60px;
}

.success-btn {
    background: #ff2a78 !important; /* Pink/Red color from image */
    max-width: 350px;
}

@keyframes modal-pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.sm-header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sm-header h3 {
    margin: 0;
    font-size: 20px;
    color: #4a154b;
    font-weight: 700;
}

.sm-close {
    background: #f4f4f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #95a5a6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sm-close:hover {
    background: #ff2a78;
    color: #fff;
}

.sm-body {
    padding: 0 40px 40px;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sm-page .pedit-page-body {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sm-page .pedit-page-body form {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sm-page .pedit-actions,
.sm-page .inventory-footer,
.sm-page .customer-edit-actions,
.sm-page .rec-stmt-foot,
.sm-page .rec-col-foot {
    margin-top: auto;
}

.sm-page .success-body {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sm-page .success-body .success-btn,
.sm-page .success-body .sm-submit-btn {
    margin-top: auto;
}

.sm-product-info {
    text-align: center;
    margin-bottom: 30px;
}

.sm-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sm-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sm-img-ph {
    width: 60px;
    height: 60px;
    background: #f1f2f6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 24px;
}

.sm-img-ph::after {
    content: '\f466'; /* box icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.sm-product-info h2 {
    margin: 0;
    font-size: 22px;
    color: #1b1d2a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sm-type-selector {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.sm-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.sm-radio input {
    display: none;
}

.radio-mark {
    width: 24px;
    height: 24px;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.sm-radio input:checked + .radio-mark {
    border-color: #ff2a78;
}

.sm-radio input:checked + .radio-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #ff2a78;
    border-radius: 50%;
}

.radio-label {
    font-size: 16px;
    font-weight: 700;
    color: #7f8c8d;
    transition: all 0.2s;
}

.sm-radio input:checked ~ .radio-label {
    color: #1b1d2a;
}

.sm-input-group {
    position: relative;
    margin-bottom: 5px;
}

.sm-input-group input,
.sm-input-group textarea,
.sm-input-group select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #f0f0f5;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #1b1d2a;
    outline: none;
    transition: all 0.2s;
}

.sm-input-group select {
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 46px;
    cursor: pointer;
}

.sm-input-group select:focus {
    border-color: rgba(255, 42, 120, 0.35);
}

.sm-input-group select + label {
    top: 14px;
    transform: none;
    font-size: 12px;
    font-weight: 900;
    color: #ff2a78;
}

.sm-input-group select:not([value=""]) + label {
    top: 14px;
    transform: none;
    font-size: 12px;
    font-weight: 900;
    color: #ff2a78;
}

.sm-input-group select {
    padding-top: 26px;
}

.sm-input-group select {
    background-image: linear-gradient(45deg, transparent 50%, #ff2a78 50%), linear-gradient(135deg, #ff2a78 50%, transparent 50%);
    background-position: calc(100% - 26px) calc(50% - 2px), calc(100% - 20px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.sm-input-group textarea {
    height: 100px;
    resize: none;
}

.sm-input-group label {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    pointer-events: none;
    transition: all 0.2s;
}

.sm-input-group textarea + label {
    top: 25px;
    transform: none;
}

.sm-input-group input:focus,
.sm-input-group textarea:focus,
.sm-input-group input:not(:placeholder-shown),
.sm-input-group textarea:not(:placeholder-shown) {
    border-color: #ff2a78;
    padding-top: 25px;
    padding-bottom: 11px;
}

.sm-input-group input:focus + label,
.sm-input-group textarea:focus + label,
.sm-input-group input:not(:placeholder-shown) + label,
.sm-input-group textarea:not(:placeholder-shown) + label {
    top: 8px;
    left: 25px;
    font-size: 12px;
    color: #ff2a78;
    font-weight: 800;
    transform: none;
}

.sm-unit-label {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    font-weight: 700;
    font-size: 14px;
}

.sm-submit-btn {
    width: 100%;
    padding: 18px;
    background: #ff2a78;
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 42, 120, 0.3);
}

.sm-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 42, 120, 0.4);
}
