/* ============================================================================
   V16.0 :: tanda-v160-premium-redesign
   REDISEÑO PREMIUM TOTAL del flow POS:
   - Carrito scrolleable con scroll suave
   - Botón CONFIRMAR CARRITO con efectos cinematográficos
   - Panel RECOMENDADAS sidebar con expand/collapse premium
   - Modal Recomendaciones Post-Carrito con secciones expandibles premium
   - BolsasPostVentaModal premium
   ============================================================================ */

/* ════════════════════════════════════════════════════════════════════════════
   1) CARRITO SCROLLEABLE
   Antes: cart-cards podia desbordar verticalmente, header se separaba.
   Ahora: lista con scroll interno, header sticky, footer (boton confirmar)
   tambien sticky abajo. La barra de scroll es premium thin.
   ════════════════════════════════════════════════════════════════════════════ */

html body .pos-col.zona-carrito {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 220px);  /* Carrito nunca crece mas que el viewport menos header/cobro */
    min-height: 280px;
    overflow: hidden;
    position: relative;
}

html body .pos-col.zona-carrito .carrito-head-row {
    flex-shrink: 0;
    padding: 12px 16px 10px;
    background: linear-gradient(180deg, rgba(99,102,241,0.10) 0%, rgba(99,102,241,0.02) 100%);
    border-bottom: 1.5px solid rgba(99,102,241,0.25);
    position: sticky;
    top: 0;
    z-index: 5;
}

html body .pos-col.zona-carrito .cart-cards {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 12px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(99,102,241,0.45) rgba(15,23,42,0.30);
}
/* Premium scrollbar webkit */
html body .pos-col.zona-carrito .cart-cards::-webkit-scrollbar {
    width: 8px;
}
html body .pos-col.zona-carrito .cart-cards::-webkit-scrollbar-track {
    background: rgba(15,23,42,0.30);
    border-radius: 8px;
}
html body .pos-col.zona-carrito .cart-cards::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(99,102,241,0.55), rgba(79,70,229,0.40));
    border-radius: 8px;
    border: 2px solid rgba(15,23,42,0.30);
}
html body .pos-col.zona-carrito .cart-cards::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(99,102,241,0.75), rgba(79,70,229,0.60));
}

/* Botón CONFIRMAR CARRITO + barra confirmado son STICKY abajo */
html body .pos-col.zona-carrito > .btn-confirmar-carrito,
html body .pos-col.zona-carrito > .carrito-confirmado-bar {
    flex-shrink: 0;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

/* ════════════════════════════════════════════════════════════════════════════
   2) BOTÓN CONFIRMAR CARRITO - PREMIUM CINEMATOGRÁFICO
   Antes: verde simple con pulse 2.4s.
   Ahora: gradiente radiante, shine effect, scale on hover, arrow animado,
   fondo con shimmer constante que invita a hacer click.
   ════════════════════════════════════════════════════════════════════════════ */

html body .btn-confirmar-carrito {
    /* Tamaño y forma */
    width: 100%;
    padding: 18px 28px !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    /* Background con multi-stop gradient */
    background: linear-gradient(135deg,
        #16a34a 0%,
        #22c55e 35%,
        #15803d 70%,
        #16a34a 100%) !important;
    background-size: 200% 200% !important;

    /* Texto */
    color: white !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.30);
    text-transform: uppercase;

    /* Layout */
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    /* Animaciones */
    animation:
        bcc-gradient-flow 4s ease-in-out infinite,
        bcc-pulse-shadow 2.2s ease-in-out infinite !important;
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), filter 0.2s !important;
    box-shadow:
        0 12px 28px rgba(34,197,94,0.55),
        inset 0 1px 0 rgba(255,255,255,0.20),
        inset 0 -2px 0 rgba(0,0,0,0.20) !important;
}

@keyframes bcc-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
@keyframes bcc-pulse-shadow {
    0%, 100% { box-shadow: 0 12px 28px rgba(34,197,94,0.55), inset 0 1px 0 rgba(255,255,255,0.20), inset 0 -2px 0 rgba(0,0,0,0.20); }
    50%      { box-shadow: 0 18px 44px rgba(34,197,94,0.80), 0 0 0 4px rgba(34,197,94,0.18), inset 0 1px 0 rgba(255,255,255,0.30); }
}

