/* ==========================================================================
   PROBIEN - SISTEMA DE LIQUIDACIÓN Y CONTROL DE ACTIVOS
   DISEÑO NEO-BRUTALISMO LIMPIO & EXPERIENCIA PREMIUM (MÓVIL & DESKTOP)
   ========================================================================== */

:root {
    /* Paleta Corporativa PROBIEN Neo-Brutalismo */
    --bg-canvas: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-alt: #f1f5f9;
    --bg-header: #0f172a;

    --border-color: #0f172a;
    --border-brutal: 2.5px solid var(--border-color);
    --border-brutal-sm: 1.5px solid var(--border-color);
    --border-brutal-lg: 3.5px solid var(--border-color);

    --shadow-hard: 4px 4px 0px #0f172a;
    --shadow-hard-sm: 2px 2px 0px #0f172a;
    --shadow-hard-lg: 6px 6px 0px #0f172a;
    --shadow-hard-hover: 6px 6px 0px #0f172a;
    --shadow-pressed: 1px 1px 0px #0f172a;

    /* Acentos de Color */
    --probien-blue: #2563eb;
    --probien-blue-light: #dbeafe;
    --probien-cyan: #0284c7;
    --probien-cyan-light: #e0f2fe;
    --probien-navy: #0f172a;
    
    --accent-emerald: #10b981;
    --accent-emerald-light: #d1fae5;
    --accent-yellow: #facc15;
    --accent-yellow-light: #fef08a;
    --accent-red: #ef4444;
    --accent-red-light: #fee2e2;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #ede9fe;

    /* Tipografía */
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: ui-monospace, 'JetBrains Mono', 'Space Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    
    --radius-brutal: 10px;
    --radius-sm: 6px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-canvas);
    color: var(--probien-navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    padding-bottom: 75px; /* Space for mobile floating bar */
}

/* ==========================================================================
   0. SPLASH LOADER: APERTURA CINÉTICA DEL LOGO (< 0.65s)
   ========================================================================== */
