:root {
    --primary: #E63946;
    /* Premium Vibrant Red */
    --primary-dark: #C1121F;
    --secondary: #1D3557;
    /* Deep Navy for elegance */
    --accent: #457B9D;
    --background: #F8F9FA;
    --surface: #FFFFFF;
    --text: #1B1B1B;
    --text-muted: #6C757D;
    --border: #E9ECEF;
    --success: #2A9D8F;
    --danger: #E63946;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --safe-area-bottom: env(safe-area-inset-bottom);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Sora', 'Inter', -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    padding-bottom: calc(90px + var(--safe-area-bottom));
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.page {
    display: none;
    padding-top: 1rem;
}

.page.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.brand img {
    filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.2));
}

/* iOS-Style Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 16px;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary:active {
    transform: scale(0.96);
    opacity: 0.9;
}

.btn-outline {
    background: var(--surface);
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 10px;
    gap: 4px;
}

.btn-sm i {
    font-size: 14px;
}

.btn-lg {
    padding: 18px 32px;
    font-size: 18px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(70px + var(--safe-area-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 0.5px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 1000;
}

.nav-item {
    text-decoration: none;
    color: #8A8A8E;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    gap: 5px;
    width: 25%;
}

.nav-item i {
    font-size: 24px;
    transition: transform 0.2s;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item.active i {
    transform: scale(1.1);
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    padding: 5rem 2rem;
    margin: 2rem 0;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #1B1B1B 0%, #444444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-accent-text {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

/* Auth Card */
.auth-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    margin: 4rem auto;
    border: 1px solid var(--border);
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: none;
    padding-left: 4px;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: #E9E9EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    -webkit-appearance: none;
    appearance: none;
}

input:focus {
    background: #D1D1D6;
    outline: none;
}

/* Tabs (iOS Segmented Control Style) */
.tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 4px;
    margin: 1.5rem 0;
    background: #E3E3E8;
    padding: 2px;
    border-radius: 9px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 0 0 auto;
    min-width: 100px;
    background: none;
    border: none;
    padding: 7px;
    cursor: pointer;
    font-weight: 600;
    color: #3A3A3C;
    font-size: 13px;
    border-radius: 7px;
    transition: all 0.2s;
}

.tab-btn.active {
    background: var(--surface);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 800;
}

/* Shop Grid & Cards */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 600px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.1);
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 4px;
}

.product-sku {
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: var(--secondary);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Sidebar (iOS Sheet Style) */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #F9F9F9;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.1, 0.5, 0.1, 1);
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    padding: 1.25rem;
    padding-top: max(1.25rem, env(safe-area-inset-top));
    background: white;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: right;
    padding: 1.5rem;
}

.category-section {
    grid-column: 1/-1;
    margin-top: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.category-title {
    font-size: 1.75rem;
    color: var(--secondary);
    font-weight: 800;
}

/* Table */
.table-responsive {
    border-radius: 12px;
    overflow-x: auto;
    background: white;
    margin-top: 1.5rem;
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: #F2F2F7;
    color: #8E8E93;
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 0.5px solid var(--border);
    font-size: 15px;
}

/* Modal (iOS Popup Style) */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

#scanner-modal {
    z-index: 4000;
    /* Siempre por encima de otros modales */
}

.modal-content {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal.active {
    display: flex;
}

/* Scanner */
#scanner-reader {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.scanner-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
    z-index: 1000;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.scanner-btn:active {
    transform: scale(0.9);
}

.order-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.status-pendiente {
    background: #FF3B3015;
    color: #FF3B30;
    border: 1px solid #FF3B3050;
}

.status-completado {
    background: #E5E5EA;
    color: #3A3A3C;
}

/* Print Label Styles - Off-screen for rendering but hidden from view */
#print-container {
    position: fixed;
    top: -5000px;
    left: -5000px;
    z-index: -100;
}

@media print {

    .no-print,
    .btn,
    .navbar,
    .bottom-nav,
    .sidebar {
        display: none !important;
    }

    body {
        background: white !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        overflow: visible !important;
    }

    #main-app {
        display: none !important;
    }

    /* Labels */
    #print-container {
        display: none !important;
    }

    body.printing-label #print-container {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 50mm;
        height: 30mm;
        margin: 0;
        padding: 0;
    }

    /* Receipt */
    .modal {
        display: none !important;
    }

    body.printing-receipt #receipt-modal {
        display: flex !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto !important;
        background: white !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body.printing-receipt .modal-content {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        background: white !important;
    }

    body.printing-receipt #receipt-modal h3,
    body.printing-receipt #receipt-modal .no-print {
        display: none !important;
    }
}

body.printing-label #print-container * {
    display: block !important;
}

.label-box {
    width: 50mm;
    height: 30mm;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    border: none;
    padding: 1mm;
}

.label-name {
    font-size: 9pt;
    font-weight: 800;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.label-price {
    font-size: 11pt;
    font-weight: 900;
    margin: 0;
}

.label-barcode {
    max-width: 100%;
    height: 15mm;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 11px;
    }

    .sidebar {
        width: 100%;
        right: -100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid white;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        top: -50px;
        opacity: 0;
    }

    to {
        top: 20px;
        opacity: 1;
    }
}

