/* Additional Promo Cart Styling */

/* Promo items list */
.beetle-cart-promo-items-list {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.4;
}

/* Promo discount badge in cart - compact version */
.beetle-cart-promo-discount-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-top: 5px;
    width: fit-content;
}

/* Promo final price (green) */
.beetle-cart-promo-price-final {
    color: #4CAF50;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
}

/* Promo strikethrough price */
.beetle-cart-promo-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    line-height: 1.2;
}

/* Ensure promo price column is right-aligned */
.beetle-cart-item-row[data-type="promo"] .beetle-cart-item-price-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
    justify-content: center;
}

/* Disabled button styling */
.beetle-btn-disabled,
button.beetle-btn-disabled,
button:disabled.beetle-cart-qty-btn {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #ccc !important;
    color: #666 !important;
}

.beetle-cart-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.beetle-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.beetle-cart-zero-warning {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
    order: -1;
}

.beetle-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}