:root {
    /* Color Palette - Professional Dark Theme */
    --bg-base: #0f1419;
    --bg-surface: #1a1f26;
    --bg-elevated: #242b33;

    --text-primary: #ffffff;
    --text-secondary: #8a919e;
    --text-tertiary: #5a6270;

    --accent-primary: #3b82f6;
    --accent-success: #10b981;
    --accent-danger: #ef4444;

    --border: rgba(255, 255, 255, 0.08);

    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;

    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-fast: 150ms ease-out;
    --transition-normal: 250ms ease-out;

    --sidebar-width: 380px;
}

/* Light Mode Theme */
body.light-mode {
    --bg-base: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-elevated: #f1f3f5;

    --text-primary: #0f1419;
    --text-secondary: #5a6270;
    --text-tertiary: #8a919e;

    --border: rgba(0, 0, 0, 0.08);

    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Theme Toggle Button */
.theme-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
}

.theme-toggle:hover {
    background: var(--bg-elevated);
    border-color: var(--border);
    color: var(--text-primary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.65;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

/* ========== LAYOUT ========== */
.app-container {
    display: flex;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
}

.main-content {
    flex: 1;
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: margin-left var(--transition-normal);
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    height: 100dvh;
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color var(--transition-fast);
}

.sidebar-close:hover {
    color: var(--text-primary);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

.sidebar-footer {
    padding: 1rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
    margin-top: auto;
    flex-shrink: 0;
}

.sidebar-footer .btn {
    padding: 0.75rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-danger);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    width: 100%;
}

.sidebar-footer .btn:hover {
    background: #dc2626;
    opacity: 0.9;
}

.member-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    border: 1px solid var(--border);
}

.member-info {
    flex: 1;
    min-width: 0;
}

.member-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-meta {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.member-actions {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.sidebar-invite-btn {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-invite-btn:hover {
    background: rgba(59, 130, 246, 0.1);
}

.sidebar-invite-btn.copied {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: white !important;
    transform: scale(1.05);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    z-index: 999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== HEADER ========== */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    max-width: 1800px;
    margin: 0 auto 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-toggle:hover {
    background: var(--bg-elevated);
    border-color: var(--border);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: -0.02em;
}

.brand .subtitle {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 240px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-role {
    font-size: 0.7rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ========== STATS BAR ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 1800px;
    margin: 0 auto 1rem;
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-fast);
}

.stat-card:hover {
    border-color: var(--border);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon.total {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-primary);
}

.stat-icon.approved {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-success);
}

.stat-icon.pending {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-primary);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== MAIN GRID ========== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 1800px;
    margin: 0 auto;
}


/* ========== CARDS ========== */
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.card-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body {
    padding: 1rem;
}

.card-footer {
    padding: 1rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

/* ========== ITEM LIST ========== */
.item-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.item-list::-webkit-scrollbar {
    width: 6px;
}

.item-list::-webkit-scrollbar-track {
    background: transparent;
}

.item-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.item-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all var(--transition-fast);
}

.item-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-medium);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.item-title {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.item-submitter {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.125rem;
}

.item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.quantity-btn:disabled {
    pointer-events: none;
    opacity: 0.3;
    cursor: default;
}

.quantity-value {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.price-tag {
    font-weight: 700;
    color: var(--accent-success);
    font-size: 0.875rem;
}

.price-error {
    font-size: 0.7rem;
    color: var(--accent-danger);
}

.item-actions {
    display: flex;
    gap: 0.5rem;
}

/* ========== STATUS PILLS ========== */
.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-PENDING {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-primary);
}

.status-APPROVED {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-success);
}

.status-REJECTED {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-danger);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    opacity: 0.9;
}

.btn-success {
    background: transparent;
    border-color: var(--accent-success);
    color: var(--accent-success);
}

.btn-success:hover {
    background: rgba(16, 185, 129, 0.15);
}

.btn-danger {
    background: transparent;
    border-color: var(--accent-danger);
    color: var(--accent-danger);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.15);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-icon {
    width: 32px;
    height: 32px;
    padding: 0;
}

/* ========== FORMS ========== */
.form-card {
    /* Removed sticky positioning for cleaner layout */
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    background: var(--bg-base);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-tertiary);
}