/* Shine effect: barrido de luz que cruza el botón cada 3.5s */
html body .btn-confirmar-carrito::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 80%; height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.30) 50%,
        transparent 100%);
    animation: bcc-shine 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes bcc-shine {
    0%   { left: -100%; }
    50%  { left: 120%;  }
    100% { left: 120%;  }
}

html body .btn-confirmar-carrito:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.10) saturate(1.12);
}
html body .btn-confirmar-carrito:active:not(:disabled) {
    transform: translateY(0) scale(0.99);
}
html body .btn-confirmar-carrito:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    animation: none !important;
}
html body .btn-confirmar-carrito:disabled::before {
    display: none;
}

/* Arrow animation - se mueve a la derecha en hover */
html body .btn-confirmar-carrito .btn-cc-arrow {
    display: inline-block;
    font-size: 20px;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    animation: bcc-arrow-bob 1.6s ease-in-out infinite;
}
html body .btn-confirmar-carrito:hover .btn-cc-arrow {
    transform: translateX(8px);
}
@keyframes bcc-arrow-bob {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(4px); }
}

/* ════════════════════════════════════════════════════════════════════════════
   3) PANEL RECOMENDADAS sidebar V4.51/V4.52 - REDISEÑO PREMIUM
   Antes: chips compactas funcionales pero sin "wow".
   Ahora: cards con glow effects, mejor tipografia, hover translations.
   ════════════════════════════════════════════════════════════════════════════ */

/* Botones del panel-mini (HISTORIAL/COMBOS/RECOMENDADAS) - rediseño */
html body .panel-mini {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)) !important;
    border: 1.5px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    transition: all 0.2s cubic-bezier(.4,0,.2,1) !important;
    cursor: pointer;
    margin-bottom: 8px;
}
html body .panel-mini:hover:not(:disabled) {
    background: linear-gradient(180deg, rgba(99,102,241,0.12), rgba(99,102,241,0.04)) !important;
    border-color: rgba(99,102,241,0.40) !important;
    transform: translateX(2px);
}
html body .panel-mini.panel-mini-tiene {
    background: linear-gradient(180deg, rgba(34,197,94,0.10), rgba(34,197,94,0.03)) !important;
    border-color: rgba(34,197,94,0.40) !important;
}
html body .panel-mini.panel-mini-tiene:hover {
    background: linear-gradient(180deg, rgba(34,197,94,0.18), rgba(34,197,94,0.06)) !important;
    border-color: rgba(34,197,94,0.65) !important;
    box-shadow: 0 4px 14px rgba(34,197,94,0.25);
}

html body .panel-mini .pm-count {
    background: rgba(99,102,241,0.30);
    color: #c7d2fe;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    margin-left: auto;
    margin-right: 8px;
}
html body .panel-mini.panel-mini-tiene .pm-count {
    background: linear-gradient(135deg, rgba(34,197,94,0.40), rgba(22,163,74,0.30));
    color: #86efac;
}

html body .panel-mini .pm-arrow {
    color: #94a3b8;
    font-size: 15px;
    transition: transform 0.2s;
    margin-left: 4px;
}
html body .panel-mini:hover .pm-arrow {
    color: #c7d2fe;
    transform: translateX(2px);
}

/* Cards del dropdown V4.52 - rediseño premium */
html body .recs-dropdown.recs-dropdown-v452 {
    margin: 6px 0 12px;
    padding: 6px;
    background: linear-gradient(180deg, rgba(99,102,241,0.06), transparent);
    border: 1.5px solid rgba(99,102,241,0.18);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    animation: recs-dd-in 0.22s ease-out;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
}
@keyframes recs-dd-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

html body .recs-dd-item.recs-dd-item-v452 {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    padding: 9px 11px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
    border: 1.5px solid rgba(99,102,241,0.20) !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(.4,0,.2,1) !important;
    text-align: left;
    color: #e2e8f0;
}
html body .recs-dd-item.recs-dd-item-v452:hover {
    background: linear-gradient(180deg, rgba(99,102,241,0.18), rgba(99,102,241,0.06)) !important;
    border-color: rgba(99,102,241,0.65) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99,102,241,0.30);
}