.splash-loader-overlay {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.splash-loader-overlay.hidden {
    opacity: 0;
    transform: scale(1.04);
    pointer-events: none;
}

.splash-kinetic-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-logo-img {
    height: 70px;
    width: auto;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5), 6px 6px 0px #2563eb;
    animation: kineticAssemble 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes kineticAssemble {
    0% {
        transform: scale(0.4) rotate(-10deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.splash-title-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeIn 0.3s ease 0.1s both;
}

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

/* ==========================================================================
   1. ICONOS VECTORIALES SVG
   ========================================================================== */
.svg-icon {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    stroke-width: 2.3;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.18em;
}

.svg-icon-sm {
    width: 0.95em;
    height: 0.95em;
    stroke-width: 2.3;
}

.svg-icon-lg {
    width: 1.35em;
    height: 1.35em;
    stroke-width: 2.4;
}

/* ==========================================================================
   2. HEADER NEO-BRUTALISTA PROBIEN
   ========================================================================== */
.main-header {
    background: var(--bg-header);
    border-bottom: var(--border-brutal-lg);
    padding: 12px 18px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 0px rgba(15, 23, 42, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    background: #ffffff;
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    border: 2px solid #ffffff;
    box-shadow: var(--shadow-hard-sm);
}

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

.brand-title-main {
    font-size: 1.12rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-title-sub {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.user-badge-brutal {
    background: #1e293b;
    border: var(--border-brutal-sm);
    border-color: #3b82f6;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-hard-sm);
}

.role-pill {
    background: var(--probien-blue);
    color: #ffffff;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 900;
}

/* ==========================================================================
   3. BOTONES NEO-BRUTALISTAS (TÁCTILES MÓVILES)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    min-height: 44px;
    border-radius: var(--radius-brutal);
    border: var(--border-brutal);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-hard);
    transition: transform 0.08s ease, box-shadow 0.08s ease;
    user-select: none;
    line-height: 1;
}

.btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: var(--shadow-hard-hover);
}

.btn:active {
    transform: translate(2px, 2px) scale(0.985);
    box-shadow: var(--shadow-pressed);
}

.btn-primary { background: var(--probien-blue); color: #ffffff; }
.btn-success { background: var(--accent-emerald); color: #ffffff; }
.btn-warning { background: var(--accent-yellow); color: var(--probien-navy); }
.btn-danger { background: var(--accent-red); color: #ffffff; }
.btn-cyan { background: var(--probien-cyan); color: #ffffff; }
.btn-surface { background: var(--bg-surface); color: var(--probien-navy); }

.btn-sm {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 0.78rem;
    border-width: 2px;
    box-shadow: var(--shadow-hard-sm);
}

.btn-sm:active {
    box-shadow: 1px 1px 0px #0f172a;
}

.btn-lg {
    min-height: 50px;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 900;
}

/* ==========================================================================
   4. NAVEGACIÓN POR PESTAÑAS
   ========================================================================== */
.nav-tabs-wrapper {
    background: var(--bg-surface);
    border-bottom: var(--border-brutal);
    padding: 10px 16px 0 16px;
}

.nav-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    background: var(--bg-surface-alt);
    border: var(--border-brutal);
    border-bottom: none;
    border-radius: var(--radius-brutal) var(--radius-brutal) 0 0;
    padding: 10px 16px;
    min-height: 44px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--probien-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.12s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--probien-blue-light);
}

.tab-btn.active {
    background: var(--probien-navy);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 -3px 0px var(--probien-blue);
}

.tab-btn.active .badge-count {
    background: var(--accent-yellow);
    color: var(--probien-navy);
}

.badge-count {
    background: var(--border-color);
    color: #ffffff;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 900;
    display: inline-block;
}

.badge-count.pop-anim {
    animation: bubblePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bubblePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4) rotate(-8deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* ==========================================================================
   5. CONTENIDO PRINCIPAL Y PANELES
   ========================================================================== */
.main-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    flex: 1;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: brutalFadeIn 0.15s cubic-bezier(0, 0, 0.2, 1);
}

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

/* ==========================================================================
   6. TARJETAS Y CONTENEDORES BRUTALISTAS
   ========================================================================== */
.brutal-card {
    background: var(--bg-surface);
    border: var(--border-brutal);
    border-radius: var(--radius-brutal);
    box-shadow: var(--shadow-hard);
    padding: 18px;
    margin-bottom: 18px;
}

.brutal-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: var(--border-brutal-sm);
    flex-wrap: wrap;
    gap: 8px;
}

.brutal-title {
    font-size: 1.12rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.3px;
}

/* ==========================================================================
   7. BUSCADOR Y BARRA DE FILTROS POS
   ========================================================================== */
.search-bar-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 14px;
}

.input-brutal {
    width: 100%;
    min-height: 46px;
    background: var(--bg-surface);
    border: var(--border-brutal);
    border-radius: var(--radius-brutal);
    padding: 10px 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--probien-navy);
    outline: none;
    box-shadow: var(--shadow-hard-sm);
    transition: box-shadow 0.1s ease;
}

.input-brutal:focus {
    box-shadow: var(--shadow-hard);
    border-color: var(--probien-blue);
    background: #fdfefe;
}

.filter-pills-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin-bottom: 14px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.filter-pill {
    background: var(--bg-surface);
    border: var(--border-brutal-sm);
    border-radius: var(--radius-pill);
    padding: 8px 14px;
    min-height: 38px;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--shadow-hard-sm);
    transition: all 0.1s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-pill:hover, .filter-pill.active {
    background: var(--probien-navy);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ==========================================================================
   8. GRILLA DE PRODUCTOS / CATÁLOGO POS
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 14px;
}

.product-card {
    background: var(--bg-surface);
    border: var(--border-brutal);
    border-radius: var(--radius-brutal);
    padding: 14px;
    box-shadow: var(--shadow-hard);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hard-hover);
}

.product-card.in-cart {
    border-color: var(--probien-blue);
    background: #f0f7ff;
}

.product-card.vendido {
    background: #f8fafc;
    border-color: #94a3b8;
    box-shadow: 2px 2px 0px #cbd5e1;
    opacity: 0.65;
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
}

.item-number-badge {
    background: var(--probien-navy);
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 0.82rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: var(--border-brutal-sm);
}

.tag-2026-badge {
    background: var(--probien-cyan-light);
    color: var(--probien-cyan);
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--probien-cyan);
}

.product-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 6px;
    color: var(--probien-navy);
}

