/* =========================================
   BOTÓN COTIZACIÓN
   ========================================= */

.ajj-add-to-quote-btn {
    width: 100% !important;
    margin-top: 10px !important;
    padding: 14px 20px !important;

    background: #222 !important;
    color: #fff !important;

    border: none !important;
    border-radius: 2px !important;

    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;

    letter-spacing: 0.5px !important;
    text-align: center !important;

    cursor: pointer !important;
    display: block !important;
    transition: all 0.2s ease !important;
}

.ajj-add-to-quote-btn:hover {
    background: #000 !important;
}

.ajj-add-to-quote-btn:active {
    transform: scale(0.98);
}

.single_add_to_cart_button {
    margin-bottom: 8px;
}


/* =========================================
   OVERLAY
   ========================================= */

#ajj-quote-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}


/* =========================================
   DRAWER
   ========================================= */

#ajj-quote-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

#ajj-quote-drawer.open {
    right: 0;
}


/* =========================================
   HEADER
   ========================================= */

.ajj-header {
    padding: 18px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.ajj-close {
    cursor: pointer;
    font-size: 20px;
}


/* =========================================
   BODY
   ========================================= */

.ajj-body {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
}


/* =========================================
   ITEM
   ========================================= */

.ajj-item {
    position: relative;
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

/* IMAGEN */
.ajj-item img {
    width: 65px;
    height: auto;
    object-fit: contain;
}

/* INFO */
.ajj-info {
    flex: 1;
}

/* NOMBRE */
.ajj-info strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

/* MARCA */
.ajj-brand {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

/* SUBTOTAL (PRINCIPAL) */
.ajj-subtotal {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* FILA PRECIO + CANTIDAD */
.ajj-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

/* PRECIO UNITARIO */
.ajj-unit-price {
    font-size: 13px;
    color: #555;
}


/* =========================================
   CANTIDAD (COMPACTA)
   ========================================= */

.ajj-qty {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* BOTONES */
.ajj-qty button {
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
}

/* INPUT */
.ajj-qty input {
    width: 45px;
    height: 24px;
    text-align: center;
    border: 1px solid #ccc;
    font-size: 13px;
}


/* =========================================
   ELIMINAR (✕ ARRIBA)
   ========================================= */

.ajj-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.6;
}

.ajj-remove:hover {
    opacity: 1;
}


/* =========================================
   FOOTER
   ========================================= */

.ajj-footer {
    padding: 18px;
    border-top: 1px solid #eee;
}

.ajj-footer strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

/* BOTÓN FINAL */
.ajj-submit-quote {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
}