/* ==========================================================================
   BOGARTMX COTIZADOR B2B — Estilos del configurador paso a paso
   ========================================================================== */

.cotizador-page {
    padding-top: 48px;
    min-height: 100vh;
    padding-bottom: 100px;
}

/* --- Preview del uniforme en tiempo real --- */
.uniform-preview-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.uniform-preview-stage {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: radial-gradient(ellipse at center, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-color);
}

.uniform-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s ease;
    padding: 16px;
}

.uniform-preview-img.updating {
    transform: scale(0.97);
    opacity: 0.7;
}

.uniform-color-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.35;
    transition: background-color 0.4s ease, opacity 0.4s ease;
    border-radius: var(--border-radius-md);
}

.uniform-preview-logo {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 55%;
    max-height: 22%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    pointer-events: none;
}

.uniform-preview-logo.visible {
    opacity: 0.9;
}

.preview-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-garment-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.preview-color-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.preview-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* --- Selector de colores: contenedor de secciones por modelo --- */
/* (las tarjetas de color van en .color-swatch-row) */

.color-swatch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 8px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    min-height: 110px;
}

.color-swatch-btn:active {
    transform: scale(0.94);
}

.color-swatch-btn:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
}

.color-swatch-btn.selected {
    border-color: var(--accent-red);
    background: rgba(229, 9, 20, 0.08);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}

.color-swatch-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.color-swatch-btn.selected .color-swatch-circle {
    border-color: var(--text-white);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.color-swatch-circle i {
    font-size: 1.1rem;
    color: var(--text-white);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.color-swatch-btn.selected .color-swatch-circle i {
    opacity: 1;
}

.color-swatch-btn[data-color="blanco"] .color-swatch-circle i {
    color: #333;
}

.color-swatch-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: var(--text-muted);
}

.color-swatch-btn.selected .color-swatch-label {
    color: var(--text-white);
}

/* --- Barra de total fija (mobile-first) --- */
.sticky-total-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
}

.sticky-total-info {
    flex-grow: 1;
    min-width: 0;
}

.sticky-total-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sticky-total-amount {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
}