/* Receipt Modal Styles */
.receipt-container {
    font-family: 'Courier New', Courier, monospace;
    padding: 2mm 0;
    /* Remove horizontal padding completely */
    color: #000;
    background: #fff;
    border-radius: 0;
    width: 58mm;
    /* Fixed width exactly for 58mm printers */
    max-width: 58mm;
    margin: 0;
    box-sizing: border-box;
    /* Crucial so padding doesn't affect width */
    border: none;
    /* Removed border that takes space */
}

@media print {
    body.printing-receipt {
        margin: 0 !important;
        padding: 0 !important;
    }

    .receipt-container {
        page-break-inside: avoid;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 58mm !important;
        max-width: 58mm !important;
    }
}

.receipt-header {
    text-align: center;
    border-bottom: 2px dashed #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.receipt-logo {
    max-width: 60px;
    margin-bottom: 5px;
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    /* Smaller font for 58mm */
    margin-bottom: 15px;
}

.receipt-table th {
    text-align: left;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

.receipt-table td {
    padding: 5px 0;
}

.receipt-total {
    border-top: 2px dashed #000;
    padding-top: 10px;
    text-align: right;
    font-weight: 900;
    font-size: 16px;
}

.receipt-footer {
    text-align: center;
    font-size: 9px;
    margin-top: 20px;
    color: #000;
    /* Darker for better thermal printing */
}

@media print {
    @page {
        margin: 0;
        size: auto;
    }
}

/* POS Specific Styles */
.pos-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

.pos-cart {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    max-height: 700px;
}

.pos-discount-input {
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 6px;
    width: 75px;
    background: white;
    border: 1px solid #ddd;
}

#admin-pos-view .search-container input {
    background: white;
    border: 1px solid var(--border);
    transition: all 0.2s;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
}

#admin-pos-view .search-container input:focus {
    border-color: var(--primary);
    background: white;
}

#pos-cart-items {
    overflow-y: auto;
    flex: 1;
    margin: 15px 0;
}

#pos-cart-items::-webkit-scrollbar {
    width: 6px;
}

#pos-cart-items::-webkit-scrollbar-thumb {
    background: #DDD;
    border-radius: 10px;
}

#pos-cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.pos-item-enter {
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .pos-layout {
        grid-template-columns: 1fr;
    }

    .pos-cart {
        max-height: none;
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }

    .pos-discount-input {
        font-size: 15px;
        width: 85px;
        padding: 6px 10px;
    }

    #pos-search-input {
        font-size: 16px !important;
        padding: 14px 16px !important;
    }

    .data-table th,
    .data-table td {
        border-bottom: 0.5px solid var(--border);
        padding: 10px 12px;
        font-size: 13px !important;
    }

    #pos-results-list tr {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    #pos-results-list td {
        border: none;
        padding: 3px 0;
        width: 100%;
    }

    #pos-results-list td:nth-child(4) {
        position: absolute;
        right: 12px;
        top: 18px;
        width: auto;
    }

    #pos-results-list td:nth-child(2),
    #pos-results-list td:nth-child(3) {
        display: inline-block;
        width: auto;
        margin-right: 15px;
        border-bottom: none !important;
    }
}

/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .hero {
        padding: 3rem 1.5rem !important;
        margin: 1rem 0 !important;
    }

    .hero h1 {
        font-size: 2.8rem !important;
    }

    /* Transform Admin Tables into Cards on Mobile */
    #admin-parts-list,
    #admin-accessories-list,
    #admin-celulares-list,
    #admin-users-list {
        display: block !important;
    }

    .data-table thead {
        display: none !important;
    }

    .data-table tr {
        display: block !important;
        background: white !important;
        margin-bottom: 1.5rem !important;
        border-radius: 20px !important;
        padding: 1.25rem !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
        border: 1px solid #eee !important;
    }

    .data-table td {
        display: block !important;
        text-align: left !important;
        padding: 8px 0 !important;
        border: none !important;
        width: 100% !important;
    }

    .data-table td:last-child {
        margin-top: 15px !important;
        padding-top: 15px !important;
        border-top: 1px dashed #eee !important;
        display: flex !important;
        justify-content: flex-end !important;
        gap: 10px !important;
    }

    /* Add labels for mobile table cards */
    #admin-parts-list td:before,
    #admin-accessories-list td:before,
    #admin-celulares-list td:before {
        content: attr(data-label);
        font-weight: 800;
        font-size: 11px;
        text-transform: uppercase;
        color: var(--primary);
        display: block;
        opacity: 0.7;
        margin-bottom: 2px;
    }

    /* Stack Search and Filters */
    .search-container {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 1rem !important;
    }

    .search-container>div {
        width: 100% !important;
    }

    /* Modal Full Height on Mobile */
    .modal-content {
        width: 95% !important;
        max-height: 92vh !important;
        overflow-y: auto !important;
        padding: 1.5rem 1.25rem !important;
        border-radius: 24px !important;
    }

    /* POS Mobile Fixes */
    .pos-layout {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .pos-cart {
        max-height: none !important;
        margin-bottom: 4rem !important;
    }
}