html body .recs-dd-row1 {
    display: flex !important;
    align-items: center;
    gap: 6px;
    width: 100%;
}
html body .recs-dd-icon-mini {
    font-size: 14px;
    line-height: 1;
}
html body .recs-dd-nom-compact {
    flex: 1;
    font-size: 12px;
    font-weight: 700;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}
html body .recs-dd-precio-compact {
    font-size: 13px;
    font-weight: 800;
    color: #4ade80;
    flex-shrink: 0;
}
html body .recs-dd-row2 {
    display: flex !important;
    align-items: center;
    gap: 4px;
    width: 100%;
    flex-wrap: wrap;
}
html body .recs-dd-chip-motivo,
html body .recs-dd-chip-stock {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
html body .recs-dd-chip-motivo {
    background: rgba(99,102,241,0.20);
    color: #c7d2fe;
    border: 1px solid rgba(99,102,241,0.30);
}
html body .recs-dd-chip-stock {
    background: rgba(34,197,94,0.18);
    color: #86efac;
    border: 1px solid rgba(34,197,94,0.30);
}
html body .recs-dd-plus {
    margin-left: auto;
    font-size: 16px;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
    transition: transform 0.18s, color 0.18s;
}
html body .recs-dd-item.recs-dd-item-v452:hover .recs-dd-plus {
    transform: scale(1.30) rotate(90deg);
    color: #22c55e;
}

/* ════════════════════════════════════════════════════════════════════════════
   4) MODAL RECOMENDACIONES POST-CARRITO PREMIUM PRO
   Refina V15.2 con:
   - Cards con avatar/icono de probabilidad
   - Boton "+ AGREGAR" mas grande
   - Header con gradient impactante
   - Stepper con efecto glow en active
   - Secciones colapsables con animacion
   ════════════════════════════════════════════════════════════════════════════ */

html body .modal.modal-recpc {
    background: linear-gradient(180deg,
        #0f172a 0%,
        #0a1126 50%,
        #050918 100%) !important;
    border: 2px solid rgba(99,102,241,0.45) !important;
    box-shadow:
        0 35px 90px rgba(0,0,0,0.75),
        0 0 0 1px rgba(255,255,255,0.06),
        0 0 100px rgba(99,102,241,0.18) !important;
}

/* Header con gradient PROMINENTE */
html body .modal-recpc .recpc-header {
    background: linear-gradient(135deg,
        rgba(99,102,241,0.30) 0%,
        rgba(79,70,229,0.18) 50%,
        rgba(67,56,202,0.10) 100%) !important;
    border-bottom: 2px solid rgba(99,102,241,0.40) !important;
    padding: 18px 22px 14px !important;
}

/* Stepper con glow */
html body .recpc-flow-step.active {
    background: linear-gradient(135deg, rgba(99,102,241,0.45), rgba(79,70,229,0.30)) !important;
    border-color: rgba(165,180,252,0.85) !important;
    color: white !important;
    box-shadow:
        0 0 0 4px rgba(99,102,241,0.20),
        0 8px 22px rgba(99,102,241,0.55) !important;
}
html body .recpc-flow-step.active .recpc-flow-num {
    background: linear-gradient(135deg, #818cf8, #6366f1) !important;
    box-shadow: 0 0 16px rgba(99,102,241,0.65) !important;
}

/* Item card MEJORADO - boton + mas grande */
html body .recpc-item {
    background: linear-gradient(180deg,
        rgba(99,102,241,0.10),
        rgba(99,102,241,0.02)) !important;
    border: 1.5px solid rgba(99,102,241,0.30) !important;
    transition: all 0.22s cubic-bezier(.4,0,.2,1) !important;
}
html body .recpc-item:hover {
    background: linear-gradient(180deg,
        rgba(99,102,241,0.20),
        rgba(99,102,241,0.06)) !important;
    border-color: rgba(99,102,241,0.70) !important;
    transform: translateX(4px) translateY(-2px);
    box-shadow:
        0 10px 24px rgba(99,102,241,0.30),
        0 0 0 1px rgba(165,180,252,0.30) !important;
}

/* Botón + más grande y atractivo */
html body .recpc-btn-add {
    width: 44px !important;
    height: 44px !important;
    font-size: 22px !important;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%) !important;
    background-size: 200% 200% !important;
    border: 2px solid rgba(34,197,94,0.65) !important;
    box-shadow: 0 6px 16px rgba(34,197,94,0.40) !important;
    animation: recpc-btn-add-pulse 2.5s ease-in-out infinite;
}
@keyframes recpc-btn-add-pulse {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
html body .recpc-btn-add:hover {
    transform: translateY(-3px) scale(1.10) rotate(8deg) !important;
    box-shadow:
        0 12px 28px rgba(34,197,94,0.65),
        0 0 0 4px rgba(34,197,94,0.20) !important;
}

/* Sección expandible mejorada */
html body .recpc-sec-head {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)) !important;
    border: 1.5px solid rgba(255,255,255,0.10) !important;
    transition: all 0.22s cubic-bezier(.4,0,.2,1) !important;
}
html body .recpc-section.expandida .recpc-sec-head {
    background: linear-gradient(135deg,
        rgba(99,102,241,0.30),
        rgba(79,70,229,0.18)) !important;
    border-color: rgba(165,180,252,0.65) !important;
    box-shadow: 0 6px 18px rgba(99,102,241,0.28) !important;
}

/* Botón continuar gigante */
html body .recpc-btn-continuar {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%) !important;
    background-size: 200% 200% !important;
    animation: bcc-gradient-flow 4s ease-in-out infinite, bcc-pulse-shadow 2.2s ease-in-out infinite !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    padding: 16px 26px !important;
    position: relative;
    overflow: hidden;
}
html body .recpc-btn-continuar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 80%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.30) 50%, transparent 100%);
    animation: bcc-shine 3.5s ease-in-out infinite;
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════════
   5) BolsasPostVentaModal premium
   ════════════════════════════════════════════════════════════════════════════ */