.sticky-total-detail {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-total-bar .btn {
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 0.8rem;
}

.sticky-back-btn {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Pasos del wizard clicables para regresar */
.wizard-steps-indicator {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.wizard-step-node {
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 56px;
    padding: 4px;
    cursor: default;
    opacity: 0.45;
}

.wizard-step-node.active {
    opacity: 1;
}

.wizard-step-node.completed {
    opacity: 0.9;
}

.wizard-step-node.clickable {
    cursor: pointer;
    opacity: 0.85;
}

.wizard-step-node.clickable:hover .wizard-step-circle {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.wizard-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    background: var(--bg-tertiary);
}

.wizard-step-node.active .wizard-step-circle {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}

.wizard-step-node.completed .wizard-step-circle {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.wizard-step-title {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-align: center;
}

.wizard-step-node.active .wizard-step-title {
    color: var(--text-white);
}

/* Barra “seguir comprando” */
.wizard-continue-bar {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px dashed rgba(229, 9, 20, 0.4);
    background: rgba(229, 9, 20, 0.06);
}

.wizard-continue-hint {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wizard-continue-hint i {
    color: var(--accent-red);
    margin-right: 6px;
}

.wizard-continue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wizard-navigation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* --- Indicador de descuento por volumen --- */
.volume-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--success-green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 8px;
}

.volume-tier-alert-box {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    font-size: 0.82rem;
    color: var(--info-blue);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
}

.volume-tier-alert-box i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- Paso 1: multi-selección de prendas (UX limpio) --- */
.garment-select-tools {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.garment-count-live {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: auto;
}

.garment-selected-badge {
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}

.garment-selected-badge.has-selection {
    border-color: rgba(229, 9, 20, 0.4);
    background: rgba(229, 9, 20, 0.08);
    color: var(--text-white);
}

.garment-badge-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.garment-badge-main i {
    color: var(--accent-red);
}

/* Lista en FILAS (horizontal) — evita texto comprimido en 2 columnas */
.garment-card-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.garment-touch-card {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    align-items: center;
    gap: 0 14px;
    position: relative;
    width: 100%;
    margin: 0;
    min-height: 88px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 0 14px 0 0;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    box-sizing: border-box;
}

.garment-touch-card:hover {
    border-color: rgba(229, 9, 20, 0.45);
}

.garment-touch-card.selected {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.3);
    background: rgba(229, 9, 20, 0.07);
}

.garment-native-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Check a la derecha en la fila */
.garment-multi-check {
    position: static;
    grid-column: 3;
    grid-row: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.28);
    color: transparent;
    font-size: 0.75rem;
    pointer-events: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.garment-multi-check.on {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}

.garment-select-status {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.garment-touch-card.selected .garment-select-status {
    color: var(--accent-red);
}

.garment-touch-card-img-wrap {
    grid-column: 1;
    width: 96px;
    height: 88px;
    aspect-ratio: auto;
    overflow: hidden;
    background: #f2f2f2;
    flex-shrink: 0;
}

.garment-touch-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.garment-touch-card:hover .garment-touch-card-img,
.garment-touch-card.selected .garment-touch-card-img {
    transform: scale(1.03);
}

.garment-touch-card-body {
    grid-column: 2;
    padding: 12px 4px 12px 0;
    min-width: 0; /* permite ellipsis sin comprimir el layout */
}

.garment-touch-card-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
    color: var(--text-white);
    white-space: normal;
    word-break: break-word;
}

.garment-touch-card-body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.35;
    white-space: normal;
}

/* Color / tallas: una tarjeta por modelo+color */
.color-swatch-grid,
#size-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.model-color-section,
.model-size-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 14px 16px 16px;
}

.model-section-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.model-section-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.model-section-name {
    font-weight: 700;
    font-size: 0.95rem;
    flex: 1;
    min-width: 100px;
    color: var(--text-white);
}

.model-item-qty {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 4px 10px;
    margin-left: auto;
}

.model-item-qty.has-qty {
    color: var(--accent-red);
    border-color: rgba(229, 9, 20, 0.35);
    background: rgba(229, 9, 20, 0.08);
}

.model-color-chip {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
    flex-shrink: 0;
}

.model-color-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.color-multi-help,
.size-line-help {
    display: none; /* menos ruido; el header ya es claro */
}

.color-swatch-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.model-size-grid.size-touch-grid,
.model-size-section .size-touch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 10px;
}

.color-swatch-btn.multi {
    flex-direction: column;
    gap: 8px;
    min-width: 96px;
    min-height: 100px;
    padding: 12px 10px;
}

.color-multi-hint {
    display: none;
}

.quote-line-breakdown {
    margin: 16px 0 8px;
}

.quote-breakdown-title {
    font-size: 0.95rem;
    margin: 0 0 12px;
    font-weight: 700;
}

.quote-breakdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote-breakdown-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
}

.quote-breakdown-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.quote-breakdown-qty {
    margin-left: auto;
    font-weight: 800;
    color: var(--accent-red);
}

.quote-breakdown-sizes {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quote-breakdown-money {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 4px;
}

.size-touch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 12px;
}

.size-touch-box {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 8px;
    text-align: center;
    transition: var(--transition-quick);
}

.size-touch-box.has-qty {
    border-color: var(--accent-red);
    background: rgba(229, 9, 20, 0.05);
}

.size-touch-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.size-touch-input {
    width: 100%;
    min-width: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 10px 4px;
    border-radius: 6px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
    /* Soporta cantidades de 3–4 dígitos (100, 1000, etc.) */
    letter-spacing: 0.02em;
}

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

.size-touch-input:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.15);
}

.qty-total-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 14px 20px;
    margin-top: 20px;
}

.qty-total-display strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.qty-total-display.valid strong {
    color: var(--success-green);
}

.qty-total-display.invalid strong {
    color: var(--accent-red);
}