.product-meta {
    font-size: 0.78rem;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.meta-tag {
    background: var(--bg-surface-alt);
    border: 1px solid #cbd5e1;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-price-box {
    background: var(--bg-surface-alt);
    border: var(--border-brutal-sm);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label-col {
    display: flex;
    flex-direction: column;
}

.price-sub {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
}

.price-main {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--probien-navy);
}

.discount-pills-wrap {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.btn-dscto {
    padding: 6px 8px;
    min-height: 32px;
    font-size: 0.75rem;
    font-weight: 800;
    border: var(--border-brutal-sm);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 1px 1px 0px #0f172a;
}

.btn-dscto:active, .btn-dscto.active {
    background: var(--probien-navy);
    color: #ffffff;
}

/* ==========================================================================
   9. BARRA FLOTANTE MÓVIL (STICKY BOTTOM BAR)
   ========================================================================== */
.mobile-cart-float-bar {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: #0f172a;
    border: var(--border-brutal);
    border-radius: 14px;
    padding: 10px 14px;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), var(--shadow-hard);
    z-index: 99;
    animation: floatIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.mobile-cart-info {
    display: flex;
    flex-direction: column;
}

.mobile-cart-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-cart-amount {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
}

/* ==========================================================================
   10. PANEL DE ADMINISTRACIÓN Y KPIS (RONALD POMA)
   ========================================================================== */
.kpi-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.kpi-card-brutal {
    background: var(--bg-surface);
    border: var(--border-brutal);
    border-radius: var(--radius-brutal);
    padding: 14px;
    box-shadow: var(--shadow-hard);
    position: relative;
    overflow: hidden;
}

.kpi-card-brutal.highlight-blue {
    background: var(--probien-blue-light);
    border-color: var(--probien-blue);
}

.kpi-card-brutal.highlight-green {
    background: var(--accent-emerald-light);
    border-color: var(--accent-emerald);
}

.kpi-card-brutal.highlight-yellow {
    background: var(--accent-yellow-light);
    border-color: #ca8a04;
}

.kpi-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kpi-value {
    font-family: var(--font-mono);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--probien-navy);
    line-height: 1.1;
}

.kpi-subtext {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    margin-top: 4px;
}

/* ==========================================================================
   11. TABLAS NEO-BRUTALISTAS DE AUDITORÍA
   ========================================================================== */
.table-container {
    overflow-x: auto;
    border: var(--border-brutal);
    border-radius: var(--radius-brutal);
    box-shadow: var(--shadow-hard);
    background: var(--bg-surface);
    margin-bottom: 18px;
    -webkit-overflow-scrolling: touch;
}

.brutal-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.brutal-table th {
    background: var(--probien-navy);
    color: #ffffff;
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: var(--border-brutal);
    white-space: nowrap;
}

.brutal-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1.5px solid #cbd5e1;
    color: var(--probien-navy);
}

.brutal-table tr:last-child td {
    border-bottom: none;
}

.brutal-table tr:nth-child(even) td {
    background: #f8fafc;
}

.brutal-table tr:hover td {
    background: var(--probien-blue-light);
}

/* ==========================================================================
   12. ARQUITECTURA MODAL Y BOLETAS LARGAS CON PIE STICKY / FIJO
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.modal-overlay.active {
    display: flex;
    animation: modalPopIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPopIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-box {
    background: var(--bg-surface);
    border: var(--border-brutal-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-hard-lg);
    max-width: 500px;
    width: 100%;
    padding: 20px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: var(--border-brutal);
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.15rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-body-scroll {
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 4px;
    margin-bottom: 12px;
    flex: 1;
    overscroll-behavior: contain;
}

.modal-footer-sticky {
    position: sticky;
    bottom: 0;
    background: var(--bg-surface);
    border-top: var(--border-brutal);
    padding-top: 12px;
    margin-top: auto;
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-close-modal {
    background: var(--bg-surface-alt);
    border: var(--border-brutal-sm);
    border-radius: var(--radius-pill);
    width: 34px;
    height: 34px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   13. TICKET TÉRMICO DENTADO (SAWTOOTH RECEIPT)
   ========================================================================== */
.ticket-container {
    background: #ffffff;
    border: var(--border-brutal);
    border-radius: var(--radius-brutal);
    padding: 16px;
    font-family: var(--font-mono);
    box-shadow: var(--shadow-hard-sm);
    position: relative;
}

.ticket-header {
    text-align: center;
    border-bottom: 2px dashed #0f172a;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.ticket-logo {
    height: 38px;
    margin-bottom: 4px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.ticket-total {
    border-top: 2px dashed #0f172a;
    margin-top: 8px;
    padding-top: 8px;
    font-size: 1.15rem;
    font-weight: 900;
}

/* ==========================================================================
   14. ESTILOS DE IMPRESIÓN OFICIAL (@media print)
   ========================================================================== */
@media print {
    body * {
        visibility: hidden;
    }
    #ticketPrintArea, #ticketPrintArea * {
        visibility: visible;
    }
    #ticketPrintArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 80mm;
        margin: 0 auto;
        border: none;
        box-shadow: none;
    }
}

/* ==========================================================================
   15. RESPONSIVE DESIGN EXIGENTE (MÓVIL & TABLET)
   ========================================================================== */
@media (max-width: 640px) {
    body {
        padding-bottom: 85px;
    }

    .main-header {
        padding: 10px 12px;
    }
    
    .header-container {
        gap: 6px;
    }
    
    .brand-logo-img {
        height: 34px;
    }
    
    .brand-title-main {
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .kpi-deck {
        grid-template-columns: 1fr 1fr;
    }

    .nav-tabs-wrapper {
        padding: 8px 10px 0 10px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .btn {
        min-height: 46px;
    }

    .mobile-cart-float-bar {
        display: flex;
    }
}