.empty-state-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.4;
    color: var(--text-tertiary);
}

.empty-state-icon svg {
    width: 48px;
    height: 48px;
}

.empty-state-text {
    font-size: 0.875rem;
}

/* ========== FOCUS STATES ========== */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

input:focus-visible,
select:focus-visible {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* ========== UTILITIES ========== */
.hidden {
    display: none !important;
}

.text-success {
    color: var(--accent-success);
}

.text-error {
    color: var(--accent-danger);
}

.text-warning {
    color: var(--accent-primary);
}

.text-muted {
    color: var(--text-tertiary);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.25s ease-out forwards;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 1920px) {
    .main-content {
        padding: 2rem 3rem;
    }

    .content-grid {
        gap: 2rem;
    }
}

@media (max-width: 1280px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        /* Default block layout ensures correct order */
        display: block;
    }

    .content-grid>section {
        margin-bottom: 1.5rem;
    }

    .content-grid>section:last-child {
        margin-bottom: 0;
    }

    .form-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .main-content {
        padding: 1rem;
    }

    .item-list {
        gap: 2rem;
    }

    .content-grid {
        gap: 1.25rem;
    }

    .app-header {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .header-left {
        gap: 0.75rem;
    }

    .brand h1 {
        font-size: 1.25rem;
    }

    .brand .subtitle {
        font-size: 0.7rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .stat-card {
        padding: 0.875rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .user-badge {
        padding: 0.375rem 0.75rem;
        max-width: 160px;
    }

    .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .user-name {
        font-size: 0.75rem;
    }

    .user-role {
        font-size: 0.65rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .card-header {
        padding: 1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .item-card {
        padding: 0.875rem;
    }

    .item-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .item-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .sidebar {
        width: 100%;
    }

    .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    .btn-sm {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .sidebar {
        width: 90%;
    }
}

/* iPhone SE and small devices */
@media (max-width: 375px) {
    .main-content {
        padding: 0.5rem;
    }

    .brand h1 {
        font-size: 1.125rem;
    }

    .brand .subtitle {
        font-size: 0.7rem;
    }

    .header-right {
        gap: 0.5rem;
    }

    .user-info {
        display: none;
    }

    .stat-card {
        padding: 0.75rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .card-header {
        padding: 0.875rem;
    }

    .card-body {
        padding: 0.875rem;
    }
}

/* Safe area for notched iPhones */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

/* Prevent text resize on orientation change */
html {
    -webkit-text-size-adjust: 100%;
}

/* Smooth scrolling on iOS */
.item-list,
.sidebar-content {
    -webkit-overflow-scrolling: touch;
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {

    .btn,
    .quantity-btn,
    .menu-toggle,
    .theme-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    .quantity-btn {
        width: 36px;
        height: 36px;
    }
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2000;
    pointer-events: none;
    width: 90%;
    max-width: 400px;
}

.toast {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    pointer-events: auto;
}

.toast.hiding {
    animation: toast-out 0.2s ease-in forwards;
}

.toast-icon {
    font-size: 1.2rem;
}

@keyframes toast-in {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes toast-out {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* ========== FORM QUANTITY CONTROL ========== */
.quantity-input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-base);
}

.qty-btn-form {
    width: 40px;
    height: 44px;
    /* Matches standard input height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.qty-btn-form:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.qty-btn-form:active {
    background: rgba(255, 255, 255, 0.1);
}

.qty-input-field {
    flex: 1;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-radius: 0;
    height: 44px;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-input-field::-webkit-outer-spin-button,
.qty-input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}