/* --- Paso 4: técnica + posiciones táctiles --- */
.tech-touch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.tech-touch-card {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255,255,255,0.01);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.tech-touch-card:active {
    transform: scale(0.96);
}

.tech-touch-card.selected {
    border-color: var(--accent-red);
    background: rgba(229, 9, 20, 0.08);
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.15);
}

.tech-touch-card i {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.tech-touch-card.selected i {
    color: var(--accent-red);
}

.tech-touch-card h6 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.tech-touch-card span {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* Estado deshabilitado (incompatible con color negro) */
.tech-touch-card.tech-disabled {
    opacity: 0.38;
    cursor: not-allowed;
    border-style: dashed;
    border-color: rgba(255,255,255,0.1);
    position: relative;
}

.tech-touch-card.tech-disabled:hover {
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: none;
}

.tech-touch-card.tech-disabled:active {
    transform: none;
}

.tech-lock-icon {
    position: absolute !important;
    top: 8px;
    right: 8px;
    font-size: 0.7rem !important;
    color: rgba(229, 9, 20, 0.7) !important;
    margin: 0 !important;
    display: inline !important;
}

/* Aviso de incompatibilidad con tela negra */
.tech-incompatible-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(229, 9, 20, 0.06);
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 8px;
}

.tech-incompatible-warning i {
    color: var(--accent-red);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-incompatible-warning strong {
    color: var(--text-white);
}


.position-touch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.position-touch-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-quick);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    font-weight: 600;
    font-size: 0.88rem;
}

.position-touch-btn:active {
    transform: scale(0.97);
}

.position-touch-btn.selected {
    border-color: var(--accent-red);
    background: rgba(229, 9, 20, 0.06);
}

.position-touch-btn i:first-child {
    color: var(--text-muted);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.position-touch-btn.selected i:first-child {
    color: var(--accent-red);
}

.position-touch-btn .pos-check {
    margin-left: auto;
    color: transparent;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.position-touch-btn.selected .pos-check {
    color: var(--accent-red);
}

/* --- Layout del wizard con preview lateral --- */
.cotizador-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.cotizador-main {
    min-width: 0;
}

/* --- Paso 5: datos del cliente --- */
.client-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.client-form-full {
    grid-column: span 2;
}

/* --- Matriz de precios en modal --- */
.pricing-matrix-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    margin-top: 12px;
}

.pricing-matrix-table th,
.pricing-matrix-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-matrix-table th {
    background: var(--bg-tertiary);
    color: var(--accent-red);
    font-family: var(--font-heading);
}

.pricing-matrix-table tr.active-tier td {
    background: rgba(229, 9, 20, 0.06);
    color: var(--text-white);
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .cotizador-layout {
        grid-template-columns: 1fr;
    }

    .uniform-preview-panel {
        position: static;
        order: -1;
    }

    .uniform-preview-stage {
        max-width: 240px;
    }

    .cotizador-page {
        padding-bottom: 90px;
    }
}

@media (max-width: 576px) {
    .garment-touch-card {
        grid-template-columns: 76px 1fr auto;
        min-height: 76px;
        padding-right: 12px;
        gap: 0 10px;
    }

    .garment-touch-card-img-wrap {
        width: 76px;
        height: 76px;
    }

    .garment-touch-card-body h5 {
        font-size: 0.92rem;
    }

    .garment-touch-card-body p {
        font-size: 0.75rem;
    }

    .color-swatch-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .color-swatch-btn.multi {
        min-width: 96px;
        flex: 1 1 42%;
    }

    .color-swatch-circle {
        width: 48px;
        height: 48px;
    }

    .garment-select-tools .btn {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .tech-touch-grid,
    .position-touch-grid {
        grid-template-columns: 1fr;
    }

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

    .client-form-full {
        grid-column: span 1;
    }

    .sticky-total-bar {
        flex-wrap: wrap;
    }

    .sticky-total-bar .btn {
        width: 100%;
    }
}