/* Ocultar el botón nativo de añadir al carrito en productos aplicables */
.bvc-product-active .variations_form .woocommerce-variation-add-to-cart {
    display: none !important;
}

/* Controles: cantidad + botón añadir a lista */
.bvc-controls {
    display: none;
    align-items: flex-end;
    gap: 12px;
    padding: 0 16px;
    background: var(--color-verde);
    flex-wrap: wrap;
}

.bvc-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
/*-
.bvc-field label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
-*/
.bvc-qty {
    width: 80px;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.bvc-add-to-list {
padding: 12px 24px !important;
  font-size: 14px !important;
  height: auto !important;
  line-height: 1.2 !important;
  background: var(--color-amarillo);
  border: 1px solid var(--color-azul);
  color: var(--color-azul);
  border-radius: 20px;
}

.bvc-add-to-list:hover, .bvc-add-all-to-cart:hover {
    background-color: var(--color-azul);
  color: #ffffff;
  border-color: var(--color-azul);
  transform: translateY(-1px);
}
/* Contenedor de la lista */
.bvc-product-actions {
    margin-top: 24px;
}

.bvc-list-wrapper {
    background: var(--color-verde);
    border-radius: 0 0 6px 6px;
    padding: 20px;
}
/*-
.bvc-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
-*/
.bvc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
    background-color: var(--color-crema);
}

.bvc-table th,
.bvc-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.bvc-table th {
    font-weight: 600;
    color: #555;
    background: #fafafa;
    font-size: 12px;
    text-transform: uppercase;
}

.bvc-td-var {
    width: 50%;
}

.bvc-var-name {
    font-weight: 600;
    color: #222;
    display: block;
}

.bvc-var-attrs {
    color: #666;
    font-size: 13px;
    display: block;
    margin-top: 2px;
}

.bvc-td-qty {
    width: 15%;
    text-align: center;
}

.bvc-td-price {
    width: 20%;
    font-weight: 600;
    color: #111;
}

.bvc-td-action {
    width: 15%;
    text-align: right;
}

.bvc-remove-item {
    background: transparent;
    border: 1px solid #d63638;
    color: #d63638;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bvc-remove-item:hover {
    background: #d63638;
    color: #fff;
}

.bvc-empty {
    text-align: center;
    color: #888;
    padding: 24px 12px !important;
    font-style: italic;
}

.bvc-subtotal-cell {
    text-align: right;
    font-size: 16px;
    color: #111;
}

.bvc-add-all-to-cart {
    width: 100%;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    background: var(--color-amarillo);
  border: 1px solid var(--color-azul);
  color: var(--color-azul);

}


.bvc-add-all-to-cart:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* Responsive */
@media (max-width: 600px) {
    .bvc-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .bvc-qty {
        width: 100%;
    }

    .bvc-table th,
    .bvc-table td {
        padding: 8px;
        font-size: 13px;
    }

    .bvc-td-var {
        width: auto;
    }
}