/* Backdrop */
    .roxvan-qv-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.55);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 99999999;
        display: none;
        opacity: 0;
        transition: opacity 0.28s ease;
    }
    .roxvan-qv-backdrop.is-open {
        display: block;
        opacity: 1;
    }

    /* Drawer Panel (Desktop Slide-over from right) */
    .roxvan-qv-drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 500px;
        max-width: 92vw;
        background: #ffffff;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100000000;
        overflow: hidden;
    }
    .roxvan-qv-backdrop.is-open .roxvan-qv-drawer {
        transform: translateX(0);
    }

    /* Mobile Bottom Sheet */
    @media (max-width: 768px) {
        .roxvan-qv-drawer {
            top: auto;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            max-width: 100%;
            max-height: 88vh;
            border-radius: 20px 20px 0 0;
            transform: translateY(100%);
        }
        .roxvan-qv-backdrop.is-open .roxvan-qv-drawer {
            transform: translateY(0);
        }
    }

    .roxvan-qv-mobile-handle {
        display: none;
        width: 40px;
        height: 4px;
        background: #cbd5e1;
        border-radius: 2px;
        margin: 10px auto 4px auto;
    }
    @media (max-width: 768px) {
        .roxvan-qv-mobile-handle { display: block; }
    }

    /* Header */
    .roxvan-qv-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        border-bottom: 1px solid #e2e8f0;
        background: #ffffff;
        flex-shrink: 0;
    }
    .roxvan-qv-badges {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .roxvan-qv-badge-cat {
        font-size: 11px;
        font-weight: 700;
        background: #f1f5f9;
        color: #475569;
        padding: 3px 9px;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    .roxvan-qv-badge-brand {
        font-size: 11px;
        font-weight: 700;
        background: #e0f2fe;
        color: #0369a1;
        padding: 3px 9px;
        border-radius: 6px;
    }
    .roxvan-qv-close-btn {
        background: transparent;
        border: none;
        color: #64748b;
        cursor: pointer;
        padding: 4px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s ease;
    }
    .roxvan-qv-close-btn:hover {
        background: #f1f5f9;
        color: #0f172a;
    }

    /* Body */
    .roxvan-qv-body {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Gallery */
    .roxvan-qv-gallery-wrap {
        margin-bottom: 18px;
    }
    .roxvan-qv-img-container {
        position: relative;
        width: 100%;
        height: 260px;
        background: #f8fafc;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .roxvan-qv-main-img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        transition: transform 0.25s ease;
    }
    .roxvan-qv-img-container:hover .roxvan-qv-main-img {
        transform: scale(1.04);
    }
    .roxvan-qv-savings-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #16a34a;
        color: #ffffff;
        font-size: 11px;
        font-weight: 800;
        padding: 4px 8px;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
    }
    .roxvan-qv-thumbs {
        display: flex;
        gap: 8px;
        margin-top: 10px;
        overflow-x: auto;
    }
    .roxvan-qv-thumb-item {
        width: 48px;
        height: 48px;
        border: 2px solid #e2e8f0;
        border-radius: 6px;
        cursor: pointer;
        object-fit: cover;
        flex-shrink: 0;
    }
    .roxvan-qv-thumb-item.active {
        border-color: #dc2626;
    }

    /* Info */
    .roxvan-qv-title {
        font-size: 17px;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.35;
        margin: 0 0 8px 0;
    }
    .roxvan-qv-meta-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 11.5px;
    }
    .roxvan-qv-sku {
        color: #64748b;
        font-weight: 600;
    }
    .roxvan-qv-stock {
        color: #16a34a;
        font-weight: 700;
    }

    /* Price Box */
    .roxvan-qv-price-box {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 12px 14px;
        margin-bottom: 16px;
    }
    .roxvan-qv-price-main {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }
    .roxvan-qv-price-label {
        font-size: 12px;
        font-weight: 700;
        color: #475569;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    .roxvan-qv-price-values {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    .roxvan-qv-price-curr {
        font-size: 22px;
        font-weight: 800;
        color: #dc2626;
    }
    .roxvan-qv-price-reg {
        font-size: 14px;
        color: #94a3b8;
        text-decoration: line-through;
        font-weight: 600;
    }
    .roxvan-qv-price-sub {
        font-size: 11px;
        color: #64748b;
        margin-top: 4px;
    }

    /* Quantity Controls (Silicon Valley Specs) */
    .roxvan-qv-qty-section {
        margin-bottom: 14px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 10px !important;
        padding: 10px 14px !important;
        display: block !important;
        visibility: visible !important;
    }
    .roxvan-qv-qty-header-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 8px !important;
    }
    .roxvan-qv-qty-label {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        color: #334155 !important;
        margin: 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    .roxvan-qv-subtotal-inline {
        font-size: 12px !important;
        color: #64748b !important;
    }
    .roxvan-qv-subtotal-inline strong {
        color: #dc2626 !important;
        font-size: 13.5px !important;
        font-weight: 800 !important;
    }
    .roxvan-qv-subtotal-inline small {
        color: #64748b !important;
        font-size: 10.5px !important;
        margin-left: 2px !important;
    }
    .roxvan-qv-qty-controls {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    .roxvan-qv-qty-stepper {
        display: inline-flex !important;
        align-items: center !important;
        border: 1.5px solid #cbd5e1 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        background: #ffffff !important;
        height: 36px !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .roxvan-qv-qty-btn {
        all: unset !important;
        box-sizing: border-box !important;
        width: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        height: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        background: #f1f5f9 !important;
        border: none !important;
        font-size: 17px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        padding: 0 !important;
        margin: 0 !important;
        transition: background 0.15s ease !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }
    .roxvan-qv-qty-btn:hover {
        background: #e2e8f0 !important;
        color: #0f172a !important;
    }
    .roxvan-qv-qty-btn:active {
        background: #cbd5e1 !important;
    }
    .roxvan-qv-qty-input {
        all: unset !important;
        box-sizing: border-box !important;
        width: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        height: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        background: #ffffff !important;
        border: none !important;
        border-left: 1px solid #e2e8f0 !important;
        border-right: 1px solid #e2e8f0 !important;
        text-align: center !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        margin: 0 !important;
        padding: 0 4px !important;
        line-height: 36px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -moz-appearance: textfield !important;
    }
    .roxvan-qv-qty-input::-webkit-inner-spin-button,
    .roxvan-qv-qty-input::-webkit-outer-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }
    .roxvan-qv-bulk-chips {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }
    .roxvan-qv-chip {
        all: unset !important;
        box-sizing: border-box !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        padding: 4px 8px !important;
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 6px !important;
        color: #334155 !important;
        cursor: pointer !important;
        transition: all 0.15s ease !important;
        user-select: none !important;
        line-height: 1.2 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .roxvan-qv-chip:hover {
        background: #0f172a !important;
        color: #ffffff !important;
        border-color: #0f172a !important;
    }
    .roxvan-qv-chip.active {
        background: #dc2626 !important;
        color: #ffffff !important;
        border-color: #dc2626 !important;
    }

    /* Actions Grid (Silicon Valley UX) */
    .roxvan-qv-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 7px !important;
        margin-bottom: 16px !important;
    }
    .roxvan-qv-actions-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 7px !important;
    }
    .roxvan-qv-btn {
        all: unset !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        font-size: 12.5px !important;
        font-weight: 700 !important;
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        line-height: 1 !important;
        padding: 0 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        cursor: pointer !important;
        text-align: center !important;
        transition: all 0.15s ease !important;
        white-space: nowrap !important;
    }
    .roxvan-qv-btn-flash {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.28) !important;
    }
    .roxvan-qv-btn-flash:hover {
        background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35) !important;
    }
    .roxvan-qv-btn-cart {
        background: #facc15 !important;
        color: #0f172a !important;
        box-shadow: 0 2px 6px rgba(250, 204, 21, 0.25) !important;
    }
    .roxvan-qv-btn-cart:hover {
        background: #eab308 !important;
        transform: translateY(-1px) !important;
    }
    .roxvan-qv-btn-cart.is-added {
        background: #16a34a !important;
        color: #ffffff !important;
    }
    .roxvan-qv-btn-quote {
        background: #0f172a !important;
        color: #ffffff !important;
        height: 35px !important;
        min-height: 35px !important;
        max-height: 35px !important;
        box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15) !important;
    }
    .roxvan-qv-btn-quote:hover {
        background: #1e293b !important;
        transform: translateY(-1px) !important;
    }
    .roxvan-qv-btn-quote.is-added {
        background: #2563eb !important;
        color: #ffffff !important;
    }
    /* Description */
    .roxvan-qv-desc-wrap {
        border-top: 1px solid #f1f5f9;
        padding-top: 14px;
        margin-bottom: 14px;
    }
    .roxvan-qv-desc-title {
        font-size: 12px;
        font-weight: 700;
        color: #475569;
        text-transform: uppercase;
        margin-bottom: 6px;
    }
    .roxvan-qv-desc {
        font-size: 13px;
        color: #334155;
        line-height: 1.5;
        margin: 0;
    }

    /* Footer link */
    .roxvan-qv-footer-link {
        text-align: center;
        padding: 6px 0;
    }
    .roxvan-qv-footer-link a {
        font-size: 12px;
        font-weight: 600;
        color: #2563eb;
        text-decoration: none;
    }
    .roxvan-qv-footer-link a:hover {
        text-decoration: underline;
    }

        /* ─── BOTÓN DE VISTA RÁPIDA / VER FICHA (MICRO-BADGE SILICON VALLEY ULTRA ELEGANTE) ─── */
    button.roxvan-shop-qv-btn {
        all: unset !important;
        box-sizing: border-box !important;
        position: absolute !important;
        bottom: 8px !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(0) !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 90% !important;
        height: 25px !important;
        min-height: 25px !important;
        max-height: 25px !important;
        line-height: 25px !important;
        padding: 0 10px !important;
        margin: 0 !important;
        background: rgba(15, 23, 42, 0.82) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
        border-radius: 20px !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif !important;
        font-size: 10.5px !important;
        font-weight: 700 !important;
        letter-spacing: 0.2px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        cursor: pointer !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22) !important;
        opacity: 0.94 !important;
        pointer-events: auto !important;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 15 !important;
        white-space: nowrap !important;
    }
    button.roxvan-shop-qv-btn svg {
        width: 12px !important;
        height: 12px !important;
        min-width: 12px !important;
        min-height: 12px !important;
        stroke: #ffffff !important;
        display: inline-block !important;
        vertical-align: middle !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    button.roxvan-shop-qv-btn span {
        color: #ffffff !important;
        font-size: 10.5px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        display: inline-block !important;
    }
    button.roxvan-shop-qv-btn:hover {
        background: #dc2626 !important;
        color: #ffffff !important;
        border-color: #dc2626 !important;
        opacity: 1 !important;
        transform: translateX(-50%) translateY(-1.5px) !important;
        box-shadow: 0 6px 14px rgba(220, 38, 38, 0.38) !important;
    }
    @media (hover: hover) {
        .product-inner .roxvan-shop-qv-btn,
        .product-item .roxvan-shop-qv-btn,
        .motta-product-card .roxvan-shop-qv-btn,
        .product.type-product .roxvan-shop-qv-btn {
            opacity: 0 !important;
            transform: translateX(-50%) translateY(4px) !important;
        }
        .product-inner:hover .roxvan-shop-qv-btn,
        .product-item:hover .roxvan-shop-qv-btn,
        .motta-product-card:hover .roxvan-shop-qv-btn,
        .product.type-product:hover .roxvan-shop-qv-btn {
            opacity: 1 !important;
            transform: translateX(-50%) translateY(0) !important;
        }
    }

    /* ─── FLOATING QUOTE PILL (ESTILO PILL FLOTANTE SILICON VALLEY) ─── */
    .roxvan-floating-quote-pill {
        position: fixed !important;
        bottom: 24px !important;
        left: 24px !important;
        right: auto !important;
        top: auto !important;
        z-index: 999998 !important;
        background: #0f172a !important;
        border-radius: 30px !important;
        padding: 6px 10px 6px 14px !important;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.38), 0 2px 8px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        animation: roxvanPillFadeIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif !important;
        display: none;
    }
    @keyframes roxvanPillFadeIn {
        from { opacity: 0; transform: translateY(16px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .roxvan-quote-pill-inner {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .roxvan-quote-pill-icon {
        font-size: 16px !important;
        line-height: 1 !important;
        display: inline-block !important;
    }
    .roxvan-quote-pill-text {
        display: flex !important;
        flex-direction: column !important;
        line-height: 1.25 !important;
        text-align: left !important;
    }
    .roxvan-quote-pill-count {
        font-size: 11px !important;
        font-weight: 500 !important;
        color: #94a3b8 !important;
        white-space: nowrap !important;
    }
    .roxvan-quote-pill-count strong {
        color: #38bdf8 !important;
        font-weight: 800 !important;
    }
    .roxvan-quote-pill-total {
        font-size: 12.5px !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        white-space: nowrap !important;
    }
    a.roxvan-quote-pill-cta {
        all: unset !important;
        box-sizing: border-box !important;
        background: #dc2626 !important;
        color: #ffffff !important;
        font-size: 11.5px !important;
        font-weight: 700 !important;
        padding: 6px 13px !important;
        border-radius: 20px !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.18s ease !important;
        box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35) !important;
    }
    a.roxvan-quote-pill-cta:hover {
        background: #b91c1c !important;
        color: #ffffff !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 10px rgba(220, 38, 38, 0.45) !important;
    }
    button.roxvan-quote-pill-close {
        all: unset !important;
        box-sizing: border-box !important;
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #94a3b8 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.18s ease !important;
    }
    button.roxvan-quote-pill-close svg {
        width: 10px !important;
        height: 10px !important;
        stroke: #cbd5e1 !important;
    }
    button.roxvan-quote-pill-close:hover {
        background: rgba(239, 68, 68, 0.25) !important;
        color: #ef4444 !important;
    }
    button.roxvan-quote-pill-close:hover svg {
        stroke: #ef4444 !important;
    }
    @media (max-width: 768px) {
        .roxvan-floating-quote-pill {
            bottom: 84px !important;
            left: 14px !important;
        }
    }

    .roxvan-cotiz-preloaded-wrap {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 18px 20px;
        margin-bottom: 24px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    }
    .roxvan-cotiz-preloaded-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 10px;
    }
    .roxvan-cotiz-preloaded-title {
        font-size: 15px;
        font-weight: 700;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .roxvan-cotiz-item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #f8fafc;
        gap: 12px;
    }
    .roxvan-cotiz-item-info {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 0;
    }
    .roxvan-cotiz-item-img {
        width: 44px;
        height: 44px;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #e2e8f0;
        flex-shrink: 0;
    }
    .roxvan-cotiz-item-name {
        font-size: 13px;
        font-weight: 600;
        color: #1e293b;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .roxvan-cotiz-item-meta {
        font-size: 11px;
        color: #64748b;
    }
    .roxvan-cotiz-item-qty {
        font-size: 13px;
        font-weight: 700;
        color: #0f172a;
        background: #f1f5f9;
        padding: 4px 10px;
        border-radius: 6px;
    }
    .roxvan-cotiz-item-price {
        font-size: 14px;
        font-weight: 800;
        color: #dc2626;
        white-space: nowrap;
        min-width: 90px;
        text-align: right;
    }
    .roxvan-cotiz-item-remove {
        background: none;
        border: none;
        color: #94a3b8;
        cursor: pointer;
        font-size: 16px;
        padding: 4px;
    }
    .roxvan-cotiz-item-remove:hover {
        color: #dc2626;
    }
    
    /* Controles de Cantidad en la Tabla de Cotización B2B */
    .roxvan-cotiz-item-qty-controls button.roxvan-row-qty-btn {
        all: unset !important;
        box-sizing: border-box !important;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 6px !important;
        color: #0f172a !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 26px !important;
        text-align: center !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        transition: all 0.15s ease !important;
    }
    .roxvan-cotiz-item-qty-controls button.roxvan-row-qty-btn:hover {
        background: #e2e8f0 !important;
        border-color: #94a3b8 !important;
        color: #dc2626 !important;
    }
    button.roxvan-cotiz-item-remove {
        all: unset !important;
        box-sizing: border-box !important;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        color: #94a3b8 !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 6px !important;
        transition: all 0.15s ease !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    button.roxvan-cotiz-item-remove:hover {
        background: #fee2e2 !important;
        color: #dc2626 !important;
    }

    .roxvan-cotiz-actions-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 14px;
        padding-top: 12px;
        border-top: 1.5px dashed #cbd5e1;
        flex-wrap: wrap;
        gap: 10px;
    }
    .roxvan-cotiz-total-box {
        font-size: 16px;
        font-weight: 800;
        color: #0f172a;
    }
    .roxvan-cotiz-total-val {
        color: #dc2626;
        font-size: 18px;
    }
    
    /* Refinamiento Silicon Valley para botones de Cotización B2B */
    .rsq-voice-btn {
        all: unset !important;
        box-sizing: border-box !important;
        background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
        color: #ffffff !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 18px !important;
        border-radius: 8px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25) !important;
        transition: all 0.2s ease !important;
    }
    .rsq-voice-btn:hover {
        background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
        transform: translateY(-1px) !important;
    }
    .rsq-btn-primary,
    #rsq-btn-upload,
    #rsq-btn-submit {
        all: unset !important;
        box-sizing: border-box !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 18px !important;
        border-radius: 8px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
    }
    #rsq-btn-upload {
        background: #2563eb !important;
        color: #ffffff !important;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25) !important;
    }
    #rsq-btn-upload:hover {
        background: #1d4ed8 !important;
        transform: translateY(-1px) !important;
    }
    #rsq-btn-submit {
        background: #dc2626 !important;
        color: #ffffff !important;
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25) !important;
        width: 100% !important;
    }
    #rsq-btn-submit:hover {
        background: #b91c1c !important;
        transform: translateY(-1px) !important;
    }

    /* Tabla de Cotización Precargada en /cotizacion-en-linea/ */
    .roxvan-cotiz-actions-bar button {
        all: unset !important;
        box-sizing: border-box !important;
        height: 38px !important;
        padding: 0 16px !important;
        border-radius: 8px !important;
        font-size: 12.5px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        transition: all 0.15s ease !important;
    }
    #roxvan-cotiz-whatsapp-btn {
        background: #25d366 !important;
        color: #ffffff !important;
    }
    #roxvan-cotiz-whatsapp-btn:hover {
        background: #1eb954 !important;
        transform: translateY(-1px) !important;
    }
    #roxvan-cotiz-cart-all-btn {
        background: #dc2626 !important;
        color: #ffffff !important;
    }
    #roxvan-cotiz-cart-all-btn:hover {
        background: #b91c1c !important;
        transform: translateY(-1px) !important;
    }

    /* ══════════════════════════════════════════════════════════════════
       ESTILOS SILICON VALLEY: CARRITO, CHECKOUT Y BOTONES COTIZACIÓN
       ══════════════════════════════════════════════════════════════════ */
    /* 1. Botón Principal "Proceder al Pago" en Carrito */
    body.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
    body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button,
    body.woocommerce-cart a.checkout-button {
        all: unset !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
        background: #dc2626 !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        letter-spacing: 0.2px !important;
        cursor: pointer !important;
        padding: 0 20px !important;
        margin: 0 !important;
        box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28) !important;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        text-decoration: none !important;
        text-align: center !important;
    }
    body.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
    body.woocommerce-cart a.checkout-button:hover {
        background: #b91c1c !important;
        color: #ffffff !important;
        transform: translateY(-1.5px) !important;
        box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4) !important;
    }

    /* 2. Botón "Realizar el Pedido" en Checkout / Finalizar Compra */
    body.woocommerce-checkout #place_order,
    body.woocommerce-checkout button#place_order {
        all: unset !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        background: #dc2626 !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif !important;
        font-size: 14.5px !important;
        font-weight: 800 !important;
        cursor: pointer !important;
        padding: 0 20px !important;
        margin: 12px 0 0 0 !important;
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.32) !important;
        transition: all 0.2s ease !important;
        text-align: center !important;
    }
    body.woocommerce-checkout #place_order:hover {
        background: #b91c1c !important;
        transform: translateY(-1.5px) !important;
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.42) !important;
    }

    /* 3. Botones Secundarios del Carrito (Cotización Formal y Compartir Carrito) */
    .roxvan-cart-actions-container {
        margin-top: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    button.roxvan-cart-action-btn {
        all: unset !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        width: 100% !important;
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        padding: 0 16px !important;
        border-radius: 8px !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        text-decoration: none !important;
        transition: all 0.18s ease !important;
        text-align: center !important;
    }
    button.roxvan-cart-b2b-quote-btn {
        background: #ffffff !important;
        color: #0f172a !important;
        border: 1.5px solid #cbd5e1 !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    }
    button.roxvan-cart-b2b-quote-btn:hover {
        background: #f8fafc !important;
        border-color: #dc2626 !important;
        color: #dc2626 !important;
        transform: translateY(-1px) !important;
    }
    button.roxvan-cart-share-btn {
        background: #f1f5f9 !important;
        color: #1e293b !important;
        border: 1px solid #e2e8f0 !important;
    }
    button.roxvan-cart-share-btn:hover {
        background: #e2e8f0 !important;
        color: #2563eb !important;
        border-color: #cbd5e1 !important;
        transform: translateY(-1px) !important;
    }

    /* Ocultar cualquier bloque residual antiguo de cotización repetido */
    .roxvan-cart-quote-box {
        display: none !important;
    }

    /* 4. Botón individual "Agregar al Carrito" en cada fila de la Cotización B2B */
    button.roxvan-cotiz-row-add-cart {
        all: unset !important;
        box-sizing: border-box !important;
        width: 32px !important;
        height: 28px !important;
        min-width: 32px !important;
        min-height: 28px !important;
        background: #facc15 !important;
        color: #0f172a !important;
        border-radius: 6px !important;
        font-size: 13px !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.15s ease !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12) !important;
        margin: 0 2px !important;
    }
    button.roxvan-cotiz-row-add-cart:hover {
        background: #eab308 !important;
        transform: translateY(-1px) !important;
    }
    button.roxvan-cotiz-row-add-cart.is-added {
        background: #16a34a !important;
        color: #ffffff !important;
    }

    /* 5. Botón de Tarjetas: Agregar a Cotización B2B (Home y Tienda) */
    button.roxvan-shop-quote-pill {
        all: unset !important;
        box-sizing: border-box !important;
        position: absolute !important;
        bottom: 8px !important;
        right: 8px !important;
        width: 25px !important;
        height: 25px !important;
        min-width: 25px !important;
        min-height: 25px !important;
        border-radius: 50% !important;
        background: rgba(15, 23, 42, 0.85) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
        color: #38bdf8 !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 16 !important;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.22) !important;
        opacity: 0.9 !important;
    }
    button.roxvan-shop-quote-pill svg {
        width: 13px !important;
        height: 13px !important;
        stroke: #38bdf8 !important;
    }
    button.roxvan-shop-quote-pill:hover {
        background: #0f172a !important;
        color: #ffffff !important;
        border-color: #38bdf8 !important;
        opacity: 1 !important;
        transform: scale(1.1) !important;
    }
    button.roxvan-shop-quote-pill.is-added {
        background: #16a34a !important;
        border-color: #16a34a !important;
    }
    button.roxvan-shop-quote-pill.is-added svg {
        stroke: #ffffff !important;
    }
    @media (hover: hover) {
        .product-inner .roxvan-shop-quote-pill,
        .product-item .roxvan-shop-quote-pill,
        .motta-product-card .roxvan-shop-quote-pill,
        .product.type-product .roxvan-shop-quote-pill {
            opacity: 0 !important;
            transform: translateY(4px) !important;
        }
        .product-inner:hover .roxvan-shop-quote-pill,
        .product-item:hover .roxvan-shop-quote-pill,
        .motta-product-card:hover .roxvan-shop-quote-pill,
        .product.type-product:hover .roxvan-shop-quote-pill {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
    }


    /* Roxvan Global Toast Notification */
    .roxvan-global-toast {
        position: fixed !important;
        top: 85px !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(-25px) !important;
        background: #0f172a !important;
        color: #ffffff !important;
        padding: 12px 24px !important;
        border-radius: 30px !important;
        font-size: 13.5px !important;
        font-weight: 700 !important;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        z-index: 100000005 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        display: none;
        align-items: center !important;
        gap: 12px !important;
        transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif !important;
    }
    .roxvan-global-toast.is-visible {
        opacity: 1 !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto !important;
    }
    .roxvan-global-toast a {
        background: #facc15 !important;
        color: #0f172a !important;
        font-size: 11.5px !important;
        font-weight: 800 !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
        text-decoration: none !important;
        margin-left: 6px !important;
        display: inline-block !important;
        transition: background 0.15s !important;
    }
    .roxvan-global-toast a:hover {
        background: #eab308 !important;
    }

    /* Estilo del botón flotante en tarjetas */
    button.roxvan-shop-quote-pill {
        display: inline-flex !important;
        opacity: 0.95 !important;
    }


    /* ─── BANNER DINÁMICO DE DESCUENTO POR VOLUMEN EN DRAWER ─── */
    .roxvan-qv-dynamic-savings-banner {
        margin-top: 10px !important;
        padding: 8px 12px !important;
        border-radius: 8px !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        animation: roxvanAlertPop 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
        transition: all 0.2s ease !important;
    }
    @keyframes roxvanAlertPop {
        from { opacity: 0; transform: scale(0.96) translateY(-2px); }
        to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .roxvan-qv-dynamic-savings-banner.nudge-savings {
        background: #fef3c7 !important;
        border: 1px solid #fde68a !important;
        color: #92400e !important;
    }
    .roxvan-qv-dynamic-savings-banner.active-business {
        background: #ecfdf5 !important;
        border: 1px solid #a7f3d0 !important;
        color: #065f46 !important;
    }
    .roxvan-qv-dynamic-savings-banner.active-wholesale {
        background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
        border: 1px solid #fca5a5 !important;
        color: #991b1b !important;
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.12) !important;
    }
    .roxvan-qv-dynamic-savings-banner strong {
        font-weight: 800 !important;
    }

    /* ─── CONTENEDOR DE ACCIONES EN TARJETAS DE PRODUCTOS (HOME, CATÁLOGO, COMPLEMENTARIOS, RELACIONADOS) ─── */
    .roxvan-shop-card-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 6px !important;
        width: 100% !important;
        margin-top: 8px !important;
        padding-top: 6px !important;
        border-top: 1px dashed #e2e8f0 !important;
        box-sizing: border-box !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .roxvan-shop-btn-view {
        all: unset !important;
        box-sizing: border-box !important;
        flex: 1 !important;
        height: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;
        background: #f8fafc !important;
        border: 1.2px solid #cbd5e1 !important;
        border-radius: 6px !important;
        color: #1e293b !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        cursor: pointer !important;
        text-align: center !important;
        white-space: nowrap !important;
        transition: all 0.18s ease !important;
    }
    .roxvan-shop-btn-view svg {
        width: 13px !important;
        height: 13px !important;
        stroke: #475569 !important;
        flex-shrink: 0 !important;
        display: inline-block !important;
        vertical-align: middle !important;
    }
    .roxvan-shop-btn-view:hover {
        background: #dc2626 !important;
        border-color: #dc2626 !important;
        color: #ffffff !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25) !important;
    }
    .roxvan-shop-btn-view:hover svg {
        stroke: #ffffff !important;
    }
    .roxvan-shop-btn-quote {
        all: unset !important;
        box-sizing: border-box !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
        background: #0f172a !important;
        border: 1px solid #0f172a !important;
        border-radius: 6px !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        transition: all 0.18s ease !important;
    }
    .roxvan-shop-btn-quote svg {
        width: 13px !important;
        height: 13px !important;
        stroke: #ffffff !important;
        flex-shrink: 0 !important;
    }
    .roxvan-shop-btn-quote:hover {
        background: #1e293b !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25) !important;
    }
    .roxvan-shop-btn-quote.is-added {
        background: #16a34a !important;
        border-color: #16a34a !important;
    }
    .roxvan-shop-btn-quote.is-added svg {
        stroke: #ffffff !important;
    }

    /* Adaptación para Complementarios (.roxvan-cs-item) */
    .roxvan-cs-item {
        position: relative !important;
    }
    .roxvan-cs-item .roxvan-shop-card-actions {
        margin-top: 4px !important;
        padding-top: 4px !important;
    }
    .roxvan-cs-item .roxvan-shop-btn-view {
        height: 26px !important;
        min-height: 26px !important;
        font-size: 10px !important;
    }
    .roxvan-cs-item .roxvan-shop-btn-quote {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
    }

    /* Adaptación para Relacionados (.related-product-item) */
    .related-product-item {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .related-product-item .roxvan-shop-card-actions {
        margin-top: auto !important;
        padding: 8px 10px 10px 10px !important;
    }