.bpv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    animation: bpv-back-in 0.22s ease-out;
}
@keyframes bpv-back-in { from { opacity: 0; } to { opacity: 1; } }

.bpv-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    width: 92vw;
    max-width: 480px;
    background: linear-gradient(180deg, #0f172a 0%, #0a1126 100%);
    border: 2px solid rgba(99,102,241,0.50);
    border-radius: 18px;
    box-shadow:
        0 35px 90px rgba(0,0,0,0.75),
        0 0 100px rgba(99,102,241,0.20);
    overflow: hidden;
    animation: bpv-in 0.25s ease-out;
}
@keyframes bpv-in {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.bpv-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg,
        rgba(99,102,241,0.25),
        rgba(79,70,229,0.10));
    border-bottom: 1.5px solid rgba(99,102,241,0.35);
    position: relative;
}
.bpv-emoji {
    font-size: 38px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.40));
    animation: bpv-emoji-bounce 2s ease-in-out infinite;
}
@keyframes bpv-emoji-bounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-3px) rotate(-3deg); }
}
.bpv-titles { flex: 1; }
.bpv-tit {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 3px;
}
.bpv-sub { font-size: 12px; color: #a5b4fc; }
.bpv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(220,38,38,0.18);
    border: 1.5px solid rgba(220,38,38,0.40);
    color: #fca5a5;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.bpv-close:hover {
    background: rgba(220,38,38,0.40);
    color: white;
    transform: rotate(90deg);
}

.bpv-body { padding: 18px 22px; }

.bpv-chips {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.bpv-chip {
    padding: 14px 6px;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 17px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: all 0.18s cubic-bezier(.4,0,.2,1);
}
.bpv-chip:hover {
    background: rgba(99,102,241,0.18);
    border-color: rgba(99,102,241,0.50);
    color: white;
    transform: translateY(-2px);
}
.bpv-chip-on {
    background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    border-color: rgba(165,180,252,0.85) !important;
    color: white !important;
    box-shadow: 0 6px 18px rgba(99,102,241,0.50);
    transform: translateY(-2px) scale(1.04);
}
.bpv-chip-sub {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.80;
}

.bpv-custom-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(15,23,42,0.65);
    border: 1.5px solid rgba(99,102,241,0.25);
    border-radius: 10px;
    margin-bottom: 12px;
}
.bpv-custom-lbl {
    font-size: 12px;
    color: #94a3b8;
    margin-right: auto;
}
.bpv-btn-min {
    width: 32px;
    height: 32px;
    background: rgba(99,102,241,0.18);
    border: 1px solid rgba(99,102,241,0.35);
    color: #c7d2fe;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bpv-btn-min:hover { background: rgba(99,102,241,0.40); color: white; }
.bpv-input {
    width: 70px;
    padding: 8px;
    background: rgba(15,23,42,0.85);
    border: 1.5px solid rgba(99,102,241,0.40);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    outline: none;
}
.bpv-input:focus { border-color: rgba(165,180,252,0.85); box-shadow: 0 0 0 3px rgba(99,102,241,0.20); }

.bpv-no-entregue {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(245,158,11,0.10);
    border: 1.5px solid rgba(245,158,11,0.35);
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    color: #fde68a;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.18s;
}
.bpv-no-entregue:hover { background: rgba(245,158,11,0.18); border-color: rgba(245,158,11,0.55); }
.bpv-no-entregue-on {
    background: rgba(245,158,11,0.22) !important;
    border-color: rgba(245,158,11,0.65) !important;
    color: white !important;
}
.bpv-no-entregue input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f59e0b;
}

.bpv-preview {
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(34,197,94,0.10), rgba(34,197,94,0.02));
    border: 1.5px solid rgba(34,197,94,0.30);
    border-radius: 10px;
    color: #d1fae5;
    font-size: 12px;
    line-height: 1.5;
    animation: bpv-preview-in 0.22s ease-out;
}
@keyframes bpv-preview-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bpv-preview-ico { font-size: 16px; margin-right: 4px; }
.bpv-preview-code {
    display: block;
    margin-top: 6px;
    padding: 6px 10px;
    background: rgba(0,0,0,0.40);
    border-radius: 6px;
    color: #86efac;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 11px;
}

.bpv-actions {
    display: flex;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(0,0,0,0.30);
    border-top: 1.5px solid rgba(255,255,255,0.06);
}
.bpv-btn-skip {
    padding: 12px 18px;
    background: rgba(100,116,139,0.18);
    border: 1.5px solid rgba(100,116,139,0.40);
    color: #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.15s;
}
.bpv-btn-skip:hover {
    background: rgba(100,116,139,0.32);
    color: white;
}
.bpv-btn-save {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
    background-size: 200% 200%;
    animation: bcc-gradient-flow 4s ease-in-out infinite;
    border: 1.5px solid rgba(34,197,94,0.55);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: all 0.18s;
    box-shadow: 0 6px 18px rgba(34,197,94,0.40);
}
.bpv-btn-save:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34,197,94,0.60);
}
.bpv-btn-save:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    animation: none;
}

/* ════════════════════════════════════════════════════════════════════════════
   6) Mobile responsive overrides
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    html body .pos-col.zona-carrito { max-height: 60vh; }
    html body .recs-dropdown.recs-dropdown-v452 { grid-template-columns: 1fr; }
    .bpv-chips { grid-template-columns: repeat(3, 1fr); }
    .bpv-modal { width: 96vw; }
}

/* ════════════════════════════════════════════════════════════════════════════
   7) FAB Pérdida y FAB Vuelto - SEPARAR mejor en mobile y desktop
   Captura 4: estaban encimados/cercanos visualmente.
   ════════════════════════════════════════════════════════════════════════════ */
html body .pos-perdida-fab {
    bottom: 22px !important;
    right: 22px !important;
    z-index: 9981 !important;
    /* Forma redonda más prominente */
    border-radius: 999px !important;
    padding: 14px 22px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
}
html body .pos-vuelto-fab {
    bottom: 22px !important;
    right: 200px !important;  /* +25px de separacion */
    z-index: 9980 !important;
    border-radius: 999px !important;
    padding: 14px 22px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
}
@media (max-width: 768px) {
    html body .pos-perdida-fab {
        bottom: 80px !important;
        right: 14px !important;
        padding: 10px 14px !important;
        font-size: 11px !important;
    }
    html body .pos-vuelto-fab {
        bottom: 145px !important;  /* arriba del fab pérdida en mobile */
        right: 14px !important;
        padding: 10px 14px !important;
        font-size: 11px !important;
    }
}
